]> git.ipfire.org Git - thirdparty/glibc.git/blame - ChangeLog
Clean up NPTL fork to be compat-only.
[thirdparty/glibc.git] / ChangeLog
CommitLineData
ac9e0e5e
RM
12015-02-06 Roland McGrath <roland@hack.frob.com>
2
beff1d13
RM
3 * nptl/pt-fork.c: Rewritten. Put everything under
4 [SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_22)].
5 Use IFUNC to redirect when possible.
6 * nptl/Versions (libpthread: GLIBC_2.22): New (empty) version set.
7
ea02c6b8
RM
8 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: Remove all
9 code under [!__ASSUME_FUTEX_CLOCK_REALTIME], since that is defined
10 unconditionally nowadays. This included the only reference to
11 __vdso_clock_gettime that appears outside libc proper.
12 * sysdeps/unix/sysv/linux/x86_64/Versions (libc: GLIBC_PRIVATE):
13 Remove version set (containing only __vdso_clock_gettime).
14 * sysdeps/unix/sysv/linux/x86/libc-vdso.h (__vdso_clock_gettime):
15 Add attribute_hidden.
16 * sysdeps/unix/sysv/linux/i386/init-first.c (__vdso_clock_gettime):
17 Likewise. Drop __attribute__ ((nocommon)), libc_hidden_proto, and
18 libc_hidden_data_def.
19 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
20 * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
21
a1309c2b
RM
22 * inet/Versions (libc: GLIBC_2.0): Move getrpcbyname, getrpcbyname_r,
23 getrpcbynumber, getrpcbynumber_r, getrpcent, getrpcent_r, endrpcent,
24 setrpcent, and getrpcport to ...
25 * sunrpc/Versions (libc: GLIBC_2.0): ... here.
26 * inet/Versions (libc: GLIBC_2.1.2): Move getrpcbyname_r,
27 getrpcbynumber_r, and getrpcent_r to ...
28 * sunrpc/Versions (libc: GLIBC_2.1.2): ... this new set.
29 * inet/getrpcbyname.c: Moved ...
30 * sunrpc/getrpcbyname.c: ... here.
31 * inet/getrpcbyname_r.c: Moved ...
32 * sunrpc/getrpcbyname_r.c: ... here.
33 * inet/getrpcbynumber.c: Moved ...
34 * sunrpc/getrpcbynumber.c: ... here.
35 * inet/getrpcbynumber_r.c: Moved ...
36 * sunrpc/getrpcbynumber_r.c: ... here.
37 * inet/getrpcent.c: Moved ...
38 * sunrpc/getrpcent.c: ... here.
39 * inet/getrpcent_r.c: Moved ...
40 * sunrpc/getrpcent_r.c: ... here.
41 * inet/Makefile (routines): Move those to ...
42 * sunrpc/Makefile (routines): ... here.
43 * nss/Makefile (databases): Add key and rpc only if sunrpc appears in
44 the $(subdirs) list.
45 (CPPFLAGS-getent.c): New variable. Pass -D option to set HAVE_SUNRPC
46 to 0 or 1, indicating whether sunrpc appears in the $(subdirs) list.
47 * nss/getent.c (print_rpc, rpc_keys): Conditionalize on [HAVE_SUNRPC].
48 (databases): Conditionalize rpc entry on [HAVE_SUNRPC].
49
ac9e0e5e
RM
50 * elf/Makefile (routines): Include $(all-dl-routines), not just
51 $(dl-routines).
52 (rtld-routines): Likewise. Use = rather than :=.
53 * sysdeps/aarch64/Makefile [$(subdir) = elf]
54 (sysdep_routines, sysdep-rtld-routines): Don't add tlsdesc and
55 dl-tlsdesc to these; sysdep-dl-routines alone is enough.
56 * sysdeps/arm/Makefile: Likewise.
57 * sysdeps/i386/Makefile: Likewise.
58 * sysdeps/x86_64/Makefile: Likewise.
59 * sysdeps/hppa/Makefile [$(subdir) = elf]
60 (sysdep_routines, sysdep-rtld-routines): Don't add
61 $(sysdep-dl-routines) to these.
62 * sysdeps/ia64/Makefile: Likewise.
63 * sysdeps/unix/sysv/linux/ia64/Makefile: Likewise.
64 * sysdeps/unix/sysv/linux/aarch64/Makefile [$(subdir) = elf]
65 [$(build-shared) = yes] (sysdep_routines, sysdep-rtld-routines):
66 Don't add dl-static to these; sysdep-dl-routines alone is enough.
67 * sysdeps/unix/sysv/linux/m68k/Makefile: Likewise.
68 * sysdeps/unix/sysv/linux/mips/Makefile: Likewise.
69 * sysdeps/unix/sysv/linux/powerpc/Makefile: Likewise.
70 * sysdeps/unix/sysv/linux/tile/Makefile: Likewise.
71 * sysdeps/powerpc/Makefile [$(subdir) = elf]
72 (sysdep_routines, sysdep-rtld-routines): Don't add dl-machine to
73 these; sysdep-dl-routines alone is enough.
74
639e42eb
JM
752015-02-06 Joseph Myers <joseph@codesourcery.com>
76
1c7a4a51
JM
77 [BZ #17932]
78 * soft-fp/op-common.h (_FP_FMA): Set exponent of result in case
79 where multiplication results in zero and third argument is finite
80 and nonzero.
81 * math/auto-libm-test-in: Add more tests of fma.
82 * math/auto-libm-test-out: Regenerated.
83
61f006c1
JM
84 * soft-fp/op-common.h (_FP_CMP_CHECK_DENORM): New macro.
85 (_FP_CMP_CHECK_FLUSH_ZERO): Likewise.
86 (_FP_CMP): Use_FP_CMP_CHECK_DENORM and _FP_CMP_CHECK_FLUSH_ZERO.
87 (_FP_CMP_EQ): Likewise.
88 (_FP_CMP_UNORD): Use _FP_CMP_CHECK_DENORM.
89
639e42eb
JM
90 * soft-fp/op-common.h (FP_EXTEND): Rename to _FP_EXTEND_CNAN with
91 extra argument CHECK_NAN. Redefine as wrapper around
92 _FP_EXTEND_CNAN.
93
3c0c543b
CD
942015-02-06 Carlos O'Donell <carlos@systemhalted.org>
95
4e42b5b8
CD
96 * version.h (RELEASE): Set to "stable".
97 (VERSION): Set to "2.21"
98 * include/features.h (__GLIBC_MINOR__): Set to 21.
99
3c0c543b
CD
100 * sysdeps/unix/sysv/linux/hppa/pthread.h: Sync with pthread.h.
101
5bd80bfe 1022015-02-05 Paul Pluzhnikov <ppluzhnikov@google.com>
76c109f2 103 Paul Eggert <eggert@cs.ucla.edu>
5bd80bfe
PP
104
105 [BZ #16618]
106 * stdio-common/tst-sscanf.c (main): Test for buffer overflow.
107 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Compute needed
108 size in bytes. Store needed elements in wpmax. Use needed size
109 in bytes for extend_alloca.
110
3f823f48
CD
1112015-02-05 Carlos O'Donell <carlos@systemhalted.org>
112
04cb913d
CD
113 * manual/install.texi: Latest tested versions are GCC 4.9.2,
114 binutls 2.25, and texinfo 5.2.
115 * INSTALL: Regenerate.
116 * sysdeps/nios2/configure: Regenerate.
117 * sysdeps/unix/sysv/linux/nios2/configure: Regenerate.
118 * manual/contrib.texi: Update.
119 * po/be.po: Update.
120 * po/bg.po: Update.
121 * po/ca.po: Update.
122 * po/cs.po: Update.
123 * po/da.po: Update.
124 * po/de.po: Update.
125 * po/el.po: Update.
126 * po/eo.po: Update.
127 * po/es.po: Update.
128 * po/fi.po: Update.
129 * po/fr.po: Update.
130 * po/gl.po: Update.
131 * po/hr.po: Update.
132 * po/hu.po: Update.
133 * po/ia.po: Update.
134 * po/id.po: Update.
135 * po/it.po: Update.
136 * po/ja.po: Update.
137 * po/ko.po: Update.
138 * po/lt.po: Update.
139 * po/nb.po: Update.
140 * po/nl.po: Update.
141 * po/pl.po: Update.
142 * po/pt_BR.po: Update.
143 * po/ru.po: Update.
144 * po/rw.po: Update.
145 * po/sk.po: Update.
146 * po/sl.po: Update.
147 * po/sv.po: Update.
148 * po/tr.po: Update.
149 * po/uk.po: Update.
150 * po/vi.po: Update.
151 * po/zh_CN.po: Update.
152 * po/zh_TW.po: Update.
153
3f823f48
CD
154 * sysdeps/hppa/Makefile (CFLAGS-dl-fptr.c): Add -Wno-error.
155 * sysdeps/hppa/bits/setjmp.h: Union is named __jmp_buf_internal_tag.
156 * sysdeps/hppa/dl-irel.h: Remove #warning.
157 * sysdeps/hppa/entry.h: Provide prototype for
158 __canonicalize_funcptr_for_compare and cast argument.
159 * sysdeps/hppa/fpu/fegetexcept.c (fegetexcept): Add semicolon.
160 * sysdeps/hppa/fpu/ftestexcept.c (fetestexcept): Likewise.
161 * sysdeps/hppa/sotruss-lib.c: New file.
162 * sysdeps/unix/sysv/linux/hppa/bits/atomic.h
163 (atomic_compare_and_exchange_val_acq): Use __typeof__.
164 (atomic_compare_and_exchange_bool_acq): Likewise.
165 * sysdeps/unix/sysv/linux/hppa/mmap.c: Use weak alias.
166 * sysdeps/unix/sysv/linux/hppa/pthread.h: Include pthread.h.
167
168 * sysdeps/unix/sysv/linux/hppa/syscall.S: Delete file.
169 * sysdeps/unix/sysv/linux/hppa/sysdep.c: Move syscall from here...
170 * sysdeps/unix/sysv/linux/hppa/syscall.c: ... to here.
171
34c56048
CLT
1722015-02-05 Chung-Lin Tang <cltang@codesourcery.com>
173
174 * sysdeps/nios2/machine-gmon.h (NIOS2_MCOUNT_CALL): Correct name of
175 called function in non-PIC case.
176
d4abeca5
DM
1772015-01-31 David S. Miller <davem@davemloft.net>
178
edac0a60
DM
179 * sysdeps/sparc/sparc32/bits/atomic.h
180 (__sparc32_atomic_do_unlock24): Put the memory barrier before the
181 unlock not after it.
182 (__v9_compare_and_exchange_val_32_acq): Use unions to avoid getting
183 volatile register usage warnings from the compiler.
184
d4abeca5
DM
185 * sysdeps/sparc/nptl/sem_init.c: Delete.
186 * sysdeps/sparc/nptl/sem_post.c: Delete.
187 * sysdeps/sparc/nptl/sem_timedwait.c: Delete.
188 * sysdeps/sparc/nptl/sem_wait.c: Delete.
189 * sysdeps/sparc/sparc32/sem_init.c: New file.
190 * sysdeps/sparc/sparc32/sem_waitcommon.c: New file.
191 * sysdeps/sparc/sparc32/sem_open.c: Generic nptl version with
192 padding explicitly initialized.
193 * sysdeps/sparc/sparc32/sem_post.c: Generic nptl version using
194 padding for in-semaphore spinlock.
195 * sysdeps/sparc/sparc32/sem_wait.c: Likewise.
196 * sysdeps/sparc/sparc32/sem_trywait.c: Delete.
197 * sysdeps/sparc/sparc32/sem_timedwait.c: Delete.
198 * sysdeps/sparc/sparc32/sparcv9/sem_init.c: New file.
199 * sysdeps/sparc/sparc32/sparcv9/sem_open.c: New file.
200 * sysdeps/sparc/sparc32/sparcv9/sem_post.c: New file.
201 * sysdeps/sparc/sparc32/sparcv9/sem_waitcommon.c: New file.
202 * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: Redirect to nptl
203 version.
204 * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: Delete.
205 * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Delete.
206
5f3d0b78
L
2072015-01-30 H.J. Lu <hongjiu.lu@intel.com>
208
209 [BZ #17801]
210 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
211 Set the bit_AVX_Fast_Unaligned_Load bit for AVX2.
212 * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX_Fast_Unaligned_Load):
213 New.
214 (index_AVX_Fast_Unaligned_Load): Likewise.
215 (HAS_AVX_FAST_UNALIGNED_LOAD): Likewise.
216 * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Check the
217 bit_AVX_Fast_Unaligned_Load bit instead of the bit_AVX_Usable bit.
218 * sysdeps/x86_64/multiarch/memcpy_chk.S (__memcpy_chk): Likewise.
219 * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy): Likewise.
220 * sysdeps/x86_64/multiarch/mempcpy_chk.S (__mempcpy_chk): Likewise.
221 * sysdeps/x86_64/multiarch/memmove.c (__libc_memmove): Replace
222 HAS_AVX with HAS_AVX_FAST_UNALIGNED_LOAD.
223 * sysdeps/x86_64/multiarch/memmove_chk.c (__memmove_chk): Likewise.
224
b658fdd8
AS
2252015-01-29 Andreas Schwab <schwab@suse.de>
226
227 * sysdeps/nptl/allocrtsig.c: Include <signal.h>.
228
3cb26316
SP
2292015-01-29 Siddhesh Poyarekar <siddhesh@redhat.com>
230
231 [BZ #17892]
232 * nscd/nscd_stat.c (send_stats): Initialize DATA.
233
527de9e4
MS
2342015-01-28 Martin Sebor <msebor@redhat.com>
235
236 * math/README.libm-test: Clarify. Add "How to read the test output."
237
06991eb8
CM
2382015-01-28 Chris Metcalf <cmetcalf@ezchip.com>
239
240 * sysdeps/tile/tilegx/bits/atomic.h [!_LP64] (__HAVE_64B_ATOMICS):
241 Define to 0.
242
df341342
JM
2432015-01-28 Joseph Myers <joseph@codesourcery.com>
244
245 * sysdeps/mips/bits/atomic.h [_MIPS_SIM == _ABIN32]
246 (__HAVE_64B_ATOMICS): Define to 0.
247
08cee2a4
AZ
2482015-01-28 Adhemerval Zanellla <azanella@linux.vnet.ibm.com>
249
d4d0ecb2
AZ
250 [BZ #17885]
251 * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Fix correct
252 value to set as new flag.
253
08cee2a4
AZ
254 [BZ #16576]
255 * sysdeps/powerpc/fpu/math_private.h [__CPU_HAS_FSQRT]: Remove define
256 and use _ARCH_PPCSQ instead.
257 (__ieee754_sqrt): Likewise.
258 (__ieee754_sqrtf): Likewise.
259 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Build only if
260 _ARCH_PPCSQ is defined.
261 (__ieee754_sqrt): Use _ARCH_PPCSQ to select wheter to use hardware
262 fsqrt instruction.
263 * sysdeps/powerpc/fpu/e_sqrtf.c (__ieee754_sqrtf): Build only if
264 _ARCH_PPCSQ is defined.
265 (__ieee754_sqrtf): Use _ARCH_PPCSQ to select wheter to use hardware
266 fsqrts instruction.
267 * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Remove file.
268
5fe8e359
AK
2692015-01-27 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
270
271 * iconv/loop.c: Suppress array out of bound warning caused by GCC
272 bug (GCC BZ #64739).
273
24bb7432
AS
2742015-01-25 Andreas Schwab <schwab@linux-m68k.org>
275
fa20da31
AS
276 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (lll_futex_requeue):
277 Mark _retval as used.
278 (lll_futex_wake_unlock): Likewise.
279 (lll_futex_timed_wait_requeue_pi): Likewise.
280
45819cbc
AS
281 * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
282 (atomic_compare_and_exchange_val_acq): Use uint32_t for the
283 register variables.
284
403cc231
AS
285 * sysdeps/m68k/m680x0/fpu/fraiseexcpt.c (__feraiseexcept): Use
286 libm_hidden_def.
287
24bb7432
AS
288 * sysdeps/m68k/bits/byteswap.h (__bswap_16, __bswap_32)
289 (__bswap_64): Mark as __always_inline.
290
9317ea65
B
2912015-01-25 Bram <bug_rh@spam.wizbit.be>
292
293 [BZ #15378]
294 * elf/dl-load.c (open_path): Avoid writing to 'env_path_list'
295 when none of the search directories exist.
296
0e87343e
AZ
2972015-01-24 Adhemerval Zanellla <azanella@linux.vnet.ibm.com>
298
bea58013
AZ
299 [BZ #17869]
300 * sysdeps/powerpc/powerpc64/power8/memset.S: Use power7 instead of
301 power8 in .machine directive.
302
0e87343e
AZ
303 [BZ #17868]
304 * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Force value
305 set dependency from opd value.
306
ede0236c
L
3072015-01-23 H.J. Lu <hongjiu.lu@intel.com>
308
309 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
972af9e8
L
310 Treat model numbers 0x4a/0x4d/0x5a/0x5d as Intel Silvermont
311 architecture.
ede0236c 312
22971c35
L
3132015-01-23 H.J. Lu <hongjiu.lu@intel.com>
314
315 [BZ #17870]
316 * nptl/sem_post.c (__new_sem_post): Replace unsigned long int
317 with uint64_t.
318 * nptl/sem_waitcommon.c (__sem_wait_cleanup): Replace 1UL with
319 (uint64_t) 1.
e0da28a1 320 (__new_sem_wait_fast): Replace unsigned long with uint64_t.
22971c35
L
321 (__new_sem_wait_slow): Replace unsigned long int with uint64_t.
322 Replace 1UL with (uint64_t) 1.
323 * sysdeps/nptl/internaltypes.h (new_sem): Replace unsigned long
324 int with uint64_t.
325
da5bf245
RM
3262015-01-23 Roland McGrath <roland@hack.frob.com>
327
2ec2d703
RM
328 * inet/if_index.c (if_nameindex): Add missing libc_hidden_weak.
329 (if_freenameindex): Likewise.
330
da5bf245
RM
331 * resource/getrlimit64.c: Add missing libc_hidden_def.
332
d7423856
JM
3332015-01-22 Joseph Myers <joseph@codesourcery.com>
334
335 * soft-fp/op-common.h (_FP_ADD_INTERNAL): Declare labels with
336 __label__.
337 (_FP_FMA): Likewise.
338 (_FP_TO_INT_ROUND): Likewise.
339 (_FP_FROM_INT): Likewise.
340
6b2ba95b
AZ
3412015-01-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
342
343 [BZ #16418]
344 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
345 Make code racy and cancel safe.
346
ccdb048d
CD
3472015-01-21 Carlos O'Donell <carlos@redhat.com>
348
191220b3
CD
349 * sysdeps/arm/unwind-resume.h: Fix copyright year.
350 * dlfcn/tst-rec-dlopen.c: Fix incorrect copyright year and
351 attribution.
352
0897c551
CD
353 * pwd/tst-getpw.c: Rewrite.
354
ccdb048d
CD
355 [BZ #17702]
356 * dlfcn/Makefile (tests): Add tst-rec-dlopen.
357 (modules-names): Add moddummy1 and moddummy2.
358 ($(objpfx)tst-rec-dlopen): Define.
359 * dlfcn/moddummy1.c: New file.
360 * dlfcn/moddummy2.c: New file.
361 * dlfcn/tst-rec-dlopen.c: New file.
362 * elf/dl-cache.c (_dl_load_cache_lookup):
363 Return char*. Copy result with alloca/strcpy/strdup.
364 * elf/dl-load.c (_dl_map_object): _dl_load_cached_lookup
365 returns char*. Free cached. If not saving realname
366 free cached.
367 * elf/dl-open.c (dl_open_worker): Do not assert that
368 _r_debug->r_state is RT_CONSISTENT.
369 * sysdeps/generic/ldsodefs.h: _dl_load_cache_lookup
370 returns char*.
371
042e1521
CD
3722015-01-21 Torvald Riegel <triegel@redhat.com>
373 Carlos O'Donell <carlos@redhat.com>
374
375 [BZ #12674]
376 * nptl/sem_waitcommon.c: New file.
377 * nptl/sem_wait.c: Include sem_waitcommon.c.
378 (__sem_wait_cleanup, do_futex_wait): Remove.
379 (__new_sem_wait): Adapt.
380 (__new_sem_trywait): New function.
381 (__old_sem_trywait): Moved here from nptl/sem_trywait.c.
382 * nptl/sem_timedwait.c: Include sem_waitcommon.c.
383 (__sem_wait_cleanup, do_futex_timed_wait): Remove.
384 (sem_timedwait): Adapt.
385 * nptl/sem_post.c (__new_sem_post): Adapt.
386 (futex_wake): New function.
387 (__old_sem_post): Add release MO fence.
388 * nptl/sem_open.c (sem_open): Adapt.
389 * nptl/sem_init.c (__new_sem_init): Adapt.
390 (futex_private_if_supported): New function.
391 * nptl/sem_getvalue.c (__new_sem_getvalue): Adapt.
392 (__old_sem_getvalue): Add using previous code.
393 * sysdeps/nptl/internaltypes.h: Adapt.
394 * nptl/tst-sem13.c (do_test): Adapt.
395 * nptl/tst-sem11.c (main): Adapt.
396 * nptl/sem_trywait.c: Remove.
397 * nptl/DESIGN-sem.txt: Remove.
398 * nptl/Makefile (libpthread-routines): Remove sem_trywait.
399 (gen-as-const-headers): Remove structsem.sym.
400 * nptl/structsem.sym: Remove.
401 * sysdeps/unix/sysv/linux/alpha/sem_post.c: Remove.
402 * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Remove.
403 * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Remove.
404 * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Remove.
405 * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Remove.
406 * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Remove.
407 * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Remove.
408 * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Remove.
409 * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Remove.
410 * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Remove.
411 * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Remove.
412 * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Remove.
413 * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Remove.
414 * sysdeps/unix/sysv/linux/powerpc/sem_post.c: Remove.
415 * sysdeps/unix/sysv/linux/sh/sem_post.S: Remove.
416 * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Remove.
417 * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Remove.
418 * sysdeps/unix/sysv/linux/sh/sem_wait.S: Remove.
419 * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Remove.
420 * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Remove.
421 * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Remove.
422 * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Remove.
423
fe0e85af
CD
4242015-01-20 Carlos O'Donell <carlos@redhat.com>
425
a8db092e
CD
426 * INSTALL: Regenerated.
427
fe0e85af
CD
428 * po/libc.pot: Regenerated.
429
522e6ee3
CLT
4302015-01-18 Chung-Lin Tang <cltang@codesourcery.com>
431 Sandra Loosemore <sandra@codesourcery.com>
432 Andrew Jenner <andrew@codesourcery.com>
433 Joseph Myers <joseph@codesourcery.com>
434 Nathan Sidwell <nathan@codesourcery.com>
435
436 * NEWS: Mention new Nios II port.
437 * sysdeps/nios2/Implies: New file.
438 * sysdeps/nios2/Makefile: New file.
439 * sysdeps/nios2/Subdirs: New file.
440 * sysdeps/nios2/Versions: New file.
441 * sysdeps/nios2/__longjmp.S: New file.
442 * sysdeps/nios2/abort-instr.h: New file.
443 * sysdeps/nios2/backtrace.c: New file.
444 * sysdeps/nios2/bits/endian.h: New file.
445 * sysdeps/nios2/bits/fenv.h: New file.
446 * sysdeps/nios2/bits/link.h: New file.
447 * sysdeps/nios2/bits/setjmp.h: New file.
448 * sysdeps/nios2/bsd-_setjmp.S: New file.
449 * sysdeps/nios2/bsd-setjmp.S: New file.
450 * sysdeps/nios2/configure: New generated file.
451 * sysdeps/nios2/configure.ac: New file.
452 * sysdeps/nios2/crti.S: New file.
453 * sysdeps/nios2/crtn.S: New file.
454 * sysdeps/nios2/dl-init.c: New file.
455 * sysdeps/nios2/dl-machine.h: New file.
456 * sysdeps/nios2/dl-sysdep.h: New file.
457 * sysdeps/nios2/dl-tls.h: New file.
458 * sysdeps/nios2/dl-trampoline.S: New file.
459 * sysdeps/nios2/gccframe.h: New file.
460 * sysdeps/nios2/gmp-mparam.h: New file.
461 * sysdeps/nios2/jmpbuf-offsets.h: New file.
462 * sysdeps/nios2/jmpbuf-unwind.h: New file.
463 * sysdeps/nios2/ldsodefs.h: New file.
464 * sysdeps/nios2/libc-tls.c: New file.
465 * sysdeps/nios2/libm-test-ulps: New file.
466 * sysdeps/nios2/machine-gmon.h: New file.
467 * sysdeps/nios2/math-tests.h: New file.
468 * sysdeps/nios2/math_private.h: New file.
469 * sysdeps/nios2/memusage.h: New file.
470 * sysdeps/nios2/nptl/Makefile: New file.
471 * sysdeps/nios2/nptl/bits/pthreadtypes.h: New file.
472 * sysdeps/nios2/nptl/bits/semaphore.h: New file.
473 * sysdeps/nios2/nptl/pthread_spin_lock.c: New file.
474 * sysdeps/nios2/nptl/pthreaddef.h: New file.
475 * sysdeps/nios2/nptl/tcb-offsets.sym: New file.
476 * sysdeps/nios2/nptl/tls.h: New file.
477 * sysdeps/nios2/preconfigure: New file.
478 * sysdeps/nios2/s_fma.c: New file.
479 * sysdeps/nios2/s_fmaf.c: New file.
480 * sysdeps/nios2/setjmp.S: New file.
481 * sysdeps/nios2/sfp-machine.h: New file.
482 * sysdeps/nios2/sotruss-lib.c: New file.
483 * sysdeps/nios2/stackguard-macros.h: New file.
484 * sysdeps/nios2/stackinfo.h: New file.
485 * sysdeps/nios2/start.S: New file.
486 * sysdeps/nios2/sysdep.h: New file.
487 * sysdeps/nios2/tls-macros.h: New file.
488 * sysdeps/nios2/tst-audit.h: New file.
489 * sysdeps/unix/sysv/linux/nios2/Implies: New file.
490 * sysdeps/unix/sysv/linux/nios2/Makefile: New file.
491 * sysdeps/unix/sysv/linux/nios2/Versions: New file.
492 * sysdeps/unix/sysv/linux/nios2/arch-fork.h: New file.
493 * sysdeps/unix/sysv/linux/nios2/bits/atomic.h: New file.
494 * sysdeps/unix/sysv/linux/nios2/bits/mman.h: New file.
495 * sysdeps/unix/sysv/linux/nios2/cacheflush.c: New file.
496 * sysdeps/unix/sysv/linux/nios2/clone.S: New file.
497 * sysdeps/unix/sysv/linux/nios2/configure: New generated file.
498 * sysdeps/unix/sysv/linux/nios2/configure.ac: New file.
499 * sysdeps/unix/sysv/linux/nios2/getcontext.S: New file.
500 * sysdeps/unix/sysv/linux/nios2/kernel-features.h: New file.
501 * sysdeps/unix/sysv/linux/nios2/kernel_rt_sigframe.h: New file.
502 * sysdeps/unix/sysv/linux/nios2/makecontext.c: New file.
503 * sysdeps/unix/sysv/linux/nios2/profil-counter.h: New file.
504 * sysdeps/unix/sysv/linux/nios2/setcontext.S: New file.
505 * sysdeps/unix/sysv/linux/nios2/shlib-versions: New file.
506 * sysdeps/unix/sysv/linux/nios2/sigcontextinfo.h: New file.
507 * sysdeps/unix/sysv/linux/nios2/swapcontext.S: New file.
508 * sysdeps/unix/sysv/linux/nios2/sys/cachectl.h: New file.
509 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: New file.
510 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: New file.
511 * sysdeps/unix/sysv/linux/nios2/sys/user.h: New file.
512 * sysdeps/unix/sysv/linux/nios2/syscall.S: New file.
513 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: New file.
514 * sysdeps/unix/sysv/linux/nios2/sysdep.S: New file.
515 * sysdeps/unix/sysv/linux/nios2/sysdep.h: New file.
516 * sysdeps/unix/sysv/linux/nios2/ucontext_i.sym: New file.
517 * sysdeps/unix/sysv/linux/nios2/vfork.S: New file.
518 * sysdeps/unix/sysv/linux/nios2/c++-types.data: New file.
519 * sysdeps/unix/sysv/linux/nios2/ld.abilist: New file.
520 * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: New file.
521 * sysdeps/unix/sysv/linux/nios2/libanl.abilist: New file.
522 * sysdeps/unix/sysv/linux/nios2/libc.abilist: New file.
523 * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: New file.
524 * sysdeps/unix/sysv/linux/nios2/libdl.abilist: New file.
525 * sysdeps/unix/sysv/linux/nios2/libm.abilist: New file.
526 * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: New file.
527 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: New file.
528 * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: New file.
529 * sysdeps/unix/sysv/linux/nios2/librt.abilist: New file.
530 * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: New file.
531 * sysdeps/unix/sysv/linux/nios2/libutil.abilist: New file.
532 * sysdeps/unix/sysv/linux/nios2/localplt.data: New file.
533
026eb207
SL
5342015-01-16 Stefan Liebler <stli@linux.vnet.ibm.com>
535
536 [BZ #17844]
537 * sysdeps/unix/sysv/linux/s390/s390-32/getutent.c
538 (getutent): Use weak_alias in non SHARED case
539 and default_symbol_version in SHARED case.
540 * sysdeps/unix/sysv/linux/s390/s390-32/getutent_r.c
541 (getutent_r, pututline): Likewise.
542 * sysdeps/unix/sysv/linux/s390/s390-32/getutid.c
543 (getutid): Likewise.
544 * sysdeps/unix/sysv/linux/s390/s390-32/getutid_r.c
545 (getutid_r): Likewise.
546 * sysdeps/unix/sysv/linux/s390/s390-32/getutline.c
547 (getutline): Likewise.
548 * sysdeps/unix/sysv/linux/s390/s390-32/getutline_r.c
549 (getutline_r): Likewise.
550 * sysdeps/unix/sysv/linux/s390/s390-32/updwtmp.c
551 (updwtmp): Likewise.
552
1d532483
SL
5532015-01-16 Stefan Liebler <stli@linux.vnet.ibm.com>
554
555 [BZ #17848]
556 * sysdeps/s390/s390-32/memcmp.S
557 (memcmp_g5): Rename to __memcmp_g5.
558 * sysdeps/s390/s390-32/memcpy.S
559 (memcpy_g5): Rename to __memcpy_g5.
560 Jump to __memcpy_mvcle instead of memcpy_mvcle.
561 (memcpy_mvcle) Rename to __memcpy_mvcle.
562 * sysdeps/s390/s390-32/memset.S
563 (memset_g5): Rename to __memset_g5.
564 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
565 (IFUNC_RESOLVE): Prefix ifunc-resolve function
566 and use prefixed functions.
567 * sysdeps/s390/s390-32/multiarch/memcmp.S
568 (memcmp_z196): Rename to __memcmp_z196.
569 (memcmp_z10): Rename to __memcmp_z10.
570 (memcmp): Set alias to __memcmp_g5.
571 (bcmp): Set alias to __memcmp_g5.
572 * sysdeps/s390/s390-32/multiarch/memcpy.S
573 (memcpy_z196): Rename to __memcpy_z196.
574 Jump to __memcpy_mvcle instead of memcpy_mvcle.
575 (memcpy_z10): Rename to __memcpy_z10.
576 Jump to __memcpy_mvcle instead of memcpy_mvcle.
577 (memcpy): Set alias to __memcpy_g5.
578 * sysdeps/s390/s390-32/multiarch/memset.S
579 (memset_z196): Rename to __memset_z196.
580 Jump to __memset_mvcle instead of memset_mvcle.
581 (memset_z10): Rename to __memset_z10.
582 Jump to __memset_mvcle instead of memset_mvcle.
583 (memset_mvcle) Rename to __memset_mvcle.
584 (memset): Set alias to __memset_g5.
585 * sysdeps/s390/s390-64/memcmp.S
586 (memcmp_z900): Rename to __memcmp_z900.
587 * sysdeps/s390/s390-64/memcpy.S
588 (memcpy_z900): Rename to __memcpy_z900.
589 Jump to __memcpy_mvcle instead of memcpy_mvcle.
590 (memcpy_mvcle) Rename to __memcpy_mvcle.
591 * sysdeps/s390/s390-64/memset.S
592 (memset_z900): Rename to __memset_z900.
593 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c
594 (IFUNC_RESOLVE): Prefix ifunc-resolve function
595 and use prefixed functions.
596 * sysdeps/s390/s390-64/multiarch/memcmp.S
597 (memcmp_z196): Rename to __memcmp_z196.
598 (memcmp_z10): Rename to __memcmp_z10.
599 (memcmp): Set alias to __memcmp_z900.
600 (bcmp): Set alias to __memcmp_z900.
601 * sysdeps/s390/s390-64/multiarch/memcpy.S
602 (memcpy_z196): Rename to __memcpy_z196.
603 Jump to __memcpy_mvcle instead of memcpy_mvcle.
604 (memcpy_z10): Rename to __memcpy_z10.
605 Jump to __memcpy_mvcle instead of memcpy_mvcle.
606 (memcpy): Set alias to __memcpy_z900.
607 * sysdeps/s390/s390-64/multiarch/memset.S
608 (memset_z196): Rename to __memset_z196.
609 Jump to __memset_mvcle instead of memset_mvcle.
610 (memset_z10): Rename to __memset_z10.
611 Jump to __memset_mvcle instead of memset_mvcle.
612 (memset_mvcle) Rename to __memset_mvcle.
613 (memset): Set alias to __memset_z900.
614
53fbd169
JM
6152015-01-14 Joseph Myers <joseph@codesourcery.com>
616
617 [BZ #17748]
618 * sysdeps/powerpc/nofpu/feholdexcpt.c (__feholdexcept): Call
619 __fesetenv instead of fesetenv.
620
d639a363
SP
6212015-01-14 Siddhesh Poyarekar <siddhesh@redhat.com>
622
623 * sysdeps/s390/dl-tls.h [IS_IN (rtld)]: Define __tls_get_addr
624 macro.
625
d3b00f46
AZ
6262015-01-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
627
ce6615c9
AZ
628 * sysdeps/powerpc/powerpc64/power7/memcmp.S (memcmp): Fix performance
629 regression on LE.
630
d3b00f46
AZ
631 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: New file.
632 * sysdeps/powerpc/powerpc64/power8/strncmp.S: New file.
633 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
634 strncmp-power8 object.
635 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
636 (__libc_ifunc_impl_list): Add __strncmp_power8 implementation.
637 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c (strncmp): Likewise.
638 * NEWS: Update.
639
72607db0
RS
6402015-01-13 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
641 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
642
643 * sysdeps/powerpc/powerpc64/power7/strcmp.S (strcmp): Optimize
644 trailing byte check.
645
54dc5461
DM
6462015-01-13 David S. Miller <davem@davemloft.net>
647
648 * include/signal.h (__sigreturn): Guard with __USE_MISC.
649
1c6e6f23
RM
6502015-01-13 Roland McGrath <roland@hack.frob.com>
651
652 * login/logout.c (logout): Use memset rather than bzero.
653 * nis/nss_compat/compat-pwd.c (getpwent_next_file): Likewise.
654 * nis/nss_compat/compat-spwd.c (getspent_next_file): Likewise.
655 * resolv/gethnamaddr.c (gethostbyaddr): Use memcmp rather than bcmp.
656 (_gethtbyaddr): Likewise.
657 * locale/programs/simple-hash.c (bcopy): Macro removed.
658
96d6fd6c
AZ
6592015-01-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
660
8bedcb5f
AZ
661 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
662 Add strcmp-power8 object.
663 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
664 (__libc_ifunc_impl_list): Add __strcmp_power8 implementation.
665 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: New file.
666 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c (strcmp): Add
667 __strcmp_power8 implementation.
668 * sysdeps/powerpc/powerpc64/power8/strcmp.S: New file.
669 * NEWS: Update.
670
f06a4faf
AZ
671 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
672 Add strncpy-power8 and stpncpy-power8 objects.
673 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
674 (__libc_ifunc_impl_list): Add __strncpy_power8 and stpncpy_power8
675 implementations.
676 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: New file.
677 * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c (__stpncpy): Add
678 __stpncpy_power8 implementation.
679 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: New file.
680 * sysdeps/powerpc/powerpc64/multiarch/strncpy.c (strncpy): Add
681 __strncpy_power8 implementation.
682 * sysdeps/powerpc/powerpc64/power8/stpncpy.S: New file.
683 * sysdeps/powerpc/powerpc64/power8/strncpy.S: New file.
684 * NEWS: Update.
685
9f2f36e5
AZ
686 * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.c: New file.
687 * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: Remove file.
688 * sysdeps/powerpc/powerpc64/power7/strncat.S: Likewise.
689
96d6fd6c 690 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
94c96809
AZ
691 strncat-power8 object.
692 * sysdeps/powerpc/powerpc64/multiarch/strcat.c (strcat): Add
693 __strcat_power8 implementation.
694 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
695 (__libc_ifunc_impl_list): Add __strcat_power8 implementation.
696 * sysdeps/powerpc/powerpc64/multiarch/strcat-power8.c: New file:
697 optimized strcat for power8.
698
699 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]: Add
96d6fd6c
AZ
700 strcpy-power8 and stpcpy-power8 objects.
701 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
702 (__libc_ifunc_impl_list): Add __strcpy_power8 and __stpcpy_power8
703 implementations.
704 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: New file:
705 multiarch stpcpy implementation for POWER8.
706 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: New file;
707 multiarch strcpy implementation for POWER8.
708 * sysdeps/powerpc/powerpc64/multiarch/strcpy.c (strcpy): Add
709 __strcpy_power8 function.
710 * sysdeps/powerpc/powerpc64/power8/stpcpy.S: New file: optimized
711 stpcpy for POWER8.
712 * sysdeps/powerpc/powerpc64/power8/strcpy.S: New file: optimized
713 strcpy for POWER8.
714 * NEWS: Update.
715
0f9e5854
LH
7162015-01-13 Leonhard Holz <leonhard.holz@web.de>
717
718 [BZ #16009]
719 * string/strxfrm_l.c (STRXFRM): Allocate fixed size cache for
720 weights and rules. Use do_xfrm_cached if data fits in cache,
721 do_xfrm otherwise. Moved former main loop to...
722 * (do_xfrm_cached): New function.
723 * (do_xfrm): Non-caching version of do_xfrm_cached. Uses
724 find_idx, find_position and stack_push.
725 * (find_idx): New function.
726 * (find_position): Likewise.
727 * localedata/sort-test.sh: Added test run for do_xfrm.
728 * localedata/xfrm-test.c (main): Added command line option
729 -nocache to run the test with strings that are too large for
730 the STRXFRM cache.
731
c60ec0e0
TR
7322015-01-13 Torvald Riegel <triegel@redhat.com>
733
734 * sysdeps/nptl/fork.c (__libc_fork): Provide address of futex
735 variable to lll_futex_wake call, not the value itself.
736
34e93d6c
JM
7372015-01-12 Joseph Myers <joseph@codesourcery.com>
738
5a9e4c09
JM
739 [BZ #17803]
740 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (twom63): Rename to
741 twom64. Adjust value to 0x1p-64L.
742 (__scalblnl): Only return standard underflowing result for K <=
743 -64 not K <= -63; adjust exponent for underflowing result by 64
744 not 63.
745 * math/libm-test.inc (scalbn_test_data): Add more tests.
746 (scalbln_test_data): Likewise.
747
34e93d6c
JM
748 [BZ #17834]
749 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (two63): Change value to
750 0x1p63L.
751 (__scalblnl): Get new exponent of adjusted subnormal value from ES
752 not HX.
753 * math/libm-test.inc (scalbn_test_data): Add more tests.
754 (scalbln_test_data): Likewise.
755
ca677d3c
AZ
7562015-01-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
757 Stefani Seibold <stefani@seibold.net>
758
759 * sysdeps/unix/sysv/linux/x86_64/Makefile [$(subdir) = elf]
760 (sysdep_routines): Add dl-vdso here, ...
761 * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = elf]
762 (sysdep_routines): ... not here.
763 * sysdeps/unix/sysv/linux/i386/gettimeofday.c: New file: set syscall
764 fallback when vDSO is not presented.
765 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_clock_gettime):
766 Define with libc_hidden_proto/libc_hidden_data_def definitions.
767 (_libc_vdso_platform_setup): Rename to __vdso_platform_setup.
768 * sysdeps/unix/sysv/linux/i386/init-first.c: New file: likewise.
769 * sysdeps/unix/sysv/linux/i386/time.c: New file: likewise.
770 * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Moved to ...
771 * sysdeps/unix/sysv/linux/x86/libc-vdso.h: ... here.
772 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: Move to ...
773 * sysdeps/unix/sysv/linux/x86/clock_gettime.c: ... here.
774 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: Move to ...
775 * sysdeps/unix/sysv/linux/x86/gettimeofday.c: ... here. Also added
776 fallback configurable symbol when vDSO is not available.
777 * sysdeps/unix/sysv/linux/x86_64/time.c: Move to ...
778 * sysdeps/unix/sysv/linux/x86/time.c: ... here. Also refactored to
779 be able to redefine fallback symbol when vDSO is not available.
780 * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: Move to ...
781 * sysdeps/unix/sysv/linux/x86/timespec_get.c: ... here.
782
49a9f6ab 7832015-01-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8d2c0a59 784
56cf2763
AZ
785 * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Add tm_capable field.
786 (TLS_INIT_TP): Add tm_capable initialization.
787 (TLS_DEFINE_INIT_TP): Likewise.
788 (THREAD_GET_TM_CAPABLE): New file: get tm_capable field value from
789 TCB.
790 (THREAD_SET_TM_CAPABLE): New file: set tm_capable field value in TCB.
791 * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Add field offset
792 calculation.
793 * sysdeps/powerpc/powerpc32/sysdep.h (DO_CALL): Abort hardware
794 transactoion is lock elision is built and TCB tm_capable is set.
795 * sysdeps/powerpc/powerpc64/sysdep.h (DO_CALL): Likewise.
796 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
797 (INTERNAL_SYSCALL_NCS): Likewise.
798 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
799 (INTERNAL_SYSCALL_NCS): Likewise.
800 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): New define.
801
4b45943a
AZ
802 * sysdeps/powerpc/nptl/elide.h: New file: generic lock elision support
803 for powerpc.
804 * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
805 [pthread_rwlock_t] (__pad1): Change size to 7 bytes in 64 bits case
806 and remove it for 32 bits case.
807 [pthread_rwlock_t] (__rwelision): New field for lock elision.
808 (__PTHREAD_RWLOCK_ELISION_EXTRA): Adjust for new lock elision field
809 initialization.
810 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init):
811 Disable lock elision with rdlocks if elision is not available.
812
8d2c0a59
AZ
813 * sysdeps/unix/sysv/linux/powerpc/Makefile [nptl]
814 (sysdep_routines): Add lock elision objects.
815 * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
816 [pthread_mutex_t] (__spins): Rework to add lock elision field.
817 [pthread_mutex_t] (__elision): Add field.
818 [__PTHREAD_SPINS]: Adjust to init lock elision field.
819 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c: New file: lock
820 elision definitions for powerpc.
821 * sysdeps/unix/sysv/linux/powerpc/elision-lock.c: New file:
822 implementation of lock elision for powerpc.
823 * sysdeps/unix/sysv/linux/powerpc/elision-timed.c: New file:
824 implementation of timed lock elision for powerpc.
825 * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c: New file:
826 implementation of trylock with lock elision for powerpc.
827 * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c: New file:
828 implementaion of unlock for lock elision for powerpc.
829 * sysdeps/unix/sysv/linux/powerpc/force-elision.h: New file:
830 automatic enable lock elision for mutexes.
831 * sysdeps/unix/sysv/linux/powerpc/htm.h: New file: hardware
832 transaction execution definitions for powerpc.
833 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: New file: add TLE
834 definitions.
835 * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_cond_lock.c: New file.
836 * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_lock.c: Likewise.
837 * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_timedlock.c: Likewise.
838 * sysdeps/unix/sysv/linux/powerpc/pthread_mutex_trylock.c: Likewise.
839 * NEWS: Update.
840
bc0ed9f7
RM
8412015-01-09 Roland McGrath <roland@hack.frob.com>
842
843 * sysdeps/posix/shm-directory.c: Use <> rather than ""
844 for #include of <shm-directory.h>.
845
585d9c18
CLT
8462015-01-09 Chung-Lin Tang <cltang@codesourcery.com>
847
848 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Remove MIN() and
849 assign raw DT_REL[A]COUNT value to ranges[0].nrelative.
850
aee6626c
MF
8512015-01-09 Matthew Fortune <matthew.fortune@imgtec.com>
852
853 [BZ #17791]
854 * NEWS: Mention bug fix.
855 * sysdepsysdeps/unix/sysv/linux/microblaze/sys/user.h
856 (PAGE_SHIFT, PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Remove.
857 (HOST_TEXT_START_ADDR, HOST_STACK_END_ADDR): Remove.
858
9e560f48
TR
8592015-01-09 Torvald Riegel <triegel@redhat.com>
860
861 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Delete file.
862
e1cfbd0c
TR
8632015-01-09 Torvald Riegel <triegel@redhat.com>
864
865 * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: Delete file.
866
cf71e44f
DH
8672015-01-09 David Holsgrove <david.holsgrove@xilinx.com>
868
869 * sysdeps/microblaze/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as void
870 pointer and cast to uintptr_t.
871
b360ee62
DH
8722015-01-09 David Holsgrove <david.holsgrove@xilinx.com>
873
874 * sysdeps/microblaze/nptl/tls.h (__microblaze_get_thread_area): Function
875 removed.
876 (READ_THREAD_POINTER): Use __microblaze_thread_area instead.
877
caff764e
DH
8782015-01-09 David Holsgrove <david.holsgrove@xilinx.com>
879
880 * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Use NULL instead
881 of 0.
882
59ff172f
RM
8832015-01-08 Roland McGrath <roland@hack.frob.com>
884
c97d27f1
RM
885 * sysdeps/pthread/timer_routines.c: Fix <pthreadP.h> include to use
886 <nptl/pthreadP.h> instead.
887 * sysdeps/pthread/aio_notify.c: Include <signal.h> for raise decl.
888
08734ccd
RM
889 * signal/allocrtsig.c (RESERVED_SIGRT): New macro, defined to 0 if not
890 already defined.
891 [__SIGRTMIN] (init): Function removed.
892 [__SIGRTMIN] (initialized): Variable removed.
893 [!__SIGRTMIN] (current_rtmin, current_rtmax): Variables removed.
894 [__SIGRTMIN] (current_rtmin, current_rtmax): Initialize to
895 __SIGRTMIN + RESERVED_SIGRT and __SIGRTMAX, respectively.
896 (__libc_current_sigrtmin) [__SIGRTMIN]: Don't call init.
897 (__libc_current_sigrtmin) [!__SIGRTMIN]: Just return -1.
898 (__libc_current_sigrtmin): Add __libc_current_sigrtmin_private alias.
899 (__libc_current_sigrtmax) [__SIGRTMIN]: Don't call init.
900 (__libc_current_sigrtmax) [!__SIGRTMIN]: Just return -1.
901 (__libc_current_sigrtmax): Add __libc_current_sigrtmax_private alias.
902 (__libc_allocate_rtsig) [__SIGRTMIN]: Don't call init.
903 (__libc_allocate_rtsig): Add __libc_allocate_rtsig_private alias.
904 * sysdeps/nptl/allocrtsig.c: New file.
905 * sysdeps/unix/sysv/linux/allocrtsig.c: File removed.
906 * sysdeps/unix/sysv/linux/testrtsig.h: File removed.
907 * sysdeps/generic/testrtsig.h: File removed.
908
7b052e33
RM
909 * nptl/pthread_sigmask.c [SIGCANCEL || SIGTIMER || SIGSETXID]: #error.
910 (pthread_sigmask): Call sigprocmask, not __sigprocmask.
911
cc40d25e
RM
912 * nptl/nptl-init.c (pthread_functions): Conditionalize
913 .ptr__nptl_setxid initialization on [SIGSETXID].
914
9287adf0
RM
915 * sysdeps/nptl/sys/procfs.h: New file.
916 * nptl_db/Makefile (headers): Add it.
917 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Don't add it.
918
59ff172f
RM
919 * nptl/pthreadP.h (check_cpuset_attr): Moved ...
920 * sysdeps/unix/sysv/linux/check-cpuset.h: ... to this new file.
921 * nptl/pthread_attr_setaffinity.c: Include it.
922 * nptl/pthread_setattr_default_np.c: Likewise.
923 * nptl/check-cpuset.h: New file.
924
b9205857
RH
9252015-01-08 Richard Henderson <rth@redhat.com>
926
927 * elf/Makefile (CFLAGS-tst-execstack-mod.c): Add -Wno-trampolines
928 (CFLAGS-tst-execstack-prog.c): Likewise.
929 * nptl/Makefile (CFLAGS-tst-execstack-mod.c): Likewise.
930
1a0a8d15
CLT
9312015-01-08 Chung-Lin Tang <cltang@codesourcery.com>
932 Sandra Loosemore <sandra@codesourcery.com>
933 Andrew Jenner <andrew@codesourcery.com>
934 Joseph Myers <joseph@codesourcery.com>
935 Nathan Sidwell <nathan@codesourcery.com>
936
937 * elf/elf.h (EM_ALTERA_NIOS2): New machine number for Altera Nios II.
938 (DT_NIOS2_GP): New dynamic entry type for Nios II _gp address.
939 (R_NIOS2_NONE,R_NIOS2_S16,R_NIOS2_U16): Define Nios II relocations.
940 (R_NIOS2_PCREL16,R_NIOS2_CALL26,R_NIOS2_IMM5): Likewise.
941 (R_NIOS2_CACHE_OPX,R_NIOS2_IMM6,R_NIOS2_IMM8,R_NIOS2_HI16): Likewise.
942 (R_NIOS2_LO16,R_NIOS2_HIADJ16,R_NIOS2_BFD_RELOC_32): Likewise.
943 (R_NIOS2_BFD_RELOC_16,R_NIOS2_BFD_RELOC_8,R_NIOS2_GPREL): Likewise.
00b8b9ba
SP
944 (R_NIOS2_GNU_VTINHERIT,R_NIOS2_GNU_VTENTRY,R_NIOS2_UJMP): Likewise.
945 (R_NIOS2_CJMP,R_NIOS2_CALLR,R_NIOS2_ALIGN,R_NIOS2_GOT16): Likewise.
946 (R_NIOS2_CALL16,R_NIOS2_GOTOFF_LO,R_NIOS2_GOTOFF_HA): Likewise.
947 (R_NIOS2_PCREL_LO,R_NIOS2_PCREL_HA,R_NIOS2_TLS_GD16): Likewise.
948 (R_NIOS2_TLS_LDM16,R_NIOS2_TLS_LDO16,R_NIOS2_TLS_IE16): Likewise.
949 (R_NIOS2_TLS_LE16,R_NIOS2_TLS_DTPMOD,R_NIOS2_TLS_DTPREL): Likewise.
1a0a8d15
CLT
950 (R_NIOS2_TLS_TPREL,R_NIOS2_COPY,R_NIOS2_GLOB_DAT): Likewise.
951 (R_NIOS2_JUMP_SLOT,R_NIOS2_RELATIVE,R_NIOS2_GOTOFF): Likewise.
952 (R_NIOS2_CALL26_NOAT,R_NIOS2_GOT_LO,R_NIOS2_GOT_HA): Likewise.
953 (R_NIOS2_CALL_LO,R_NIOS2_CALL_HA): Likewise.
954
dd6e8af6
AZ
9552015-01-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
956
957 * sysdeps/unix/sysv/linux/futimens.c (futimens): Use address of first
958 timespec struct member in syscall macro.
959 * sysdeps/unix/sysv/linux/utimensat.c (utimensat): Likewise.
960 * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Use address of
961 first timeval struct member in syscall macro.
962 * sysdeps/unix/sysv/linux/utimes.c (__utimeS): Likewise.
963
8116321f
JM
9642015-01-07 Joseph Myers <joseph@codesourcery.com>
965
966 [BZ #17748]
967 * include/fenv.h (__feupdateenv): Use libm_hidden_proto.
968 * math/feupdateenv.c (__feupdateenv): Use libm_hidden_def.
969 * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Rename to
970 __feupdateenv and define as weak alias of __feupdateenv. Use
971 libm_hidden_weak.
972 * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Use
973 libm_hidden_def.
974 * sysdeps/arm/feupdateenv.c (feupdateenv): Rename to __feupdateenv
975 and define as weak alias of __feupdateenv. Use libm_hidden_weak.
976 * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
977 * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Use
978 libm_hidden_def.
979 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Rename to
980 __feupdateenv and define as weak alias of __feupdateenv. Use
981 libm_hidden_weak.
982 * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Use
983 libm_hidden_def.
984 * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Rename to
985 __feupdateenv and define as weak alias of __feupdateenv. Use
986 libm_hidden_weak.
987 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Use
988 libm_hidden_def.
989 * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
990 * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
991 (__feupdateenv): Likewise.
992 * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Rename to
993 __feupdateenv and define as weak alias of __feupdateenv. Use
994 libm_hidden_weak.
995 * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
996 * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Use
997 libm_hidden_def.
998 * sysdeps/tile/math_private.h (__feupdateenv): New inline
999 function.
1000 * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Use
1001 libm_hidden_def.
1002 * sysdeps/generic/math_private.h (default_libc_feupdateenv): Call
1003 __feupdateenv instead of feupdateenv.
1004 (default_libc_feupdateenv_test): Likewise.
1005 (libc_feresetround_ctx): Likewise.
1006
882dfe18
AZ
10072015-01-07 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1008
1009 * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Fix function
1010 prototype.
1011
39a12f8d
CM
10122015-01-07 Chris Metcalf <cmetcalf@ezchip.com>
1013
1014 * posix/regcomp.c (parse_bracket_exp): Initialize type to
1015 COLL_SYM in a couple of places to avoid uninitialized variable
1016 wanings on tilegx gcc 4.8.2.
1017
dc400d7b
RE
10182015-01-07 Richard Earnshaw <rearnsha@arm.com>
1019
1020 * sysdeps/aarch64/strcpy.S: New file.
1021 * sysdeps/aarch64/stpcpy.S: New file.
1022 * NEWS: Updated.
1023
ec582ca0
RE
10242015-01-07 Richard Earnshaw <rearnsha@arm.com>
1025
1026 * sysdeps/aarch64/strrchr.S: New file.
1027 * NEWS: Updated.
1028
d5b1c5ed
EB
10292015-01-07 Eric Biggers <ebiggers3@gmail.com>
1030
1031 [BZ #17658]
1032 * stdlib/setenv.c: Fix memory leak when setting large,
1033 duplicate string.
1034
fb87ee96
VN
10352015-01-06 Vladimir A. Nazarenko <naszar@ya.ru>
1036
60f046a8 1037 [BZ #17273]
fb87ee96
VN
1038 * misc/mntent_r.c (__getmntent_r): Cut off trailing spaces
1039 and tabs from buffer before parsing fstab entry.
1040 * misc/tst-mntent.c (main): Add test for mount entry with
1041 trailing spaces and tabs.
1042
cd42798a
JM
10432015-01-06 Joseph Myers <joseph@codesourcery.com>
1044
01238691
JM
1045 [BZ #17748]
1046 * include/fenv.h (__fesetround): Declare. Use libm_hidden_proto.
1047 * math/fesetround.c (fesetround): Rename to __fesetround and
1048 define as weak alias of __fesetround. Use libm_hidden_weak.
1049 * sysdeps/aarch64/fpu/fesetround.c (fesetround): Likewise.
1050 * sysdeps/alpha/fpu/fesetround.c (fesetround): Likewise.
1051 * sysdeps/arm/fesetround.c (fesetround): Likewise.
1052 * sysdeps/hppa/fpu/fesetround.c (fesetround): Likewise.
1053 * sysdeps/i386/fpu/fesetround.c (fesetround): Likewise.
1054 * sysdeps/ia64/fpu/fesetround.c (fesetround): Likewise.
1055 * sysdeps/m68k/fpu/fesetround.c (fesetround): Likewise.
1056 * sysdeps/mips/fpu/fesetround.c (fesetround): Likewise.
1057 * sysdeps/powerpc/fpu/fenv_libc.h (__fesetround): Rename to
1058 __fesetround_inline.
1059 * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetround_ppc): Call
1060 __fesetround_inline instead of __fesetround.
1061 * sysdeps/powerpc/fpu/fesetround.c (fesetround): Rename to
1062 __fesetround and define as weak alias of __fesetround. Use
1063 libm_hidden_weak. Call __fesetround_inline instead of
1064 __fesetround.
1065 * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Rename to
1066 __fesetround and define as weak alias of __fesetround. Use
1067 libm_hidden_weak.
1068 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c (fesetround):
1069 Likewise.
1070 * sysdeps/s390/fpu/fesetround.c (fesetround): Likewise.
1071 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
1072 * sysdeps/sparc/fpu/fesetround.c (fesetround): Likewise.
1073 * sysdeps/tile/math_private.h (__fesetround): New inline function.
1074 * sysdeps/x86_64/fpu/fesetround.c (fesetround): Rename to
1075 __fesetround and define as weak alias of __fesetround. Use
1076 libm_hidden_weak.
1077 * sysdeps/generic/math_private.h (default_libc_fesetround): Call
1078 __fesetround instead of fesetround.
1079 (default_libc_feholdexcept_setround): Likewise.
1080 (libc_feholdsetround_ctx): Likewise.
1081 (libc_feholdsetround_noex_ctx): Likewise.
1082
cd42798a
JM
1083 [BZ #17748]
1084 * include/fenv.h (__fesetenv): Use libm_hidden_proto.
1085 * math/fesetenv.c (__fesetenv): Use libm_hidden_def.
1086 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
1087 and define as weak alias of __fesetenv. Use libm_hidden_weak.
1088 * sysdeps/alpha/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1089 * sysdeps/arm/fesetenv.c (fesetenv): Rename to __fesetenv and
1090 define as weak alias of __fesetenv. Use libm_hidden_weak.
1091 * sysdeps/hppa/fpu/fesetenv.c (fesetenv): Likewise.
1092 * sysdeps/i386/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1093 * sysdeps/ia64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1094 define as weak alias of __fesetenv. Use libm_hidden_weak.
1095 * sysdeps/m68k/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1096 * sysdeps/mips/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1097 define as weak alias of __fesetenv. Use libm_hidden_weak.
1098 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Use
1099 libm_hidden_def.
1100 * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Likewise.
1101 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c (__fesetenv):
1102 Likewise.
1103 * sysdeps/s390/fpu/fesetenv.c (fesetenv): Rename to __fesetenv and
1104 define as weak alias of __fesetenv. Use libm_hidden_weak.
1105 * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
1106 * sysdeps/sparc/fpu/fesetenv.c (__fesetenv): Use libm_hidden_def.
1107 * sysdeps/tile/math_private.h (__fesetenv): New inline function.
1108 * sysdeps/x86_64/fpu/fesetenv.c (fesetenv): Rename to __fesetenv
1109 and define as weak alias of __fesetenv. Use libm_hidden_weak.
1110 * sysdeps/generic/math_private.h (default_libc_fesetenv): Use
1111 __fesetenv instead of fesetenv.
1112 (libc_feresetround_noex_ctx): Likewise.
1113 * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
1114 * sysdeps/hppa/fpu/feupdateenv.c (feupdateenv): Likewise.
1115 * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Likewise.
1116 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
1117 * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
1118 * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
1119 * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
1120 * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c
1121 (__feupdateenv): Likewise.
1122 * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
1123 * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
1124 * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
1125 * sysdeps/x86_64/fpu/feupdateenv.c (__feupdateenv): Likewise.
1126
38949026
AJ
11272015-01-06 Aurelien Jarno <aurelien@aurel32.net>
1128
1cf98e27 1129 [BZ #17806]
38949026
AJ
1130 * resolv/res_init.c (__res_iclose): Only clear nsinit if the
1131 addresses have been freed.
1132
5fe55e9c
AJ
11332015-01-06 Aurelien Jarno <aurelien@aurel32.net>
1134
1135 * resolv/res_init.c (__res_vinit): Improve comments about nserv
1136 and nservall.
1137
dc8ab018
OB
11382015-01-06 Ondřej Bílka <neleai@seznam.cz>
1139
1140 * sysdeps/unix/sysv/linux/check_pf.c (make_request):
1141 Clean up check_pf allocation pattern. addresses
1142
14bb4e57
AZ
11432015-01-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1144
1145 * nptl/pthread_cancel.c (pthread_cancel): Use ANSI prototype.
1146 * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
1147 * nptl/pthread_cond_wait.c (__pthread_cond_wait): Likewise.
1148 * nptl/pthread_exit.c (__pthread_exit): Likewise.
1149 * nptl/pthread_join.c (pthread_join): Likewise.
1150 * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
1151 * sysdeps/posix/waitid.c (__waitid): Likewise.
1152 * sysdeps/unix/sysv/linux/arm/pread.c (__libc_pread): Likewise.
1153 * sysdeps/unix/sysv/linux/arm/pread64.c (__libc_pread64): Likewise.
1154 * sysdeps/unix/sysv/linux/arm/pwrite.c (__libc_pwrite): Likewise.
1155 * sysdeps/unix/sysv/linux/arm/pwrite64.c (__libc_pwrite64): Likewise.
1156 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c (__libc_pread):
1157 Likewise.
1158 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c
1159 (__libc_pread64): Likewise.
1160 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c
1161 (__libc_pwrite): Likewise.
1162 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c
1163 (__libc_pwrite64): Likewsie.
1164 * sysdeps/unix/sysv/linux/mips/pread.c (__libc_pread): Likewise.
1165 * sysdeps/unix/sysv/linux/mips/pread64.c (__libc_pread64): Likewise.
1166 * sysdeps/unix/sysv/linux/mips/pwrite.c (__libc_pwrite): Likewise.
1167 * sysdeps/unix/sysv/linux/mips/pwrite64.c (__libc_pwrite64): Likewise.
1168 * sysdeps/unix/sysv/linux/msgrcv.c (__libc_msgrcv): Likewise.
1169 * sysdeps/unix/sysv/linux/msgsnd.c (__libc_msgsnd): Likewise.
1170 * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
1171 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c (__libc_pread):
1172 Likewise.
1173 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
1174 (__libc_pread64): Likewise.
1175 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c (__libc_pwrite):
1176 Likewise.
1177 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
1178 (__libc_pwrite64): Likewise.
1179 * sysdeps/unix/sysv/linux/pread.c (__libc_pread): Likewise.
1180 * sysdeps/unix/sysv/linux/pread64.c (__libc_pread64): Likewise.
1181 * sysdeps/unix/sysv/linux/preadv.c (PREADV): Likewise.
1182 * sysdeps/unix/sysv/linux/pthread_kill.c (__pthread_kill): Likewise.
1183 * sysdeps/unix/sysv/linux/pwrite.c (__libc_pwrite): Likewise.
1184 * sysdeps/unix/sysv/linux/pwrite64.c (__libc_pwrite64): Likewise.
1185 * sysdeps/unix/sysv/linux/pwritev.c (__libc_pwritev): Likewise.
1186 * sysdeps/unix/sysv/linux/sh/pread.c (__libc_pread): Likewise.
1187 * sysdeps/unix/sysv/linux/sh/pread64.c (__libc_pread64): Likewise.
1188 * sysdeps/unix/sysv/linux/sh/pwrite.c (__libc_pwrite): Likewise.
1189 * sysdeps/unix/sysv/linux/sh/pwrite64.c (__libc_write64): Likewise.
1190 * sysdeps/unix/sysv/linux/sigsuspend.c (__sigsuspend): Likewise.
1191 * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Likewise.
1192 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Likewise.
1193 * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
1194 * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c (__libc_msgrcv):
1195 Likewise.
1196
10a5e112
AS
11972015-01-06 Andrew Senkevich <andrew.n.senkevich@gmail.com>
1198
1199 * math/Makefile (CFLAGS-test-float.c): Remove -frounding-math.
1200 (CFLAGS-test-double.c): Likewise.
1201 (CFLAGS-test-ldouble.c): Likewise.
1202 (CPPFLAGS-test-ifloat.c): Likewise.
1203 (CPPFLAGS-test-idouble.c): Likewise.
1204 (CPPFLAGS-test-ildoubl.c): Likewise.
1205 (CFLAGS-test-test-fenv.c): Remove variable.
1206 (CFLAGS-test-misc.c): Likewise.
1207
57ada0e7
L
12082015-01-06 H.J. Lu <hongjiu.lu@intel.com>
1209
1210 [BZ #17797]
1211 * bits/time.h (CLOCKS_PER_SEC): Changed to ((clock_t) 1000000).
1212 * sysdeps/unix/sysv/linux/bits/time.h (CLOCKS_PER_SEC): Likewise.
1213 * sysdeps/unix/sysv/linux/clock.c (clock): _Static_assert
1214 CLOCKS_PER_SEC == 1000000.
1215 * time/clocktest.c (main): Replace %ld with %jd and cast to
1216 intmax_t.
1217
46abb64d
RM
12182015-01-05 Roland McGrath <roland@hack.frob.com>
1219
1220 * sysdeps/generic/unwind-resume.h: New file.
1221 * sysdeps/gnu/unwind-resume.c: Include it.
1222 (libgcc_s_personality): Use PERSONALITY_PROTO macro for the prototype.
1223 (__gcc_personality_v0): Likewise, and PERSONALITY_ARGS for the callee
1224 argument list.
1225 (libgcc_s_resume): Variable renamed to __libgcc_s_resume, made hidden
1226 global rather than static.
1227 (_Unwind_Resume): Update user.
1228 Conditionalize definition on [!HAVE_ARCH_UNWIND_RESUME].
1229 (init): Likewise. Renamed to __libgcc_s_init, made hidden global
1230 rather than static. Add __attribute__ ((cold)).
1231 (_Unwind_Resume, __gcc_personality_v0): Update callers.
1232 * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
1233 * sysdeps/arm/arm-unwind-resume.S: New file.
1234 * sysdeps/arm/rt-arm-unwind-resume.S: New file.
1235 * sysdeps/arm/pt-arm-unwind-resume.S: New file.
1236 * sysdeps/arm/Makefile [$(subdir) = csu]
1237 (sysdep_routines, shared-only-routines): Add arm-unwind-resume.
1238 [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
1239 Add rt-arm-unwind-resume.
1240 [$(subdir) = nptl]
1241 (libpthread-sysdep_routines, libpthread-shared-only-routines):
1242 Add pt-arm-unwind-resume.
1243 * sysdeps/unix/sysv/linux/arm/unwind-resume.c: File removed.
1244 * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: File removed.
1245
ef9faf13
JM
12462015-01-05 Joseph Myers <joseph@codesourcery.com>
1247
1248 [BZ #17748]
1249 * include/fenv.h (__feholdexcept): Declare. Use
1250 libm_hidden_proto.
1251 * math/feholdexcpt.c (feholdexcept): Rename to __feholdexcept and
1252 define as weak alias of __feholdexcept. Use libm_hidden_weak.
1253 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1254 * sysdeps/alpha/fpu/feholdexcpt.c (feholdexcept): Likewise.
1255 * sysdeps/arm/feholdexcpt.c (feholdexcept): Likewise.
1256 * sysdeps/hppa/fpu/feholdexcpt.c (feholdexcept): Likewise.
1257 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Likewise.
1258 * sysdeps/ia64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1259 * sysdeps/m68k/fpu/feholdexcpt.c (feholdexcept): Likewise.
1260 * sysdeps/mips/fpu/feholdexcpt.c (feholdexcept): Likewise.
1261 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
1262 * sysdeps/powerpc/nofpu/feholdexcpt.c (feholdexcept): Likewise.
1263 * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c
1264 (feholdexcept): Likewise.
1265 * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
1266 * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
1267 * sysdeps/sparc/fpu/feholdexcpt.c (feholdexcept): Likewise.
1268 * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
1269 * sysdeps/generic/math_private.h (default_libc_feholdexcept): Use
1270 __feholdexcept instead of feholdexcept.
1271 (default_libc_feholdexcept_setround): Likewise.
1272
295a453e
SE
12732015-01-05 Steve Ellcey <sellcey@imgtec.com>
1274
1275 * sysdeps/mips/memset.S (memset): Modify for mips32r6/mips64r6
1276 to avoid using stl/str to align destination.
1277
882c4b9f
SE
12782015-01-05 Steve Ellcey <sellcey@imgtec.com>
1279
1280 * sysdeps/mips/memcpy.S: Add support for mips32r6/mips64r6.
1281
ac4c11f5
JM
12822015-01-05 Joseph Myers <joseph@codesourcery.com>
1283
1284 [BZ #17796]
1285 * sysdeps/unix/sysv/linux/mips/mips64/n64/posix_fadvise.c
1286 [!SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)] (posix_fadvise64):
1287 Define as weak alias not strong alias.
1288
03403e30
SE
12892015-01-05 Steve Ellcey <sellcey@imgtec.com>
1290
1291 * sysdeps/mips/dl-machine.h (elf_machine_load_address): Replace
1292 bltzal with addiupc.
1293 (RTLD_START): Ditto.
1294
1dca195e
CM
12952015-01-05 Chris Metcalf <cmetcalf@ezchip.com>
1296
00b8b9ba
SP
1297 * sysdeps/unix/sysv/linux/tile/bits/libc-vdso.h: Fix return type
1298 for __vdso_* functions in declarations.
1299 * sysdeps/unix/sysv/linux/tile/init-first.c: Likewise for
1300 definitions.
1301 * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL,
1302 INTERNAL_VSYSCALL): Use struct return types to check for error.
7ea793f3 1303
1dca195e
CM
1304 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c [!defined _LP64
1305 && REGISTER_CAST_INT32_TO_INT64]: Provide explicit lround()
1306 function with cast from llround().
1307 * sysdeps/tile/sysdep.h (REGISTER_CAST_INT32_TO_INT64): Define.
1308 * sysdeps/x86_64/x32/sysdep.h (REGISTER_CAST_INT32_TO_INT64):
1309 Define.
1310
a287953a
JM
13112015-01-05 Joseph Myers <joseph@codesourcery.com>
1312
ab70da77
JM
1313 [BZ #17793]
1314 * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c (posix_fadvise64):
1315 Define as weak alias not strong alias.
1316
b8986484
JM
1317 [BZ #17635]
1318 * ctype/ctype-c99.c: New file. isblank implementation moved from
1319 ...
1320 * ctype/ctype-extn.c: ... here.
1321 (__isblank_l): Move to ...
1322 * ctype/ctype-c99_l.c: ... here. New file.
1323 * ctype/Makefile (routines): Add ctype-c99 and ctype-c99_l.
1324 * conform/Makefile (test-xfail-ISO99/ctype.h/linknamespace):
1325 Remove variable.
1326 (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
1327 (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
1328 (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
1329 (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
1330 (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
1331
a287953a
JM
1332 [BZ #17777]
1333 * sysdeps/unix/sysv/linux/wordsize-64/posix_fadvise.c
1334 (posix_fadvise64): Define as weak alias not strong alias.
1335 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
1336 (posix_fallocate64): Likewise.
1337 * conform/Makefile (test-xfail-XOPEN2K/fcntl.h/linknamespace):
1338 Remove variable.
1339 (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
1340 (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
1341 (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
1342 (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
1343 (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
1344
b1efe3bb
MF
13452015-01-05 Matthew Fortune <matthew.fortune@imgtec.com>
1346
1347 [BZ #16191]
1348 * NEWS: Mention bug fix.
1349 * sysdeps/unix/sysv/linux/mips/sys/user.h (PAGE_SHIFT): Remove.
1350 (PAGE_SIZE, PAGE_MASK, NBPG, UPAGES): Likewise.
1351 (HOST_TEXT_START_ADDR, HOST_DATA_START_ADDR): Likewise.
1352 (HOST_STACK_END_ADDR): Likewise.
1353
9706dc5f
JM
13542015-01-02 Joseph Myers <joseph@codesourcery.com>
1355
b93c2205
JM
1356 [BZ #17748]
1357 * include/fenv.h (__fegetround): Declare. Use libm_hidden_proto.
1358 * math/fegetround.c (fegetround): Rename to __fegetround and
1359 define as weak alias of __fegetround. Use libm_hidden_weak.
1360 * sysdeps/aarch64/fpu/fegetround.c (fegetround): Likewise.
1361 * sysdeps/alpha/fpu/fegetround.c (fegetround): Likewise.
1362 * sysdeps/arm/fegetround.c (fegetround): Likewise.
1363 * sysdeps/hppa/fpu/fegetround.c (fegetround): Likewise.
1364 * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
1365 * sysdeps/ia64/fpu/fegetround.c (fegetround): Likewise.
1366 * sysdeps/m68k/fpu/fegetround.c (fegetround): Likewise.
1367 * sysdeps/mips/fpu/fegetround.c (fegetround): Likewise.
1368 * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
1369 Undefine after rather than before function definition; use
1370 parentheses around function name in definition.
1371 (__fegetround): Also undefine macro after function definition.
1372 * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Rename to
1373 __fegetround and define as weak alias of __fegetround. Use
1374 libm_hidden_weak. Do not undefine as macro.
1375 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
1376 Likewise.
1377 * sysdeps/s390/fpu/fegetround.c (fegetround): Rename to
1378 __fegetround and define as weak alias of __fegetround. Use
1379 libm_hidden_weak.
1380 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
1381 * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
1382 * sysdeps/tile/math_private.h (__fegetround): New inline function.
1383 * sysdeps/x86_64/fpu/fegetround.c (fegetround): Rename to
1384 __fegetround and define as weak alias of __fegetround. Use
1385 libm_hidden_weak.
1386 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Use
1387 __fegetround instead of fegetround.
1388
253a59cc
JM
1389 [BZ #17782]
1390 * sysdeps/unix/sysv/linux/mips/bits/termios.h (TIOCSER_TEMT):
1391 Condition macro definition on [__USE_MISC].
1392
27dae011
JM
1393 [BZ #17781]
1394 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
1395 (struct sigaction): Change type of sa_flags field to int.
1396
172019c0
JM
1397 [BZ #17780]
1398 * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (struct flock)
1399 [!__USE_FILE_OFFSET64 && _MIPS_SIM != _ABI64]: Rename pad field to
1400 __glibc_reserved0.
1401
522ad1d6
JM
1402 * nptl/version.c (banner): Use single year in copyright notice.
1403
9706dc5f
JM
1404 * NEWS: Update copyright dates.
1405 * catgets/gencat.c (print_version): Likewise.
1406 * csu/version.c (banner): Likewise.
1407 * debug/catchsegv.sh: Likewise.
1408 * debug/pcprofiledump.c (print_version): Likewise.
1409 * debug/xtrace.sh (do_version): Likewise.
1410 * elf/ldconfig.c (print_version): Likewise.
1411 * elf/ldd.bash.in: Likewise.
1412 * elf/pldd.c (print_version): Likewise.
1413 * elf/sotruss.sh: Likewise.
1414 * elf/sprof.c (print_version): Likewise.
1415 * iconv/iconv_prog.c (print_version): Likewise.
1416 * iconv/iconvconfig.c (print_version): Likewise.
1417 * locale/programs/locale.c (print_version): Likewise.
1418 * locale/programs/localedef.c (print_version): Likewise.
1419 * login/programs/pt_chown.c (print_version): Likewise.
1420 * malloc/memusage.sh (do_version): Likewise.
1421 * malloc/memusagestat.c (print_version): Likewise.
1422 * malloc/mtrace.pl: Likewise.
1423 * manual/libc.texinfo: Likewise.
1424 * nptl/version.c (banner): Likewise.
1425 * nscd/nscd.c (print_version): Likewise.
1426 * nss/getent.c (print_version): Likewise.
1427 * nss/makedb.c (print_version): Likewise.
1428 * posix/getconf.c (main): Likewise.
1429 * scripts/test-installation.pl: Likewise.
1430 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
1431
b8607aac
WN
14322015-01-02 Will Newton <will.newton@linaro.org>
1433
1434 * sysdeps/arm/armv7/configure: Removed.
1435 * sysdeps/arm/armv7/configure.ac: Likewise.
1436
b168057a
JM
14372015-01-02 Joseph Myers <joseph@codesourcery.com>
1438
1439 * All files with FSF copyright notices: Update copyright dates
1440 using scripts/update-copyrights.
1441 * intl/plural.c: Regenerated.
1442 * locale/programs/charmap-kw.h: Likewise.
1443 * locale/programs/locfile-kw.h: Likewise.
1444
b217c15f
SP
14452015-01-02 Siddhesh Poyarekar <siddhesh@redhat.com>
1446
1447 * scripts/gen-posix-conf-vars.awk (END): Don't use sprintf.
1448
73a268c7
JM
14492014-12-31 Joseph Myers <joseph@codesourcery.com>
1450
1451 [BZ #17748]
1452 * include/fenv.h (__fegetenv): Use libm_hidden_proto.
1453 * math/fegetenv.c (__fegetenv): Use libm_hidden_def.
1454 * sysdeps/aarch64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
1455 and define as weak alias of __fegetenv. Use libm_hidden_weak.
1456 * sysdeps/alpha/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1457 * sysdeps/arm/fegetenv.c (fegetenv): Rename to __fegetenv and
1458 define as weak alias of __fegetenv. Use libm_hidden_weak.
1459 * sysdeps/hppa/fpu/fegetenv.c (fegetenv): Likewise.
1460 * sysdeps/i386/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1461 * sysdeps/ia64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1462 define as weak alias of __fegetenv. Use libm_hidden_weak.
1463 * sysdeps/m68k/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1464 * sysdeps/mips/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1465 define as weak alias of __fegetenv. Use libm_hidden_weak.
1466 * sysdeps/powerpc/fpu/fegetenv.c (__fegetenv): Use
1467 libm_hidden_def.
1468 * sysdeps/powerpc/nofpu/fegetenv.c (__fegetenv): Likewise.
1469 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (__fegetenv):
1470 Likewise.
1471 * sysdeps/s390/fpu/fegetenv.c (fegetenv): Rename to __fegetenv and
1472 define as weak alias of __fegetenv. Use libm_hidden_weak.
1473 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
1474 * sysdeps/sparc/fpu/fegetenv.c (__fegetenv): Use libm_hidden_def.
1475 * sysdeps/tile/math_private.h (__fegetenv): New inline function.
1476 * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Rename to __fegetenv
1477 and define as weak alias of __fegetenv. Use libm_hidden_weak.
1478 * sysdeps/generic/math_private.h (libc_feholdsetround_ctx): Use
1479 __fegetenv instead of fegetenv.
1480 (libc_feholdsetround_noex_ctx): Likewise.
1481
0bd95672
MF
14822014-12-31 Matthew Fortune <matthew.fortune@imgtec.com>
1483
1484 * elf/elf.h (PT_MIPS_ABIFLAGS): Define.
1485 (Elf_MIPS_ABIFlags_v0): New structure.
1486 (EF_MIPS_FP64): Define.
1487 (MIPS_AFL_REG_NONE, MIPS_AFL_REG_32, MIPS_AFL_REG_64): Likewise.
1488 (MIPS_AFL_REG_128, MIPS_AFL_ASE_DSP, MIPS_AFL_ASE_DSP64): Likewise.
1489 (MIPS_AFL_ASE_DSPR2, MIPS_AFL_ASE_EVA, MIPS_AFL_ASE_MCU): Likewise.
1490 (MIPS_AFL_ASE_MDMX, MIPS_AFL_ASE_MIPS3D, MIPS_AFL_ASE_MT): Likewise.
1491 (MIPS_AFL_ASE_SMARTMIPS, MIPS_AFL_ASE_VIRT): Likewise.
1492 (MIPS_AFL_ASE_VIRT64, MIPS_AFL_ASE_MSA, MIPS_AFL_ASE_MSA64): Likewise.
1493 (MIPS_AFL_ASE_MIPS16, MIPS_AFL_ASE_MICROMIPS): Likewise.
1494 (MIPS_AFL_ASE_XPA, MIPS_AFL_EXT_XLR, MIPS_AFL_EXT_OCTEON2): Likewise.
1495 (MIPS_AFL_EXT_OCTEONP, MIPS_AFL_EXT_LOONGSON_3A): Likewise.
1496 (MIPS_AFL_EXT_OCTEON, MIPS_AFL_EXT_5900, MIPS_AFL_EXT_4010): Likewise.
1497 (MIPS_AFL_EXT_4100, MIPS_AFL_EXT_3900, MIPS_AFL_EXT_10000): Likewise.
1498 (MIPS_AFL_EXT_SB1, MIPS_AFL_EXT_4111, MIPS_AFL_EXT_4120): Likewise.
1499 (MIPS_AFL_EXT_5400, MIPS_AFL_EXT_5500): Likewise.
1500 (MIPS_AFL_EXT_LOONGSON_2E, MIPS_AFL_EXT_LOONGSON_2F): Likewise.
1501 (Val_GNU_MIPS_ABI_FP_ANY, Val_GNU_MIPS_ABI_FP_DOUBLE): New enum values.
1502 (Val_GNU_MIPS_ABI_FP_SINGLE, Val_GNU_MIPS_ABI_FP_SOFT): Likewise.
1503 (Val_GNU_MIPS_ABI_FP_OLD_64, Val_GNU_MIPS_ABI_FP_XX): Likewise.
1504 (Val_GNU_MIPS_ABI_FP_64, Val_GNU_MIPS_ABI_FP_64A): Likewise.
1505 (Val_GNU_MIPS_ABI_FP_MAX): Likewise.
1506 * sysdeps/mips/Makefile [subdir=elf]: Add tst-abi-interlink,
1507 tst-mode-switch-1, tst-mode-switch-2, tst-mode-switch-3 tests.
1508 * sysdeps/mips/bits/linkmap.h (struct link_map_machine): Add fpmode
1509 field.
1510 * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Reject
1511 EF_MIPS_FP64.
1512 * sysdeps/mips/dl-machine-reject-phdr.h: New file.
1513 * sysdeps/mips/tst-abi-fp32mod.c: Likewise.
1514 * sysdeps/mips/tst-abi-fpxxmod.c: Likewise.
1515 * sysdeps/mips/tst-abi-fpxxomod.c: Likewise.
1516 * sysdeps/mips/tst-abi-fp64mod.c: Likewise.
1517 * sysdeps/mips/tst-abi-fp64amod.c: Likewise.
1518 * sysdeps/mips/tst-abi-interlink.c: Likewise.
1519 * sysdeps/mips/tst-mode-switch-1.c: Likewise.
1520 * sysdeps/mips/tst-mode-switch-2.c: Likewise.
1521 * sysdeps/mips/tst-mode-switch-3.c: Likewise.
1522 * sysdeps/unix/sysv/linux/mips/configure.ac (o32-fpabi): Define to
1523 record the current FP ABI extension.
1524 (mips-mode-switch): Define to show if kernel headers support mode
1525 switching.
1526 * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
1527 * sysdeps/unix/sysv/linux/mips/ldsodefs.h: Increase maximum
1528 supported SYSV ABI version to 3.
1529 * sysdeps/unix/sysv/linux/mips/libc-abis: Add new MIPS_O32_FP64
1530 feature.
1531
f59ad976
RS
15322014-12-31 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
1533 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1534
1535 * sysdeps/powerpc/powerpc64/power7/strcpy.S (strcpy): Optimize unaligned
1536 path.
1537 * benchtests/bench-strcpy.c (test_main): Add more unaligned inputs.
1538
4a3d3999
JM
15392014-12-31 Joseph Myers <joseph@codesourcery.com>
1540
1541 * sysdeps/powerpc/bits/fenvinline.h (fegetround): Rename macro to
1542 __fegetround and redefine to call __fegetround. Remove condition
1543 on [!__NO_MATH_INLINES].
1544 * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove inline
1545 function.
1546 * sysdeps/powerpc/nofpu/fenv_libc.h: Remove file.
1547 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
1548 Remove macro.
1549 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Include <fenv.h>
1550 instead of <fenv_libc.h>.
1551 (__llrintl): Call fegetround instead of __fegetround.
1552 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Include <fenv.h>
1553 instead of <fenv_libc.h>.
1554 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
1555 (__lrintl): Call fegetround instead of __fegetround.
1556 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Include <fenv.h>
1557 instead of <fenv_libc.h>.
1558 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
1559 (__rintl): Call fegetround instead of __fegetround.
1560
195f3afc
SP
15612014-12-31 Siddhesh Poyarekar <siddhesh@redhat.com>
1562
1563 * scripts/gen-posix-conf-vars.awk: Don't use multi-dimensional
1564 arrays.
1565
7062bd42
L
15662014-12-30 H.J. Lu <hongjiu.lu@intel.com>
1567
1568 [BZ #17775]
1569 * sysdeps/i386/dl-machine.h (PI_STATIC_AND_HIDDEN): Removed.
1570 (elf_machine_dynamic) [!PI_STATIC_AND_HIDDEN]: Likewise.
1571 (elf_machine_load_address) [!PI_STATIC_AND_HIDDEN]: Likewise.
1572
07256e18
AS
15732014-12-30 Andrew Senkevich <andrew.senkevich@intel.com>
1574
1575 * sysdeps/i386/tls-macros.h: Include <features.h>.
1576 (TLS_LE): Use non-PIC version for GCC >= 5.0.
1577 (TLS_IE): Likewise.
1578 (TLS_LD): Likewise.
1579 (TLS_GD): Likewise.
1580 * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Don't
1581 define for GCC >= 5.0.
1582
1ff950ad
CM
15832014-12-30 Chris Metcalf <cmetcalf@ezchip.com>
1584
1585 * math/test-fenv.c (test_single_exception, set_single_exc,
1586 feenv_nomask_test, feenv_mask_test, feexcp_nomask_test,
1587 feexcp_mask_test, feenable_test, fe_single_test): Add
1588 [!FE_ALL_EXCEPT] test so these routines are not compiled in the
1589 case where they are not used.
1590 * math/libm-test.inc: Likewise.
1591 * setjmp/test-setjmp-fp.c: Mark attribute ((unused)) on variable
1592 unused in the absence of FP rounding/exception support.
1593 * stdio-common/tst-printf-round.c: Likewise.
1594 * stdlib/tst-strtod-round.c: Likewise.
1595 * stdlib/tst-strtod-underflow.c: Likewise.
1596
0747f818
JM
15972014-12-30 Joseph Myers <joseph@codesourcery.com>
1598
1599 [BZ #17723]
1600 * include/fenv.h (__feraiseexcept): Use libm_hidden_proto.
1601 * math/fraiseexcpt.c (__feraiseexcept): Use libm_hidden_def.
1602 * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1603 __feraiseexcept and define as weak alias of __feraiseexcept. Use
1604 libm_hidden_weak.
1605 * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Likewise.
1606 * sysdeps/hppa/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
1607 * sysdeps/i386/fpu/fraiseexcpt.c (__feraiseexcept): Use
1608 libm_hidden_def.
1609 * sysdeps/ia64/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1610 __feraiseexcept and define as weak alias of __feraiseexcept. Use
1611 libm_hidden_weak.
1612 * sysdeps/m68k/coldfire/fpu/fraiseexcpt.c (feraiseexcept):
1613 Likewise.
1614 * sysdeps/microblaze/math_private.h (__feraiseexcept): New macro.
1615 * sysdeps/mips/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1616 __feraiseexcept and define as weak alias of __feraiseexcept. Use
1617 libm_hidden_weak.
1618 * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Use
1619 libm_hidden_def.
1620 * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
1621 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c
1622 (__feraiseexcept): Likewise.
1623 * sysdeps/s390/fpu/fraiseexcpt.c (feraiseexcept): Rename to
1624 __feraiseexcept and define as weak alias of __feraiseexcept. Use
1625 libm_hidden_weak.
1626 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Likewise.
1627 * sysdeps/sparc/fpu/fraiseexcpt.c (__feraiseexcept): Use
1628 libm_hidden_def.
1629 * sysdeps/tile/math_private.h (__feraiseexcept): New macro.
1630 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (__feraiseexcept):
1631 Use libm_hidden_def.
1632 * sysdeps/x86_64/fpu/fraiseexcpt.c (__feraiseexcept): Use
1633 libm_hidden_def.
1634 (feraiseexcept): Define as weak not strong alias. Use
1635 libm_hidden_weak.
1636 * sysdeps/x86/fpu/bits/fenv.h (__feraiseexcept_invalid_divbyzero):
1637 New inline function. Factored out of ...
1638 (feraiseexcept): ... here. Use __feraiseexcept_invalid_divbyzero.
1639 * sysdeps/x86/fpu/include/bits/fenv.h: New file.
1640 * math/e_scalb.c (invalid_fn): Call __feraiseexcept instead of
1641 feraiseexcept.
1642 * math/w_acos.c (__acos): Likewise.
1643 * math/w_asin.c (__asin): Likewise.
1644 * math/w_ilogb.c (__ilogb): Likewise.
1645 * math/w_j0.c (y0): Likewise.
1646 * math/w_j1.c (y1): Likewise.
1647 * math/w_jn.c (yn): Likewise.
1648 * math/w_log.c (__log): Likewise.
1649 * math/w_log10.c (__log10): Likewise.
1650 * sysdeps/aarch64/fpu/feupdateenv.c (feupdateenv): Likewise.
1651 * sysdeps/aarch64/fpu/math_private.h
1652 (libc_feupdateenv_test_aarch64): Likewise.
1653 * sysdeps/alpha/fpu/feupdateenv.c (__feupdateenv): Likewise.
1654 * sysdeps/arm/fenv_private.h (libc_feupdateenv_test_vfp): Likewise.
1655 * sysdeps/arm/feupdateenv.c (feupdateenv): Likewise.
1656 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Likewise.
1657 * sysdeps/m68k/fpu/feupdateenv.c (__feupdateenv): Likewise.
1658 * sysdeps/mips/fpu/feupdateenv.c (feupdateenv): Likewise.
1659 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Likewise.
1660 * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
1661 * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
1662 * sysdeps/sparc/fpu/feupdateenv.c (__feupdateenv): Likewise.
1663
8d2b2763
L
16642014-12-30 H.J. Lu <hongjiu.lu@intel.com>
1665
1666 [BZ #17732]
1667 * io/test-utime.c (main): Replace %ld with %jd and cast to
1668 intmax_t.
41fad830 1669 * libio/tst-ftell-active-handler.c (do_append_test): Likewise.
e401d5ca
L
1670 * nptl/tst-mutex5.c: Include <stdint.h>.
1671 (do_test): Replace %ld with %jd and cast to intmax_t.
6490d945
L
1672 * posix/tst-regex.c (run_test): Likewise.
1673 (run_test_backwards): Likewise.
5d619de4
L
1674 * rt/tst-clock.c: Include <stdint.h>.
1675 (clock_test): Replace %ld with %jd and cast to intmax_t.
1676 * rt/tst-cpuclock1.c: Include <stdint.h>.
1677 (do_test): Replace %lu with %ju and cast to uintmax_t.
1678 * rt/tst-cpuclock2.c: Include <stdint.h>.
1679 (do_test): Replace %lu with %ju and cast to uintmax_t.
1680 * rt/tst-mqueue1.c: Include <stdint.h>.
1681 (check_attrs): Replace %ld with %jd and cast to intmax_t.
1682 * rt/tst-mqueue3.c (fct): Replace %ld with %jd and cast to
1683 intmax_t.
1684 * rt/tst-mqueue4.c (do_test): Likewise.
1685 * rt/tst-timer4.c: Include <stdint.h>.
1686 (check_ts): Replace %ld with %jd and cast to intmax_t.
1687 (do_test): Likewise.
ad86fbc3
L
1688 * stdio-common/tst-fmemopen2.c (do_test): Replace %ld with %jd
1689 and cast to intmax_t.
37f46900 1690 * sysdeps/pthread/tst-timer.c (main): Likewise.
fe342f50
L
1691 * time/clocktest.c (main): Likewise.
1692 * time/tst-posixtz.c (do_test): Likewise.
126f6c72 1693 * timezone/tst-timezone.c (main): Likewise.
8d2b2763 1694
8b4416d8
AS
16952014-12-30 Andrew Senkevich <andrew.senkevich@intel.com>
1696 H.J. Lu <hongjiu.lu@intel.com>
1697
1698 * sysdeps/i386/i686/multiarch/bcopy-sse2-unaligned.S: New file.
1699 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
1700 * sysdeps/i386/i686/multiarch/memmove-sse2-unaligned.S: Likewise.
1701 * sysdeps/i386/i686/multiarch/mempcpy-sse2-unaligned.S: Likewise.
1702 * sysdeps/i386/i686/multiarch/bcopy.S: Select the sse2_unaligned
1703 version if bit_Fast_Unaligned_Load is set.
1704 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
1705 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
1706 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
1707 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
1708 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
1709 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
1710 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
1711 bcopy-sse2-unaligned, memcpy-sse2-unaligned,
1712 memmove-sse2-unaligned and mempcpy-sse2-unaligned.
1713 * sysdeps/i386/i686/multiarch/ifunc-impl-list.c (MAX_IFUNC): Set
1714 to 4.
1715 (__libc_ifunc_impl_list): Test __bcopy_sse2_unaligned,
1716 __memmove_chk_sse2_unaligned, __memmove_sse2_unaligned,
1717 __memcpy_chk_sse2_unaligned, __memcpy_sse2_unaligned,
1718 __mempcpy_chk_sse2_unaligned, and __mempcpy_sse2_unaligned.
1719
e47b8d3b
CM
17202014-12-29 Chris Metcalf <cmetcalf@ezchip.com>
1721
6d6d7fde
CM
1722 * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
1723 instead of #if to avoid a Wundef warning.
1724 * stdlib/tst-limits.c (do_test): Likewise.
1725
cd2c37c9
CM
1726 * sysdeps/tile/math_private.h (fetestexcept): Add macro to
1727 parallel other exception macros.
1728 (fegetenv): Convert from macro to extern inline so that it applies
1729 retroactively to inline functions already seen by the compiler.
1730 (fesetenv, feupdateenv, fegetround, fesetround): Likewise.
1731
e47b8d3b
CM
1732 * posix/Makefile (before-compile): Use $(objpfx) for
1733 posix-conf-vars-def.h.
1734
4a6aca7b
SP
17352014-12-29 Siddhesh Poyarekar <siddhesh@redhat.com>
1736
7910c2ae
SP
1737 * posix/getconf.c (main): Use size_t for type of I.
1738 * scripts-gen-posix-conf-vars.awk (END): Use size_t for type of
1739 NSPEC.
1740
50cbbaa9
SP
1741 * posix/posix-conf-vars.list (SPEC:XBS5): Add sysconf prefix.
1742 * posix/confstr.c: Define NEED_SPEC_ARRAY to 0.
1743 * posix/posix-envs.def: Likewise.
1744 * sysdeps/posix/sysconf.c: Likewise.
1745 * posix/getconf.c: Define NEED_SPEC_ARRAY to 1.
1746 (specs): Remove array.
1747 * scripts/gen-posix-conf-vars.awk: Support generation of specs
1748 array.
1749
3b566046
SP
1750 * posix/posix-conf-vars.list: Add _POSIX sysconf namespace.
1751 * sysdeps/posix/sysconf.c: Include posix-conf-vars.h.
1752 (__sysconf): Use CONF_IS_* macros.
1753
4a6aca7b
SP
1754 * posix/Makefile (before-compile): Add posix-conf-vars-def.h.
1755 ($(objpfx)posix-conf-vars-def.h): New target.
1756 * posix/posix-conf-vars.list: New file.
1757 * posix/posix-conf-vars.h: New file.
1758 * posix/confstr.c: Include posix-conf-vars.h.
1759 (confstr): Use CONF_IS_* macros.
1760 * posix/posix-envs.def: Include posix-conf-vars.h. Use
1761 CONF_IS_* macros.
1762 * scripts/gen-posix-conf-vars.awk: New file.
1763
7c1395a7
CM
17642014-12-26 Chris Metcalf <cmetcalf@ezchip.com>
1765
0025b4cc
CM
1766 * sysdeps/tile/math_private.h (fegetenv, fesetenv, feupdateenv,
1767 fegetround): Add no-op macros to avoid linknamespace issues.
1768
d8aaf74b
CM
1769 * sysdeps/unix/sysv/linux/clock_settime.c (SYSDEP_SETTIME): Remove
1770 definitions of INTERNAL_VSYSCALL and INLINE_VSYSCALL.
1771
5d24aa60
CM
1772 * sysdeps/unix/sysv/linux/tile/sysdep.h
1773 (HAVE_CLOCK_GETTIME_VSYSCALL): Move definition out of
1774 assembly-specific section to avoid a redefinition warning.
1775
7c1395a7
CM
1776 * sysdeps/tile/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast to
1777 long before casting to pointer to avoid a cast warning.
1778
3c87c616
CM
17792014-12-23 Chris Metcalf <cmetcalf@ezchip.com>
1780
1781 * sysdeps/tile/tilegx/Implies: New file.
1782
f559d8cf
RE
17832014-12-23 Richard Earnshaw <rearnsha@arm.com>
1784
1785 * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.
1786
7d81e8d6
FW
17872014-12-23 Florian Weimer <fweimer@redhat.com>
1788
1789 * iconvdata/run-iconv-test.sh: Actually test iconv modules.
1790
90aa3d09
JM
17912014-12-22 Joseph Myers <joseph@codesourcery.com>
1792
1793 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
1794 not define.
1795 * sysdeps/unix/sysv/linux/utimes.c: Do not include
1796 <kernel-features.h>.
1797 (__utimes) [__NR_utimes]: Make code unconditional.
1798 (__utimes) [!__ASSUME_UTIMES]: Remove conditional code.
1799 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
1800 (__ASSUME_UTIMES): Do not undefine.
1801 * sysdeps/unix/sysv/linux/tile/kernel-features.h
1802 (__ASSUME_UTIMES): Likewise.
1803 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
1804 (__ASSUME_UTIMES): Define for [__LINUX_KERNEL_VERSION >= 0x030e00]
1805 instead of undefining for [__LINUX_KERNEL_VERSION < 0x030e00].
1806 * sysdeps/unix/sysv/linux/hppa/utimes.c: New file.
1807
4c0c0e2a
SE
18082014-12-22 Steve Ellcey <sellcey@imgtec.com>
1809
1810 * sysdeps/mips/memcpy.S: Fix preprocessor indentation.
1811
0dacd7a3
CM
18122014-12-22 Chris Metcalf <cmetcalf@ezchip.com>
1813
b638f96a
CM
1814 [BZ #17747]
1815 * math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
1816 alias to weak alias for j0l, y0l.
1817 * math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
1818 * math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
1819
0dacd7a3
CM
1820 [BZ #17746]
1821 * sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
1822 conversion.
1823
528479c4
SE
18242014-12-22 Steve Ellcey <sellcey@imgtec.com>
1825
1826 * sysdeps/unix/mips/sysdep.h (__mips_isa_rev): Set
1827 to zero if not already defined.
1828
f56f9124
JM
18292014-12-22 Joseph Myers <joseph@codesourcery.com>
1830
1831 [BZ #17724]
1832 * sysdeps/ieee754/k_standard.c: Don't include <float.h>.
1833 (__kernel_standard_f): Remove. Moved to k_standardf.c.
1834 (__kernel_standard_l): Remove. Moved to k_standardl.c with
1835 (char *) casts added.
1836 * sysdeps/ieee754/k_standardf.c: New file.
1837 * sysdeps/ieee754/k_standardl.c: Likewise.
1838 * math/Makefile (libm-support): Remove k_standard.
1839 (libm-calls): Add k_standard.
1840
8622d556
WD
18412014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
1842
1843 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
1844 Optimize to avoid an unnecessary FPCR read.
1845
f3806bdb
WD
18462014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
1847
1848 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv):
1849 Optimize to reduce FPCR/FPSR accesses.
1850
9b47df58
WD
18512014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
1852
1853 * sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
1854 Call libc_fetestexcept_aarch64.
1855
97be3cac
WD
18562014-12-22 Wilco Dijkstra <wdijkstr@arm.com>
1857
1858 * sysdeps/aarch64/fpu/fesetround.c (fesetround):
1859 Call libc_fesetround_aarch64.
1860
935ab817
JM
18612014-12-22 Joseph Myers <joseph@codesourcery.com>
1862
1863 [BZ #17733]
1864 * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
1865 (__bind): Do not define as weak alias.
1866 * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
1867 define.
1868 (__getsockname): Do not define as weak alias.
1869
cc8623f1
WN
18702014-12-22 Will Newton <will.newton@linaro.org>
1871
1872 * manual/install.texi: Document that we require bison 2.7
1873 or above.
1874 * INSTALL: Regenerate.
1875 * configure.ac: Use AC_CHECK_PROG_VER instead of
1876 AC_PATH_PROG when checking for bison and check for
1877 version 2.7 or above.
1878 * configure: Regenerate.
1879
a19ca65a
CM
18802014-12-21 Chris Metcalf <cmetcalf@ezchip.com>
1881
92901170 1882 [BZ #17745]
e969965a
CM
1883 * sysdeps/tile/ffs.c (__ffs): Moved ffsll definition...
1884 * sysdeps/tile/ffsll.c (ffsll): To here.
1885
a19ca65a
CM
1886 * sysdeps/unix/sysv/linux/tile/localplt.data: Removed.
1887
050f7298
L
18882014-12-21 H.J. Lu <hongjiu.lu@intel.com>
1889
1890 * elf/dl-tls.c (__tls_get_addr): Provide the hidden definition
1891 if not defined.
1892 * sysdeps/i386/dl-tls.h (___tls_get_addr): Provide the hidden
1893 definition.
1894 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
1895 hidden ___tls_get_addr.
1896 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
1897 hidden __tls_get_addr.
1898 * sysdeps/generic/localplt.data (__tls_get_addr): Removed.
1899 * sysdeps/unix/sysv/linux/i386/localplt.data (___tls_get_addr):
1900 Likewise.
1901
6df5547e
AS
19022014-12-21 Andreas Schwab <schwab@linux-m68k.org>
1903
1904 * sysdeps/m68k/dl-machine.h (RTLD_START): Remove @PLTPC from
1905 _dl_init call.
1906
7432d613
L
19072014-12-21 H.J. Lu <hongjiu.lu@intel.com>
1908
1909 * sysdeps/i386/dl-machine.h (_dl_start_user): Remove @PLT
1910 from "call _dl_init@PLT".
1911 * sysdeps/x86_64/dl-machine.h (_dl_start_user): Likewise.
7432d613 1912
98fe149e
AK
19132014-12-21 Anders Kaseorg <andersk@mit.edu>
1914
1915 * manual/search.texi: (Array Sort Function): Clarify stable sorting
1916 guarantees.
1917
d12455f5
CM
19182014-12-20 Chris Metcalf <cmetcalf@ezchip.com>
1919
1920 * sysdeps/unix/sysv/linux/tile/localplt.data: New file.
1921
95dee05f
CM
19222014-12-19 Chris Metcalf <cmetcalf@ezchip.com>
1923
92901170 1924 [BZ #17744]
95dee05f
CM
1925 * sysdeps/tile/tilegx/strstr.c (STRSTR): Call __strnlen, not
1926 strnlen.
1927
2ef4b74a
SE
19282014-12-19 Steve Ellcey <sellcey@imgtec.com>
1929
1930 * sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
1931 of multu on MIPSr6.
1932 * sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
1933 * sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
1934 * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
1935 * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
1936 * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
1937
19382014-12-19 Steve Ellcey <sellcey@imgtec.com>
1939
1940 * sysdeps/mips/sys/asm.h (PTR_ADDU): Use addu on mips32r6/mips64r6.
1941 (PTR_ADDIU): Use addiu for mips32r6/mips64r6.
1942 (PTR_SUBU): Use subu for mips32r6/mips64r6.
1943 (PTR_SUBIU): Use subu for mips32r6/mips64r6 (subiu does not exist).
9d1fc928 1944 * sysdeps/mips/machine-gmon.h (PTR_ADDU_STRING) Use addu for
2ef4b74a
SE
1945 mips32r6/mips64r6.
1946 (PTR_SUBU_STRING) Use subu for mips32r6/mips64r6.
1947
3eb38795
OB
19482014-12-19 Ondřej Bílka <neleai@seznam.cz>
1949
1950 * string/strncat.c (STRNCAT): Simplify implementation.
1951
6d4188dd
DM
19522014-12-19 David S. Miller <davem@davemloft.net>
1953
0d4ba8be
DM
1954 * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to
1955 access the quad as both a long double and as a series of 4 words.
1956
6d4188dd
DM
1957 * get-dynamic-info.h (elf_get_dynamic_info): Ignore -Warray-bounds for a
1958 link_map->l_info array access.
1959
4ef91cdc
CM
19602014-12-19 Chris Metcalf <cmetcalf@ezchip.com>
1961
804c54f7
CM
1962 * iconvdata/tst-loading.c (TIMEOUT): Increase timeout 10 sec.
1963
4ef91cdc
CM
1964 * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
1965 * math/atest-exp2.c (TIMEOUT): Likewise.
1966 * math/atest-sincos.c (TIMEOUT): Likewise.
1967
afd176d6
L
19682014-12-19 H.J. Lu <hongjiu.lu@intel.com>
1969
1970 * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
1971 -Wno-error with -fno-builtin-lround.
1972
a4a43a90
TR
19732014-12-19 Torvald Riegel <triegel@redhat.com>
1974
1975 * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: New file.
1976 Contains futex constants and functions moved over from ...
1977 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here. Include
1978 <lowlevellock-futex.h>.
1979 (lll_wait_tid): Use lll_futex_wait instead of assembly code.
1980 (lll_timedwait_tid): Add comments and parentheses around macro
1981 arguments.
1982
76f71081
TR
19832014-12-19 Torvald Riegel <triegel@redhat.com>
1984
1985 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Include
1986 <lowlevellock-futex.h>. Remove FUTEX_* constants defined there.
1987 (__lll_private_flag): Remove.
1988 (lll_futex_wait): Likewise.
1989 (lll_futex_timed_wait): Likewise.
1990 (lll_futex_wake): Likewise.
1991 (lll_futex_requeue): Likewise.
1992 (lll_wait_tid): Use lll_futex_wait instead of assembly code.
1993 (__lll_timedwait_tid): Spell out argument names.
1994 (lll_timedwait_tid): Add comments and parentheses around macro
1995 arguments.
1996 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Make FUTEX_* constants,
1997 LLL_SHARED and LLL_PRIVATE usable from assembly code.
1998
6b814909
TR
19992014-12-19 Torvald Riegel <triegel@redhat.com>
2000
2001 * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Remove file.
2002 * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
2003 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
2004 * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Likewise.
2005 * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
2006 * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
2007 * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
2008 * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
2009 * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
2010 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
2011 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
2012 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
2013 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
2014 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
2015 * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Likewise.
2016 * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
2017 * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
2018 * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
2019 * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
2020
9cd4d4ab
L
20212014-12-19 H.J. Lu <hongjiu.lu@intel.com>
2022
2023 * sysdeps/x86_64/x32/Makefile: New file.
2024
c9c1a2d0
L
20252014-12-19 H.J. Lu <hongjiu.lu@intel.com>
2026
2027 * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace
2028 1L with (mp_limb_t) 1.
2029
af102d95
RM
20302014-12-17 Roland McGrath <roland@hack.frob.com>
2031
dd690454
RM
2032 * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ...
2033 * nptl/libc_pthread_init.c: ... here.
2034 * sysdeps/nptl/fork.c (__fork_handlers): Variable moved ...
2035 * nptl/register-atfork.c: ... here.
2036
74eb826c
RM
2037 * sysdeps/nptl/gai_misc.h (__gai_start_notify_thread):
2038 Use pthread_sigmask rather than INTERNAL_SYSCALL.
2039 Use assert_perror to check its return value.
2040 (__gai_create_helper_thread): Likewise.
2041
c9ce306b
RM
2042 * inet/if_index.c (__if_freenameindex): Add libc_hidden_def.
2043
af102d95
RM
2044 * malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
2045
8ac5a76a
JM
20462014-12-17 Joseph Myers <joseph@codesourcery.com>
2047
ea41469b
JM
2048 [BZ #17725]
2049 * sysdeps/generic/profil-counter.h (profil_counter): Rename to
2050 __profil_counter.
2051 * sysdeps/unix/sysv/linux/hppa/profil-counter.h (profil_counter):
2052 Likewise.
2053 * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
2054 Likewise.
2055 * sysdeps/unix/sysv/linux/ia64/profil-counter.h (profil_counter):
2056 Likewise.
2057 * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h
2058 (profil_counter): Likewise.
2059 * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h
2060 (profil_counter): Likewise.
2061 * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
2062 Likewise.
2063 * sysdeps/unix/sysv/linux/tile/profil-counter.h (profil_counter):
2064 Likewise.
2065 * sysdeps/unix/sysv/linux/x86_64/profil-counter.h
2066 (profil_counter): Likewise.
2067 * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
2068 Likewise.
2069 [!__profil_counter] (profil_counter): Define as weak alias of
2070 __profil_counter.
2071 * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h
2072 (profil_counter): Rename to __profil_counter.
2073 [!__profil_counter] (profil_counter): Define as weak alias of
2074 __profil_counter.
2075 * sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h
2076 (profil_counter): Rename to __profil_counter.
2077 [!__profil_counter] (profil_counter): Define as weak alias of
2078 __profil_counter.
2079 * sysdeps/posix/profil.c: Update comment referring to
2080 profil_counter.
2081 (__profil): Use __profil_counter instead of profil_counter.
2082 * sysdeps/posix/sprofil.c (profil_counter): Rename to
2083 __profil_counter. Use __profil_counter_ushort and
2084 __profil_counter_uint in definitions.
2085 (__sprofil): Use __profil_counter_uint and __profil_counter_ushort
2086 instead of profil_counter_uint and profil_counter_ushort.
2087
8ac5a76a
JM
2088 [BZ #17722]
2089 * inet/inet_mkadr.c (inet_makeaddr): Rename to __inet_makeaddr and
2090 define as weak alias of __inet_makeaddr.
2091 * resolv/inet_addr.c (inet_addr): Rename to __inet_addr and define
2092 as weak alias of __inet_addr.
2093 * resolv/inet_pton.c (inet_pton): Rename to __inet_pton and define
2094 as weak alias of __inet_pton. Use libc_hidden_weak.
2095 * include/arpa/inet.h (__inet_pton): Declare. Use
2096 libc_hidden_proto.
2097 (inet_makeaddr): Don't use libc_hidden_proto.
2098 (__inet_makeaddr): Declare. Use libc_hidden_proto.
2099 * resolv/res_init.c (__res_vinit): Use __inet_pton instead of
2100 inet_pton. Use __inet_makeaddr instead of inet_makeaddr.
2101 * conform/Makefile (test-xfail-POSIX/pthread.h/linknamespace):
2102 Remove variable.
2103 (test-xfail-POSIX/sched.h/linknamespace): Likewise.
2104 (test-xfail-POSIX/time.h/linknamespace): Likewise.
2105
66ce3cb1
SE
21062014-12-17 Steve Ellcey <sellcey@imgtec.com>
2107
2108 * inet/getnetgrent_r.c: Move while loop to be inside if statement.
2109
d22ce01b
SL
21102014-12-17 Stefan Liebler <stli@linux.vnet.ibm.com>
2111
2112 * stdio-common/bug-vfprintf-nargs.c (do_test):
2113 Cast value to intptr_t to avoid format warning
2114 for usage with PRIdPTR printing macro.
2115
eca2772b
SL
21162014-12-17 Stefan Liebler <stli@linux.vnet.ibm.com>
2117
2118 * libio/tst-widetext.c (do_test):
2119 Use format type %td instead of %Zd for ptrdiff_t
2120 in order to avoid format warning.
2121
bdf079da
AS
21222014-12-17 Andreas Schwab <schwab@suse.de>
2123
2124 * nscd/mem.c (gc): Add size_t cast to match printf format.
2125
3eb5d2fc
RM
21262014-12-16 Roland McGrath <roland@hack.frob.com>
2127
2128 * sysdeps/gnu/unwind-resume.c: #include <sysdep.h>.
2129 (init): Apply PTR_MANGLE to pointers before storing them.
2130 (_Unwind_Resume, __gcc_personality_v0): Apply PTR_DEMANGLE to pointers
2131 before using them.
2132
d003ada2
JM
21332014-12-16 Joseph Myers <joseph@codesourcery.com>
2134
380292ba
JM
2135 [BZ #17719]
2136 * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and
2137 define as weak alias of __memrchr.
2138 (__memrchr): Do not define as strong alias of memrchr.
2139 * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace):
2140 Remove variable.
2141 (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
2142 (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
2143 (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
2144
9a44d530
JM
2145 [BZ #17717]
2146 * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and
2147 define as weak alias of __if_nametoindex. Use libc_hidden_weak.
2148 (if_indextoname): Rename to __if_indextoname and define as weak
2149 alias of __if_indextoname. Use libc_hidden_weak.
2150 (if_freenameindex): Rename to __if_freenameindex and define as
2151 weak alias of __if_freenameindex.
2152 (if_nameindex): Rename to __if_nameindex and define as weak alias
2153 of __if_nameindex.
2154 * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to
2155 __if_nametoindex and define as weak alias of __if_nametoindex.
2156 Use libc_hidden_weak.
2157 (if_freenameindex): Rename to __if_freenameindex and define as
2158 weak alias of __if_freenameindex.
2159 (if_nameindex): Rename to __if_nameindex and define as weak alias
2160 of __if_nameindex.
2161 (if_indextoname): Rename to __if_indextoname and define as weak
2162 alias of __if_indextoname. Use libc_hidden_weak.
2163 * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to
2164 __if_nametoindex and define as weak alias of __if_nametoindex.
2165 Use libc_hidden_weak.
2166 (if_freenameindex): Rename to __if_freenameindex and define as
2167 weak alias of __if_freenameindex. Use libc_hidden_weak.
2168 (if_nameindex_netlink): Use __if_freenameindex instead of
2169 if_freenameindex.
2170 (if_nameindex): Rename to __if_nameindex and define as weak alias
2171 of __if_nameindex. Use libc_hidden_weak.
2172 (if_indextoname): Rename to __if_indextoname and define as weak
2173 alias of __if_indextoname. Use libc_hidden_weak.
2174 * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use
2175 libc_hidden_proto.
2176 [!_ISOMAC] (__if_freenameindex): Likewise.
2177 * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of
2178 if_nametoindex.
2179 * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove
2180 variable.
2181 (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
2182 (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
2183 (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
2184 (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
2185 (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
2186 (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
2187 (test-xfail-UNIX98/time.h/linknamespace): Likewise.
2188
d003ada2
JM
2189 * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace):
2190 Remove variable.
2191 (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
2192 (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
2193
a0d424ef
SP
21942014-12-16 Siddhesh Poyarekar <siddhesh@redhat.com>
2195
0cd85520
SP
2196 * resolv/res_send.c (__libc_res_nsend): Disable warning 'array
2197 subscript above bounds'
2198
a0d424ef
SP
2199 * resolv/res_send.c (__libc_res_nsend): Fix check for nsmap
2200 bounds.
2201
0e426475
AS
22022014-12-16 Arjun Shankar <arjun.is@lostca.se>
2203
8b460906
AS
2204 * libio/tst-fopenloc.c: Use test-skeleton.c.
2205
fa13e15b
AS
2206 * stdlib/tst-bsearch.c: Use test-skeleton.c.
2207 (entry): Rename to ITEM.
2208 (do_test, comp): Adjust.
2209
0e426475
AS
2210 * stdio-common/tst-fseek.c: Use test-skeleton.c.
2211
4f646bce
TR
22122014-12-16 Torvald Riegel <triegel@redhat.com>
2213
2214 * string/tester.c: Include <libc-internal.h>.
2215 (test_memset): Ignore -Wmemset-transposed-args.
2216
a07c4427
TR
22172014-12-16 Torvald Riegel <triegel@redhat.com>
2218
2219 * misc/tst-mntent2.c (do_test): Fix warning.
2220
1469f466
TR
22212014-12-16 Torvald Riegel <triegel@redhat.com>
2222
2223 * elf/tst-unique4lib.cc(a): Mark as used.
2224
11e3417a
FW
22252014-12-16 Florian Weimer <fweimer@redhat.com>
2226
2227 [BZ #17630]
2228 * resolv/nss_dns/dns-network.c (getanswer_r): Iterate over alias
2229 names.
2230
ae61fc7b
AM
22312014-12-16 Allan McRae <allan@archlinux.org>
2232
2233 * stdio-common/Makefile (tests): Re-add bug26.
2234
363a9899
OB
22352014-12-15 Ondřej Bílka <neleai@seznam.cz>
2236
2237 [BZ #17657]
2238 * locale/programs/ld-ctype.c (find_translit2, read_widestring): Return
2239 static array.
2240
d52c62df
TR
22412014-12-15 Bernard Ogden <bernie.ogden@linaro.org>
2242
2243 * nptl/lowlevellock.c (__lll_lock_wait_private): Add comments.
2244 (__lll_lock_wait): Likewise.
2245 (__lll_timedlock_wait): Likewise.
2246 (__lll_timedwait_tid): Likewise.
2247 * nptl/lowlevelrobustlock.c (__lll_robust_lock_wait): Likewise.
2248 (__lll_robust_timedlock_wait): Likewise.
2249 * sysdeps/nptl/lowlevellock.h (lll_trylock): Likewise.
2250 (lll_cond_trylock): Likewise.
2251 (__lll_lock): Likewise.
2252 (__lll_robust_lock): Likewise.
2253 (__lll_cond_lock): Likewise.
2254 (lll_robust_cond_lock): Likewise.
2255 (__lll_timedlock): Likewise.
2256 (__lll_robust_timedlock): Likewise.
2257 (__lll_unlock): Likewise.
2258 (__lll_robust_unlock): Likewise.
2259 (lll_wait_tid): Likewise.
2260 (lll_timedwait_tid): Likewise.
2261
045a6bcd
TR
22622014-12-15 Torvald Riegel <triegel@redhat.com>
2263
2264 * nptl/tst-sem4.c (do_test): Start with a fresh semaphore state.
2265
7f786dc1
TR
22662014-12-15 Torvald Riegel <triegel@redhat.com>
2267
2268 * nptl/tst-mutex5.c (do_test): Do not skip tests if elision is enabled.
2269
e7e21cba
AZ
22702014-12-15 Adhemerval Zanella <Azanella@linux.vnet.ibm.com>
2271
2272 * stdio-common/test-vfprintf.c: Include <libc-internal.h>.
2273 * stdio-common/tst-sprintf.c: Likewise.
2274
bc89c0fc
TR
22752014-12-15 Torvald Riegel <triegel@redhat.com>
2276
2277 * sysdeps/unix/sysv/linux/s390/pthread_once.c: Remove file.
2278
a5357b7c
JL
22792014-12-15 Jeff Law <law@redhat.com>
2280
2281 [BZ #16617]
2282 * stdio-common/vfprintf.c (vfprintf): Allocate large specs array
2283 on the heap. (CVE-2012-3406)
2284 * stdio-common/bug23-2.c, stdio-common/bug23-3.c: New file.
2285 * stdio-common/bug23-4.c: New file. Test case by Joseph Myers.
2286 * stdio-common/Makefile (tests): Add bug23-2, bug23-3, bug23-4.
2287
3a12c70f
WN
22882014-12-15 Will Newton <will.newton@linaro.org>
2289
2290 * manual/install.texi: Bump required version of texinfo
2291 to 4.7 from 4.5.
2292 * INSTALL: Regenerated.
2293 * configure.ac: Check for makeinfo version 4.7 and above.
2294 * configure: Regenerated.
2295
e4f639e4
RM
22962014-12-12 Roland McGrath <roland@hack.frob.com>
2297
2298 * sysdeps/posix/shm-directory.h (SHM_GET_NAME): Take new argument
2299 PREFIX, string constant to insert between directory and name.
2300 * sysdeps/posix/shm_open.c: Update caller.
2301 * sysdeps/posix/shm_unlink.c: Likewise.
2302 * nptl/semaphoreP.h (struct mountpoint_info): Type removed.
2303 (__where_is_shmfs, mountpoint, __namedsem_once): Declarations removed.
2304 (SEM_SHM_PREFIX): New macro.
2305 * sysdeps/posix/Makefile (librt-routines): Add shm-directory only if
2306 [$(have-thread-library) = no].
2307 * nptl/Makefile (libpthread-routines): Add shm-directory.
2308 * nptl/Versions (GLIBC_PRIVATE): Add __shm_directory.
2309 * sysdeps/nptl/shm-directory.h: New file.
2310 * sysdeps/posix/shm-directory.c
2311 [IS_IN (libpthread)] (__shm_directory): Add hidden_def.
2312 * sysdeps/unix/sysv/linux/shm-directory.c: Likewise.
2313 * nptl/sem_open.c (check_add_mapping): Use munmap function rather than
2314 INTERNAL_SYSCALL.
2315 (__where_is_shmfs): Function removed.
2316 (mountpoint, defaultmount, defaultdir, __namedsem_once):
2317 Variables removed.
2318 (sem_open): Use __libc_close function rather than INTERNAL_SYSCALL.
2319 Use SHM_GET_NAME.
2320 * nptl/sem_unlink.c: Prototypify. Use SHM_GET_NAME.
2321
2322 * sysdeps/nptl/bits/libc-lockP.h [IS_IN (libpthread)]
2323 (PTFAVAIL, __libc_ptf_call, __libc_ptf_call_always): Define as
2324 unconditional for use inside libpthread.
2325 [IS_IN (libpthread)]: Include <nptl/pthreadP.h>.
2326
439c43f6
RM
23272014-12-12 Roland McGrath <roland@hack.frob.com>
2328
c76d1ff5
RM
2329 * nptl/pthread_getaffinity.c: New file.
2330 * nptl/pthread_setaffinity.c: New file.
2331 * nptl/pthread_getname.c: New file.
2332 * nptl/pthread_setname.c: New file.
2333
439c43f6
RM
2334 * nptl/pthread_create.c (START_THREAD_DEFN)
2335 [! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
2336
48e435cd
SL
23372014-12-12 Stefan Liebler <stli@linux.vnet.ibm.com>
2338 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2339
2340 * resolv/res_send.c (send_vc): Disable warning resplen may
2341 be used uninitialized.
2342
9d9c0019
SL
23432014-12-12 Stefan Liebler <stli@linux.vnet.ibm.com>
2344
2345 * nptl/tst-mutex6.c
2346 (ATTR_NULL): New define checks ATTR against NULL.
2347 (do_test): Use !ATTR_NULL instead of ATTR != NULL.
2348 * nptl/tst-mutexpp6.c (ATTR_NULL): New define.
2349
9173840b
JL
23502014-12-11 James Lemke <jwlemke@codesourcery.com>
2351
2352 [BZ #17581]
2353 * malloc/hooks.c
2354 (mem2mem_check): Revert my previous change.
2355 (malloc_check_get_size): Revert my previous change.
2356 (mem2chunk_check): Revert my previous change.
2357
78e21c5d
RM
23582014-12-11 Roland McGrath <roland@hack.frob.com>
2359
2360 * sysdeps/posix/shm-directory.c: New file.
2361 * sysdeps/posix/shm-directory.h: New file.
2362 * sysdeps/posix/Makefile [($(subdir) = rt] (librt-routines): Add it.
2363 * sysdeps/posix/shm_open.c: Use SHM_GET_NAME.
2364 Use O_NOFOLLOW and O_CLOEXEC if available. Transmute EISDIR to EINVAL.
2365 * sysdeps/posix/shm_unlink.c: Use SHM_GET_NAME.
2366 Transmute EPERM to EACCES.
2367 * sysdeps/unix/sysv/linux/shm-directory.c: New file, most code taken
2368 from ...
2369 * sysdeps/unix/sysv/linux/shm_open.c: ... here. File removed.
2370 * sysdeps/unix/sysv/linux/shm_unlink.c: File removed.
2371
f82c43af
KK
23722014-12-11 Kaz Kojima <kkojima@rr.iij4u.or.jp>
2373
2374 * sysdeps/sh/jmpbuf_unwind.h (_jmpbuf_sp): Declare SP as void
2375 pointer and cast to uintptr_t.
2376 * sysdeps/sh/nptl/tls.h (TLS_INIT_TP): Use NULL instead of 0.
2377 * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_timed_wait):
2378 Add cast to avoid warning.
2379 * sysdeps/unix/sysv/linux/sh/register-dump.h: Use 0 instead of NULL.
2380
fc00cf7b
JM
23812014-12-11 Joseph Myers <joseph@codesourcery.com>
2382
2383 * nptl/semaphore.h: Move to ...
2384 * sysdeps/pthread/semaphore.h: ... here.
2385 * Makefile (installed-headers): Change nptl/semaphore.h to
2386 sysdeps/pthread/semaphore.h.
2387
1c4053db
RM
23882014-12-11 Roland McGrath <roland@hack.frob.com>
2389
73b0c1a1
RM
2390 * misc/tst-error1.c (do_test): Ignore -Wformat-security for
2391 generated error format strings.
2392
1c4053db
RM
2393 * stdio-common/tstdiomisc.c (t2): Ignore -Wformat and
2394 -Wformat-extra-args warnings for scanf formats.
2395 * stdio-common/scanf4.c (main): Ignore -Wformat-zero-length around
2396 test of zero-length format (duh).
2397 * stdio-common/scanf7.c (main): Ignore -Wformat warnings for
2398 corner-case scanf format test.
2399 * stdio-common/test-vfprintf.c (do_test): Ignore -Wformat-security for
2400 generated fprintf format string.
2401 * stdio-common/tst-sprintf.c (do_test): Ignore -Wformat warnings for
2402 corner-case sprintf format tests.
2403 * stdio-common/tst-printf.c: Ignore -Wformat throughout.
2404 * stdio-common/tst-printfsz.c (main): Ignore -Wformat and
2405 -Wformat-extra-args warnings throughout.
2406 * stdio-common/Makefile (CFLAGS-tstdiomisc.c): Variable removed.
2407 (CFLAGS-scanf4.c): Likewise.
2408 (CFLAGS-scanf7.c): Likewise.
2409 (CFLAGS-tst-sprintf.c): Likewise.
2410 (CFLAGS-tst-printf.c): Likewise.
2411 (CFLAGS-tst-printfsz.c): Likewise.
2412
47d51f4f
JM
24132014-12-11 Joseph Myers <joseph@codesourcery.com>
2414
a1edbf3c
JM
2415 * include/cpio.h: New file.
2416 * include/fmtmsg.h: Likewise.
2417
47d51f4f
JM
2418 * tst-mbswcs1.c (show): Use %zu format instead of %Zd. Cast
2419 corresponding format argument to size_t.
2420 * tst-mbswcs2.c (show): Likewise. Use %td format for ptrdiff_t
2421 arguments.
2422 * tst-mbswcs3.c (show): Use %zu format instead of %Zd. Cast
2423 corresponding format argument to size_t.
2424 * tst-mbswcs4.c (show): Likewise. Use %td format for ptrdiff_t
2425 arguments.
2426 * tst-mbswcs5.c (show): Use %zu format instead of %Zd. Cast
2427 corresponding format argument to size_t.
2428 * tst-trans.c (do_test): Use %lc format for wint_t arguments.
2429 * Makefile (CFLAGS-tst-mbswcs1.c): Remove variable.
2430 (CFLAGS-tst-mbswcs2.c): Likewise.
2431 (CFLAGS-tst-mbswcs3.c): Likewise.
2432 (CFLAGS-tst-mbswcs4.c): Likewise.
2433 (CFLAGS-tst-mbswcs5.c): Likewise.
2434 (CFLAGS-tst-trans.c): Likewise
2435
e9813cfb
RM
24362014-12-11 Roland McGrath <roland@hack.frob.com>
2437
2438 * posix/regexbug1.c (main): Use "%s" format with regerror results,
2439 rather than assuming they won't contain any '%'s.
2440
f627ca82
CM
24412014-12-11 Chris Metcalf <cmetcalf@ezchip.com>
2442
2443 * sysdeps/tile/tilegx/memset.c (__memcpy): Add
2444 inhibit_loop_to_libcall to avoid recursive calls.
2445 * sysdeps/tile/tilegx/memcpy.c (__memcpy): Likewise.
2446 * sysdeps/tile/tilepro/memcpy.c (__memcpy): Likewise.
2447
7f296942
AZ
24482014-12-11 Adhemerval Zanella <Azanella@linux.vnet.ibm.com>
2449
2450 * include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
2451 prototype.
2452
d0276e18
SE
24532014-12-11 Steve Ellcey <sellcey@imgtec.com>
2454
2455 * sysdeps/mips/dl-trampoline.c: Modify switch expression to have
2456 integer value instead of boolean.
2457
fc56e970
SE
24582014-12-11 Steve Ellcey <sellcey@imgtec.com>
2459
2460 * malloc/malloc.c: Fix powerof2 check.
2461
40e53917
SL
24622014-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
2463
2464 * locale/programs/locfile.h (maybe_swap_uint32):
2465 Remove inline and add unused attribute.
2466
1ea166df
SL
24672014-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
2468
9d9c0019 2469 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
1ea166df
SL
2470 Truncating assembler expression to a .long expression.
2471
acf869f4
AS
24722014-12-11 Andreas Schwab <schwab@suse.de>
2473
2474 * elf/rtld.c (struct map_args): Constify str member.
2475 (do_preload): Constify fname argument.
2476
9d969099
AZ
24772014-12-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2478
2479 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Remove overflow warnings for
2480 constants definition.
2481
da5bcaa4
AS
24822014-12-11 Andreas Schwab <schwab@suse.de>
2483
b0a3c164
AS
2484 [BZ #16657]
2485 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Use
2486 FORCE_ELISION instead of DO_ELISION.
2487 * sysdeps/unix/sysv/linux/x86/force-elision.h (DO_ELISION):
2488 Remove.
2489 * sysdeps/unix/sysv/linux/s390/force-elision.h (DO_ELISION):
2490 Likewise.
2491
da5bcaa4
AS
2492 * iconvdata/gconv-modules: Remove duplicate entry.
2493
6d248857
WN
24942014-12-11 Will Newton <will.newton@linaro.org>
2495
2496 Merge gettext 0.19.3 into intl/.
2497
2498 This involves a number of cosmetic changes to comments
2499 and ANSI function definitions and prototypes throughout
2500 all the files. The gettext copyright header is used but
2501 with the date ranges taken from the glibc copy.
2502
2503 * NEWS: Add gettext merge to 2.21.
2504 * intl/bindtextdom.c: Switch to gettext copyright.
2505 Use ANSI definitions and prototypes.
2506 Use gl_* locking primitives rather than __libc_* ones.
2507 Use __builtin_expect rather than __glibc_likely/unlikely.
2508 * intl/dcgettext.c: Switch to gettext copyright.
2509 Use ANSI definitions and prototypes.
2510 * intl/dcigettext.c: Switch to gettext copyright.
2511 Use ANSI definitions and prototypes.
2512 (INTDIV0_RAISES_SIGFPE): New define.
2513 Use gl_* locking primitives rather than __libc_* ones.
2514 Include eval-plural.h instead of plural-eval.c.
2515 Use __builtin_expect rather than __glibc_likely/unlikely.
2516 * intl/dcngettext.c: Switch to gettext copyright.
2517 Use ANSI definitions and prototypes.
2518 * intl/dgettext.c: Likewise.
2519 * intl/dngettext.c: Likewise.
2520 * intl/plural-eval.c: Renamed to...
2521 * intl/eval-plural.h: ...this.
2522 * intl/explodename.c: Switch to gettext copyright.
2523 Use ANSI definitions and prototypes.
2524 (_nl_explode_name): Use strchr instead of __rawmemchr.
2525 * intl/finddomain.c: Switch to gettext copyright.
2526 Use ANSI definitions and prototypes.
2527 Use gl_* locking primitives rather than __libc_* ones.
2528 (_nl_find_domain): Use malloc rather than alloca for
2529 allocation of temporary locale name.
2530 * intl/gettext.c: Switch to gettext copyright.
2531 Use ANSI definitions and prototypes.
2532 * intl/gettextP.h: Switch to gettext copyright.
2533 Use ANSI definitions and prototypes.
2534 Use gl_* locking primitives rather than __libc_* ones.
2535 * intl/gmo.h: Switch to gettext copyright.
2536 (struct sysdep_string): Move struct segment_pair outside of
2537 struct definition.
2538 * intl/hash-string.c: Use ANSI definitions and prototypes.
2539 * intl/hash-string.h: Switch to gettext copyright.
2540 Use ANSI definitions and prototypes.
2541 * intl/l10nflist.c: Switch to gettext copyright.
2542 Use ANSI definitions and prototypes.
2543 (_nl_normalize_codeset): Avoid integer overflow.
2544 * intl/loadinfo.h: Switch to gettext copyright.
2545 Use ANSI definitions and prototypes.
2546 (LIBINTL_DLL_EXPORTED): New define.
2547 (PATH_SEPARATOR): New define.
2548 * intl/loadmsgcat.c: Switch to gettext copyright.
2549 * intl/localealias.c: Switch to gettext copyright.
2550 Use ANSI definitions and prototypes.
2551 (_nl_expand_alias): Use PATH_SEPARATOR.
2552 * intl/ngettext.c: Switch to gettext copyright.
2553 Use ANSI definitions and prototypes.
2554 * intl/plural-exp.c: Likewise.
2555 * intl/plural-exp.h: Switch to gettext copyright.
2556 Use ANSI definitions and prototypes.
2557 (struct expression): Move definition of enum operator outside
2558 of struct definition.
2559 * intl/plural.c: Regenerate.
2560 * intl/plural.y: Switch to gettext copyright.
2561 Use ANSI definitions and prototypes.
2562 Port to bison 3.0.
2563 * intl/textdomain.c: Switch to gettext copyright.
2564 Use ANSI definitions and prototypes.
2565 Use gl_* locking primitives rather than __libc_* ones.
2566
48c43298
SE
25672014-12-10 Steve Ellcey <sellcey@imgtec.com>
2568
2569 * debug/warning-nop.c: Add used atrribute.
2570
2b89bce9
JM
25712014-12-10 Joseph Myers <joseph@codesourcery.com>
2572
c153ac9f
JM
2573 * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: New file.
2574
2b89bce9
JM
2575 * sysdeps/unix/sysv/linux/mips/mips64/Makefile
2576 [$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
2577 [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
2578
2cfbdb9a
JM
25792014-12-10 Joseph Myers <joseph@codesourcery.com>
2580 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2581
2582 [BZ #17634]
2583 * wcsmbs/wcschr.c [!WCSCHR] (wcschr): Define as __wcschr.
2584 Undefine after defining function. Define as weak alias of
2585 __wcschr. Use libc_hidden_weak.
2586 * include/wchar.h (__wcschr): Declare. Use libc_hidden_proto.
2587 * sysdeps/i386/i686/multiarch/wcschr-c.c [IS_IN (libc) && SHARED]
2588 (libc_hidden_def): Also define __GI___wcschr alias.
2589 * sysdeps/i386/i686/multiarch/wcschr.S (wcschr): Rename to
2590 __wcschr and define as weak alias of __wcschr.
2591 * sysdeps/powerpc/power6/wcschr.c [!WCSCHR] (WCSCHR): Define as
2592 __wcschr.
2593 [!WCSCHR] (DEFAULT_WCSCHR): Define.
2594 [DEFAULT_WCSCHR] (__wcschr): Use libc_hidden_def.
2595 [DEFAULT_WCSCHR] (wcschr): Define as weak alias of __wcschr. Use
2596 libc_hidden_weak. Do not use libc_hidden_def.
2597 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c
2598 [IS_IN (libc) && SHARED] (libc_hidden_def): Also define
2599 __GI___wcschr alias.
2600 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c
2601 [IS_IN (libc)] (wcschr): Define as macro expanding to
2602 __redirect_wcschr.
2603 [IS_IN (libc)] (__wcschr_ppc): Use __redirect_wcschr in typeof.
2604 [IS_IN (libc)] (__wcschr_power6): Likewise.
2605 [IS_IN (libc)] (__wcschr_power7): Likewise.
2606 [IS_IN (libc)] (__libc_wcschr): New. Define with libc_ifunc
2607 instead of wcschr.
2608 [IS_IN (libc)] (wcschr): Undefine and define as weak alias of
2609 __libc_wcschr.
2610 [!IS_IN (libc)] (libc_hidden_def): Do not undefine and redefine.
2611 * sysdeps/powerpc/powerpc64/multiarch/wcschr.c (wcschr): Rename to
2612 __wcschr and define as weak alias of __wcschr. Use
2613 libc_hidden_builtin_def.
2614 * sysdeps/x86_64/wcschr.S (wcschr): Rename to __wcschr and define
2615 as weak alias of __wcschr. Use libc_hidden_weak.
2616 * time/alt_digit.c (_nl_get_walt_digit): Use __wcschr instead of
2617 wcschr.
2618 * time/era.c (_nl_init_era_entries): Likewise.
2619 * conform/Makefile (test-xfail-ISO/time.h/linknamespace): Remove
2620 variable.
2621 (test-xfail-XPG3/time.h/linknamespace): Likewise.
2622 (test-xfail-XPG4/time.h/linknamespace): Likewise.
2623
1b8bf351
JM
26242014-12-10 Joseph Myers <joseph@codesourcery.com>
2625
2626 * libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
2627 format for long int variable.
2628
f5f46d51
AK
26292014-12-10 Anders Kaseorg <andersk@MIT.EDU>
2630
2631 [BZ #10672]
07008f7d 2632 * manual/search.texi: (Array Sort Function): Remove claim how to make
f5f46d51
AK
2633 qsort stable.
2634
217a74a8
AS
26352014-12-10 Andreas Schwab <schwab@suse.de>
2636
2637 [BZ #12847]
2638 * sysdeps/nptl/fork.c (fresetlockfiles): Skip files with
2639 user-controlled locks.
2640
aa76a5c7
RE
26412014-12-10 Richard Earnshaw <rearnsha@arm.com>
2642
2643 * sysdeps/aarch64/strchrnul.S (vrepmask): Use a call-clobbered
2644 register.
2645
2084e7ca
JM
26462014-12-10 Joseph Myers <joseph@codesourcery.com>
2647
a4ecc9eb
JM
2648 * configure.ac (--disable-werror): New configure option.
2649 (enable_werror): New AC_SUBST.
2650 * configure: Regenerated.
2651 * config.make.in (enable-werror): New variable.
2652 * Makeconfig [$(enable-werror) = yes] (+gccwarn): Add -Werror
2653 -Wno-error=undef.
2654 (+gccwarn-c): Do not use -Werror=implicit-function-declaration.
2655 * manual/install.texi (Configuring and compiling): Document
2656 --disable-werror.
2657 * INSTALL: Regenerated.
2658 * debug/Makefile (CFLAGS-tst-chk1.c): Add -Wno-error.
2659 (CFLAGS-tst-chk2.c): Likewise.
2660 (CFLAGS-tst-chk3.c): Likewise.
2661 (CFLAGS-tst-chk4.cc): Likewise.
2662 (CFLAGS-tst-chk5.cc): Likewise.
2663 (CFLAGS-tst-chk6.cc): Likewise.
2664 (CFLAGS-tst-lfschk1.c): Likewise.
2665 (CFLAGS-tst-lfschk2.c): Likewise.
2666 (CFLAGS-tst-lfschk3.c): Likewise.
2667 (CFLAGS-tst-lfschk4.cc): Likewise.
2668 (CFLAGS-tst-lfschk5.cc): Likewise.
2669 (CFLAGS-tst-lfschk6.cc): Likewise.
2670
0f88636c
JM
2671 * stdio-common/tst-printfsz.c: Include <libc-internal.h>.
2672 (main): Disable -Wdeprecated-declarations around calls to
2673 register_printf_function.
2674
c81e9deb
JM
2675 * stdio-common/tst-unlockedio.c: Include <libc-internal.h>.
2676 (do_test): Disable -Wdiv-by-zero around some calls to
2677 fwrite_unlocked and fread_unlocked.
2678
2084e7ca
JM
2679 * include/libc-internal.h (DIAG_PUSH_NEEDS_COMMENT): New macro.
2680 (DIAG_POP_NEEDS_COMMENT): Likewise.
2681 (_DIAG_STR1): Likewise.
2682 (_DIAG_STR): Likewise.
2683 (DIAG_IGNORE_NEEDS_COMMENT): Likewise.
2684 * stdio-common/bug21.c: Include <libc-internal.h>.
2685 (do_test): Disable -Wformat around call to sscanf.
2686 * stdio-common/scanf14.c: Include <libc-internal.h>.
2687 (main): Disable -Wformat around some calls to scanf functions.
2688
df7ecc6b
TR
26892014-12-09 Torvald Riegel <triegel@redhat.com>
2690
2691 * sysdeps/unix/sysv/linux/sh/pthread_once.S: Remove file.
2692
2aa3862e
AZ
26932014-12-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2694
2695 * libio/tst-ftell-active-handler.c (do_ftell_test): Fix wide-character
2696 stack variable alignment.
2697
c5c2b7c3
JM
26982014-12-06 Joseph Myers <joseph@codesourcery.com>
2699
2700 [BZ #17682]
2701 * resource/Versions (libc): Add __getrlimit at GLIBC_PRIVATE.
2702 * resource/getrlimit.c (__getrlimit): Use libc_hidden_def.
2703 * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
2704 * include/sys/resource.h (__getrlimit): Use libc_hidden_proto.
2705 * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Use
2706 __getrlimit instead of getrlimit.
2707 * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Use
2708 __gettimeofday instead of gettimeofday.
2709 * nptl/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
2710 Likewise.
2711 * nptl/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
2712 Likewise.
2713 * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
2714 * conform/Makefile (test-xfail-POSIX2008/aio.h/linknamespace):
2715 Remove variable.
2716 (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
2717 (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
2718
9752c3cd
AZ
27192014-12-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2720
2721 * libio/tst-ftell-active-handler.c (do_ftell_test): Fix buffer overrun
2722 for wide-character tests.
2723
4bee4cd9
RM
27242014-12-04 Roland McGrath <roland@hack.frob.com>
2725
2726 * io/openat64.c: #include <libc-internal.h>
2727 (__openat64): Prototypify. Use ignore_value on MODE.
2728 * io/openat.c: Likewise.
2729 * misc/reboot.c: #include <libc-internal.h>
2730 (reboot): Prototypify. Use ignore_value on HOWTO.
2731 * misc/ptrace.c: #include <libc-internal.h>
2732 (ptrace): Prototypify. Use ignore_value for va_arg'd parameters.
2733
84dbedb6
JM
27342014-12-04 Joseph Myers <joseph@codesourcery.com>
2735
2736 * conform/list-header-symbols.pl (%extra_syms): Add h_errno for
2737 XPG4, UNIX98 and XOPEN2K.
2738 * conform/Makefile (test-xfail-XOPEN2K/grp.h/linknamespace):
2739 Remove variable.
2740 (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
2741
b7a3e1c4 27422014-12-04 Siddhesh Poyarekar <siddhesh@redhat.com>
be349d70 2743
af50dfc1 2744 * libio/fileops.c: Use ISO C style for function definitions.
24b97882
SP
2745 * libio/iofopen.c: Likewise.
2746 * libio/wfileops.c: Likewise.
2747
fe8b4d98
SP
2748 [BZ #17653]
2749 * libio/fileops.c (_IO_new_file_underflow): Unset cached
2750 offset on EOF.
2751 * libio/wfileops.c (_IO_wfile_underflow): Likewise.
2752 * libio/tst-ftell-active-handler.c (fgets_func_t): New type.
2753 (fgets_func): Function pointer to fgets and fgetws.
2754 (do_ftell_test): Add test to verify ftell value after read
2755 EOF.
2756 (do_test): Set fgets_func.
2757
61b4f792
SP
2758 * libio/tst-ftell-active-handler.c (do_ftruncate_test): Add
2759 O_TRUNC flag for w and w+ modes.
2760 (do_rewind_test): Likewise.
2761 (do_ftell_test): Likewise.
2762 (do_write_test): Likewise.
2763
be349d70
SP
2764 [BZ #17647]
2765 * libio/fileops.c (do_ftell): Seek only when there are
2766 unflushed writes.
2767 * libio/wfileops.c (do_ftell_wide): Likewise.
2768 * libio/tst-ftell-active-handler.c (do_ftruncate_test): New
2769 test case.
2770 (do_one_test): Call it.
2771
e3d6dba5
JM
27722014-12-03 Joseph Myers <joseph@codesourcery.com>
2773
2774 * conform/list-header-symbols.pl (%extra_syms): Add getdate_err
2775 for XPG4, UNIX98, XOPEN2K and XOPEN2K8.
2776 * conform/Makefile (test-xfail-XOPEN2K/pthread.h/linknamespace):
2777 Remove variable.
2778 (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
2779 (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
2780 (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
2781
7f994279
JM
27822014-12-02 Joseph Myers <joseph@codesourcery.com>
2783
28a91e8f
JM
2784 * conform/Makefile (test-xfail-XOPEN2K/aio.h/linknamespace):
2785 Remove variable.
2786 (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
2787
7f994279
JM
2788 [BZ #17668]
2789 * inet/ifaddrs.c (getifaddrs): Rename to __getifaddrs and define
2790 as weak alias of __getifaddrs. Use libc_hidden_weak.
2791 (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2792 __freeifaddrs. Use libc_hidden_weak.
2793 * sysdeps/gnu/ifaddrs.c (getifaddrs): Rename to __getifaddrs and
2794 define as weak alias of __getifaddrs. Use libc_hidden_weak.
2795 (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2796 __freeifaddrs. Use libc_hidden_weak.
2797 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Rename to
2798 __getifaddrs and define as weak alias of __getifaddrs. Use
2799 libc_hidden_weak.
2800 (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
2801 __freeifaddrs. Use libc_hidden_weak.
2802 * conform/Makefile (test-xfail-XOPEN2K/net/if.h/linknamespace):
2803 Remove variable.
2804 (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
2805 (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
2806
bbe4c142
PJ
28072014-12-02 Petar Jovanovic <petar.jovanovic@rt-rk.com>
2808
2809 [BZ #17601]
2810 * sysdeps/mips/start.S (__start): Use indirect jump to call
2811 __libc_start_main.
2812
66cadc05
JM
28132014-12-02 Joseph Myers <joseph@codesourcery.com>
2814
909e16d9
JM
2815 * nptl/tst-stack4.c (dso_process): Use int not uintptr_t for t.
2816
4e0b9016
JM
2817 * nptl/tst-mutex1.c: Include <stdbool.h>.
2818 [!ATTR] (ATTR_NULL): New macro.
2819 (do_test): Test !ATTR_NULL instead of ATTR != NULL.
2820 * nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
2821 * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
2822
b1aff6a4
JM
2823 * posix/tst-getopt_long1.c (do_test): Cast elements of argv array
2824 to char *.
2825
266865c0
JM
2826 [BZ #17665]
2827 * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
2828 Change conditional to [__USE_MISC].
2829
84e5e756
JM
2830 [BZ #17664]
2831 * misc/mntent_r.c (__getmntent_r): Use __fgets_unlocked instead of
2832 fgets_unlocked.
2833 * resolv/res_hconf.c [IS_IN (libc)] (fgets_unlocked): Define to
2834 __fgets_unlocked.
2835 * resolv/res_init.c (__res_vinit): Use __fgets_unlocked instead of
2836 fgets_unlocked.
2837 * conform/Makefile (test-xfail-XPG4/sys/statvfs.h/linknamespace):
2838 Remove variable.
2839 (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
2840 (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
2841 (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
2842 (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
2843 (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
2844 (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
2845 (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
2846 (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
2847 (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
2848
66cadc05
JM
2849 * elf/tst-unique4lib.cc (b): Mark with __attribute__ ((used)).
2850
2e8a2de2 28512014-12-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
0f0a1c82
AZ
2852
2853 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2854 Remove strpbrk objects.
2855 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
2856 (__libc_ifunc_impl_list): Remove strpbrk implementation.
2857 * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: Remove file.
2858 * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Remove file.
2859 * sysdeps/powerpc/powerpc64/power7/strpbrk.S: Remove file.
2860 * sysdeps/powerpc/powerpc64/strpbrk.S: New file.
2861
bb2542e0
AZ
2862 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2863 Remove strcspn objects.
2864 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
2865 (__libc_ifunc_impl_list): Remove strcspn implementation.
2866 * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: Remove file.
2867 * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Remove file.
2868 * sysdeps/powerpc/powerpc64/power7/strcspn.S: Remove file.
2869 * sysdeps/powerpc/powerpc64/strcspn.S: New file.
2e8a2de2
AZ
2870
2871 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
2872 Remove strspn objetcs.
2873 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
2874 (__libc_ifunc_impl_list): Remove strspn implementation.
2875 * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: Remove file.
2876 * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
2877 * sysdeps/powerpc/powerpc64/power7/strspn.S: Remove file.
2878 * sysdeps/powerpc/powerpc64/strspn.S: New file.
2879
08f1e1d2
JL
28802014-12-01 James Lemke <jwlemke@codesourcery.com>
2881
2882 [BZ #17581]
2883 * malloc/hooks.c
2884 (mem2mem_check): Add a terminator to the chain of checking blocks.
2885 (malloc_check_get_size): Use it here.
2886 (mem2chunk_check): Ditto.
2887
a8a7d7d2
RS
28882014-12-01 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
2889
2890 * sysdeps/powerpc/powerpc64/strtok.S: New file.
2891 * sysdeps/powerpc/powerpc64/strtok_r.S: New file.
2892
97114a38
CD
28932014-11-29 Carlos O'Donell <carlos@redhat.com>
2894
c8dc1727
CD
2895 * bits/ioctl-types.h: Indent preprocessor directives correctly.
2896
6d03458e
CD
2897 * nptl/nptl-init.c: Include libc-internal.h.
2898 (__pthread_initialize_minimal_internal): Use ROUND_UP.
2899
97114a38
CD
2900 * elf/ldconfig.c (search_dir): Expand comment.
2901
0e7e69ba
JM
29022014-11-29 Joseph Myers <joseph@codesourcery.com>
2903
2904 * conform/Makefile (linknamespace-symlist-stdlibs-base): New
2905 variable.
2906 (linknamespace-symlist-stdlibs-tests): Likewise.
2907 (tests-special): Append $(linknamespace-symlist-stdlibs-tests)
2908 instead of $(objpfx)symlist-stdlibs.
2909 (linknamespace-libs-isoc): New variable.
2910 (linknamespace-libs): Use $(linknamespace-libs-isoc).
2911 (linknamespace-libs-ISO): New variable.
2912 (linknamespace-libs-ISO99): Likewise.
2913 (linknamespace-libs-ISO11): Likewise.
2914 (linknamespace-libs-XPG3): Likewise.
2915 (linknamespace-libs-XPG4): Likewise.
2916 (linknamespace-libs-POSIX): Likewise.
2917 (linknamespace-libs-UNIX98): Likewise.
2918 (linknamespace-libs-XOPEN2K): Likewise.
2919 (linknamespace-libs-POSIX2008): Likewise.
2920 (linknamespace-libs-XOPEN2K8): Likewise.
2921 ($(objpfx)symlist-stdlibs): Replace by
2922 $(linknamespace-symlist-stdlibs-tests). Use
2923 $(linknamespace-libs-$*) as set of libraries.
2924 ($(linknamespace-header-tests)): Update dependencies. Use
2925 $(objpfx)symlist-stdlibs-$$std for --libsyms argument.
2926 (test-xfail-XPG4/sys/mman.h/linknamespace): Remove.
2927 * conform/linknamespace.pl: Remove comment about considering
2928 definitions of symbols from irrelevant libraries.
2929
d8dd0080
L
29302014-11-28 H.J. Lu <hongjiu.lu@intel.com>
2931
2932 [BZ #13862]
2933 * elf/dl-tls.c: Include <atomic.h>.
2934 (oom): Remove #ifdef SHARED/#endif.
2935 (_dl_static_dtv, _dl_initial_dtv): Moved before ...
2936 (_dl_resize_dtv): This. Extracted from _dl_update_slotinfo.
2937 (_dl_allocate_tls_init): Resize DTV if the current DTV isn't
2938 big enough.
2939 (_dl_update_slotinfo): Call _dl_resize_dtv to resize DTV.
2940 * nptl/Makefile (tests): Add tst-stack4.
2941 (modules-names): Add tst-stack4mod.
2942 ($(objpfx)tst-stack4): New.
2943 (tst-stack4mod.sos): Likewise.
2944 ($(objpfx)tst-stack4.out): Likewise.
2945 ($(tst-stack4mod.sos)): Likewise.
2946 (clean): Likewise.
2947 * nptl/tst-stack4.c: New file.
2948 * nptl/tst-stack4mod.c: Likewise.
2949
167da422
B
29502014-11-27 J. Brown <jb999@gmx.de>
2951
2952 * sysdeps/x86/bits/string.h: Add recent CPUs.
2953
9114625b
JM
29542014-11-27 Joseph Myers <joseph@codesourcery.com>
2955
6b5189eb
JM
2956 * misc/tst-pselect.c (do_test): Use sigprocmask instead of
2957 sigblock.
2958
49051f8e
JM
2959 * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
2960 feof.
2961
9114625b
JM
2962 * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
2963 variable.
2964
e7300fef
SL
29652014-11-27 Stefan Liebler <stli@linux.vnet.ibm.com>
2966
2967 * nscd/connections.c: Include libc-internal.h because of macro
2968 usage ignore_value.
2969
1721f0a4
SP
29702014-11-27 Siddhesh Poyarekar <siddhesh@redhat.com>
2971
2972 * string/bits/string3.h (__warn_memset_zero_len): Don't
2973 declare for gcc newer than 5.0.
2974 (memset): Don't test for zero-length __LEN for gcc newer than
2975 5.0.
2976
be970916
JM
29772014-11-27 Joseph Myers <joseph@codesourcery.com>
2978
d88548f4
JM
2979 * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
2980 size_t for %zu format.
2981
be970916
JM
2982 * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
2983 difference, not %ju.
2984
3b20fd5c
JM
29852014-11-26 Joseph Myers <joseph@codesourcery.com>
2986
8915eace
JM
2987 * include/libc-internal.h (ignore_value): New macro.
2988 * nscd/connections.c (restart): Wrap calls to setuid and setgid
2989 with ignore_value.
2990
f1a5a0e3
JM
2991 * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
2992 definition.
2993
59ef1715
JM
2994 * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
2995 pthread_cleanup_push to void *.
2996
a6f3079b
JM
2997 * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
2998 Undefine.
2999
706688aa
JM
3000 [BZ #16619]
3001 [BZ #16740]
3002 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
3003 instead of 1L << 52.
3004
12da14a5
JM
3005 * libio/bug-rewind.c (do_test): Check fwscanf return values.
3006 * libio/bug-rewind2.c (do_test): Likewise.
3007
bd5dadac
JM
3008 * debug/test-stpcpy_chk-ifunc.c: Remove file.
3009 * debug/test-strcpy_chk-ifunc.c: Likewise.
3010 * wcsmbs/test-wcschr-ifunc.c: Likewise.
3011 * wcsmbs/test-wcscmp-ifunc.c: Likewise.
3012 * wcsmbs/test-wcscpy-ifunc.c: Likewise.
3013 * wcsmbs/test-wcslen-ifunc.c: Likewise.
3014 * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
3015 * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
3016 * Rules [$(multi-arch) = no] (tests): Do not filter out
3017 $(tests-ifunc).
3018 [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
3019 * debug/Makefile (tests-ifunc): Remove variable.
3020 (tests): Do not add $(tests-ifunc).
3021 * wcsmbs/Makefile (tests-ifunc): Remove variable.
3022 (tests): Do not add $(tests-ifunc).
3023 * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
3024 [TEST_IFUNC]: Remove conditionals.
3025 * string/test-string.h (TEST_IFUNC): Remove macro.
3026 [TEST_IFUNC]: Remove conditionals.
3027
3b20fd5c
JM
3028 * string/test-strchr.c [!WIDE] (L): New macro.
3029 [WIDE] (L): Likewise.
3030 (check1): Use CHAR instead of char. Use L on string and character
3031 constants.
3032
704f7947
AZ
30332014-11-26 Adhemerval Zanella <azanella@linux.ibm.com>
3034
3035 * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
3036 tests.
3037 * sysdeps/powerpc/bits/atomic.h
3038 (__arch_atomic_exchange_and_add_32_acq): Add definition.
3039 (__arch_atomic_exchange_and_add_32_rel): Likewise.
3040 (atomic_exchange_and_add_acq): Likewise.
3041 (atomic_exchange_and_add_rel): Likewise.
3042 * sysdeps/powerpc/powerpc32/bits/atomic.h
3043 (__arch_atomic_exchange_and_add_64_acq): Add definition.
3044 (__arch_atomic_exchange_and_add_64_rel): Likewise.
3045 * sysdeps/powerpc/powerpc64/bits/atomic.h
3046 (__arch_atomic_exchange_and_add_64_acq): Add definition.
3047 (__arch_atomic_exchange_and_add_64_rel): Likewise.
3048
cdcb42d7
TR
30492014-11-26 Torvald Riegel <triegel@redhat.com>
3050
3051 * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
3052 Change synchronization of __sched_fifo_min_prio and
3053 __sched_fifo_max_prio.
3054 * nptl/pthread_mutexattr_getprioceiling.c
3055 (pthread_mutexattr_getprioceiling): Likewise.
3056 * nptl/pthread_mutexattr_setprioceiling.c
3057 (pthread_mutexattr_setprioceiling): Likewise.
3058 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
3059 * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
3060 Likewise.
3061
c82f5c0c
JM
30622014-11-26 Joseph Myers <joseph@codesourcery.com>
3063
3064 * setjmp/jmpbug.c (test): Make foo volatile and cast it to
3065 void.
3066
439e1ad6
JM
30672014-11-25 Joseph Myers <joseph@codesourcery.com>
3068
3069 * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
3070 third argument const.
3071
b1eda10e
PE
30722014-11-25 Paul Eggert <eggert@cs.ucla.edu>
3073
3074 fnmatch: work around GCC compiler warning bug with uninit var
3075 * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
3076 This works around a bug with x86-64 GCC 4.9.2 and earlier
3077 where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
3078 "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
3079 used uninitialized in this function [-Wmaybe-uninitialized]".
3080
bde2667a
JM
30812014-11-25 Joseph Myers <joseph@codesourcery.com>
3082
3083 * posix/bug-regex31.c (main): Return RES not 0.
3084
5fbb5691
AB
30852014-11-25 Anton Blanchard <anton@samba.org>
3086
3087 * sysdeps/powerpc/bits/atomic.h
3088 (__arch_compare_and_exchange_bool_64_rel): Load from mem.
3089
467fec0b
BM
30902014-11-24 Sterling Augustine <saugustine@google.com>
3091
3092 * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
3093
e9ff8efb
RC
30942014-11-24 Ryan Cumming <etaoins@gmail.com>
3095
3096 [BZ #17608]
3097 * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
3098
9744496f
JM
30992014-11-24 Joseph Myers <joseph@codesourcery.com>
3100
3101 [BZ #17633]
3102 * stdio-common/perror.c (perror): Call __fileno instead of fileno.
3103 * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
3104 variable.
3105 (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
3106 (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
3107
6423d475
WD
31082014-11-24 Wilco Dijkstra <wdijkstr@arm.com>
3109
3110 * string/strncpy.c (strncpy): Improve performance by using memset.
3111
31122014-11-24 Wilco Dijkstra <wdijkstr@arm.com>
b863d2bc
WD
3113
3114 * string/strcpy.c (strcpy):
3115 Improve performance by using strlen and memcpy.
3116
5d178c37
LH
31172014-11-24 Leonhard Holz <leonhard.holz@web.de>
3118
3119 * string/strcoll_l.c (get_next_seq): __always_inline.
3120 * string/strcoll_l.c (do_compare): __always_inline.
3121
279bc5b3
SP
31222014-11-24 Siddhesh Poyarekar <siddhesh@redhat.com>
3123
7a9ebfa1
SP
3124 * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
3125 defined.
3126 * include/mqueue.h: Likewise.
3127 * include/stdlib.h: Likewise.
3128
4f41c682
SP
3129 * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
3130 (get_null_defines): Adjust.
3131 * sunrpc/Makefile: Adjust comment.
3132 * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
3133 * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
3134 (CFLAGS-interp.c): Likewise.
3135 (CFLAGS-ldconfig.c): Likewise.
3136 (CPPFLAGS-.os): Likewise.
3137 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
3138 * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
3139 * extra-modules.mk (extra-modules.mk): Likewise.
3140 * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
3141 * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
3142 * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
3143 * nscd/Makefile (CPPFLAGS-nscd): Likewise.
3144 * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
3145 * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
3146 * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
3147 * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
3148 * iconvdata/Makefile (CPPFLAGS): Likewise.
3149 (cpp-srcs-left): Add libof for all iconvdata routines.
3150 * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
3151 * include/assert.h: Likewise.
3152 * include/ctype.h: Likewise.
3153 * include/errno.h: Likewise.
3154 * include/libc-symbols.h: Likewise.
3155 * include/math.h: Likewise.
3156 * include/netdb.h: Likewise.
3157 * include/resolv.h: Likewise.
3158 * include/stdio.h: Likewise.
3159 * include/stdlib.h: Likewise.
3160 * include/string.h: Likewise.
3161 * include/sys/stat.h: Likewise.
3162 * include/wctype.h: Likewise.
3163 * intl/l10nflist.c: Likewise.
3164 * libidn/idn-stub.c: Likewise.
3165 * libio/libioP.h: Likewise.
3166 * nptl/libc_multiple_threads.c: Likewise.
3167 * nptl/pthreadP.h: Likewise.
3168 * posix/regex_internal.h: Likewise.
3169 * resolv/res_hconf.c: Likewise.
3170 * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
3171 * sysdeps/arm/memmove.S: Likewise.
3172 * sysdeps/arm/sysdep.h: Likewise.
3173 * sysdeps/generic/_itoa.h: Likewise.
3174 * sysdeps/generic/symbol-hacks.h: Likewise.
3175 * sysdeps/gnu/errlist.awk: Likewise.
3176 * sysdeps/gnu/errlist.c: Likewise.
3177 * sysdeps/i386/i586/memcpy.S: Likewise.
3178 * sysdeps/i386/i586/memset.S: Likewise.
3179 * sysdeps/i386/i686/memcpy.S: Likewise.
3180 * sysdeps/i386/i686/memmove.S: Likewise.
3181 * sysdeps/i386/i686/mempcpy.S: Likewise.
3182 * sysdeps/i386/i686/memset.S: Likewise.
3183 * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
3184 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
3185 * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
3186 * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
3187 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
3188 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
3189 * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
3190 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
3191 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
3192 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
3193 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
3194 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
3195 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
3196 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
3197 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
3198 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
3199 * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
3200 * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
3201 * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
3202 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
3203 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
3204 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
3205 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
3206 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
3207 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
3208 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
3209 * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
3210 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
3211 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
3212 * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
3213 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
3214 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
3215 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
3216 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
3217 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
3218 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
3219 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
3220 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
3221 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
3222 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
3223 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
3224 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
3225 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
3226 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
3227 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
3228 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
3229 * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
3230 * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
3231 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
3232 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
3233 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
3234 * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
3235 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
3236 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
3237 * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
3238 * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
3239 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
3240 * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
3241 * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
3242 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
3243 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
3244 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
3245 * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
3246 * sysdeps/nptl/bits/libc-lock.h: Likewise.
3247 * sysdeps/nptl/bits/libc-lockP.h: Likewise.
3248 * sysdeps/nptl/bits/stdio-lock.h: Likewise.
3249 * sysdeps/posix/closedir.c: Likewise.
3250 * sysdeps/posix/opendir.c: Likewise.
3251 * sysdeps/posix/readdir.c: Likewise.
3252 * sysdeps/posix/rewinddir.c: Likewise.
3253 * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
3254 * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
3255 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
3256 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
3257 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
3258 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
3259 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
3260 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
3261 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
3262 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
3263 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
3264 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
3265 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
3266 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
3267 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
3268 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
3269 * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
3270 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
3271 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
3272 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
3273 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
3274 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
3275 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
3276 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
3277 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
3278 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
3279 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
3280 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
3281 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
3282 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
3283 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
3284 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
3285 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
3286 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
3287 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
3288 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
3289 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
3290 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
3291 * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
3292 * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
3293 * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
3294 * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
3295 * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
3296 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
3297 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
3298 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
3299 * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
3300 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
3301 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
3302 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
3303 * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
3304 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
3305 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
3306 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
3307 * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
3308 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
3309 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
3310 * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
3311 * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
3312 * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
3313 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
3314 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
3315 * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
3316 * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
3317 * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
3318 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
3319 * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
3320 * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
3321 * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
3322 * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
3323 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
3324 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
3325 * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
3326 * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
3327 * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
3328 * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
3329 * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
3330 * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
3331 * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
3332 * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
3333 * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
3334 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
3335 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
3336 * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
3337 * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
3338 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
3339 * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
3340 * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
3341 * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
3342 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
3343 * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
3344 * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
3345 * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
3346 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
3347 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
3348 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
3349 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
3350 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
3351 * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
3352 * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
3353 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
3354 * sysdeps/unix/alpha/sysdep.S: Likewise.
3355 * sysdeps/unix/alpha/sysdep.h: Likewise.
3356 * sysdeps/unix/make-syscalls.sh: Likewise.
3357 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3358 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3359 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3360 * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
3361 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3362 * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
3363 * sysdeps/unix/sysv/linux/getpid.c: Likewise.
3364 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
3365 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3366 * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
3367 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
3368 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3369 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3370 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
3371 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3372 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
3373 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3374 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
3375 * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
3376 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3377 * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
3378 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
3379 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3380 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3381 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3382 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3383 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
3384 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
3385 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
3386 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
3387 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
3388 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3389 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
3390 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3391 * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
3392 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3393 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
3394 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3395 * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
3396 * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
3397 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
3398 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3399 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3400 * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
3401 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
3402 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3403 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3404 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
3405 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3406 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
3407 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
3408 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3409 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3410 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3411 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
3412 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
3413 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3414 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3415 * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
3416 * sysdeps/x86_64/memcpy.S: Likewise.
3417 * sysdeps/x86_64/memmove.c: Likewise.
3418 * sysdeps/x86_64/memset.S: Likewise.
3419 * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
3420 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
3421 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
3422 * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
3423 * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
3424 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
3425 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
3426 * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
3427 * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
3428 * sysdeps/x86_64/multiarch/memmove.c: Likewise.
3429 * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
3430 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
3431 * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
3432 * sysdeps/x86_64/multiarch/memset.S: Likewise.
3433 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
3434 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
3435 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
3436 * sysdeps/x86_64/multiarch/strcat.S: Likewise.
3437 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
3438 * sysdeps/x86_64/multiarch/strchr.S: Likewise.
3439 * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
3440 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
3441 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
3442 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
3443 * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
3444 * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
3445 * sysdeps/x86_64/multiarch/strspn.S: Likewise.
3446 * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
3447 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
3448 * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
3449 * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
3450 * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
3451 * sysdeps/x86_64/strcmp.S: Likewise.
3452
76ca86a5
SP
3453 * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
3454
a3848485
SP
3455 * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
3456 * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
3457 * elf/rtld-Rules: Likewise.
3458 * elf/setup-vdso.h: Likewise.
3459 * include/assert.h: Likewise.
3460 * include/bits/stdlib-float.h: Likewise.
3461 * include/errno.h: Likewise.
3462 * include/sys/stat.h: Likewise.
3463 * include/unistd.h: Likewise.
3464 * sysdeps/aarch64/setjmp.S: Likewise.
3465 * sysdeps/alpha/setjmp.S: Likewise.
3466 * sysdeps/arm/__longjmp.S: Likewise.
3467 * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
3468 * sysdeps/arm/setjmp.S: Likewise.
3469 * sysdeps/arm/sysdep.h: Likewise.
3470 * sysdeps/generic/_itoa.h: Likewise.
3471 * sysdeps/generic/dl-sysdep.h: Likewise.
3472 * sysdeps/generic/ldsodefs.h: Likewise.
3473 * sysdeps/i386/dl-tls.h: Likewise.
3474 * sysdeps/i386/setjmp.S: Likewise.
3475 * sysdeps/m68k/setjmp.c: Likewise.
3476 * sysdeps/mach/hurd/dl-execstack.c: Likewise.
3477 * sysdeps/mach/hurd/opendir.c: Likewise.
3478 * sysdeps/posix/getcwd.c: Likewise.
3479 * sysdeps/posix/opendir.c: Likewise.
3480 * sysdeps/posix/profil.c: Likewise.
3481 * sysdeps/powerpc/dl-procinfo.h: Likewise.
3482 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
3483 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
3484 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
3485 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
3486 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
3487 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
3488 * sysdeps/s390/dl-tls.h: Likewise.
3489 * sysdeps/s390/s390-32/setjmp.S: Likewise.
3490 * sysdeps/s390/s390-64/setjmp.S: Likewise.
3491 * sysdeps/sh/sh3/setjmp.S: Likewise.
3492 * sysdeps/sh/sh4/setjmp.S: Likewise.
3493 * sysdeps/unix/alpha/sysdep.h: Likewise.
3494 * sysdeps/unix/arm/sysdep.S: Likewise.
3495 * sysdeps/unix/i386/sysdep.S: Likewise.
3496 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3497 * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
3498 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
3499 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
3500 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3501 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
3502 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
3503 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3504 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
3505 * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
3506 * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
3507 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
3508 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
3509 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
3510 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
3511 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
3512 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3513 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3514 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
3515 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3516 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
3517 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3518 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
3519 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
3520 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3521 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
3522 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3523 * sysdeps/unix/x86_64/sysdep.S: Likewise.
3524 * sysdeps/x86_64/setjmp.S: Likewise.
3525
a109996e
SP
3526 * include/math.h: Use IS_IN instead of IS_IN_libm.
3527 * sysdeps/alpha/fpu/s_copysign.c: Likewise.
3528 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
3529 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
3530 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
3531 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
3532 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
3533 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
3534 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
3535 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
3536 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
3537 * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
3538 * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
3539 * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
3540 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
3541 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
3542 * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
3543 * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
3544 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
3545 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
3546 * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
3547 * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
3548 * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
3549 * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
3550 * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
3551 * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
3552 * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
3553 * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
3554 * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
3555 * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
3556 * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
3557 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
3558 * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
3559 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
3560 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
3561 Likewise.
3562 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
3563 Likewise.
3564 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
3565 Likewise.
3566 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
3567 Likewise.
3568 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
3569 Likewise.
3570 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
3571 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
3572 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
3573 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
3574 * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
3575 * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
3576 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
3577 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
3578 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
3579 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
3580 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
3581 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
3582 * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
3583 * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
3584 * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
3585 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
3586 * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
3587 * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
3588 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
3589 * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
3590 * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
3591 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
3592 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
3593 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
3594 * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
3595 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
3596 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
3597
ce9f10f7
SP
3598 * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
3599 * nptl/pthreadP.h: Likewise.
3600 * nptl_db/structs.def: Likewise.
3601 * sysdeps/arm/sysdep.h: Likewise.
3602 * sysdeps/nptl/bits/libc-lock.h: Likewise.
3603 * sysdeps/nptl/bits/libc-lockP.h: Likewise.
3604 * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
3605 * sysdeps/unix/alpha/sysdep.h: Likewise.
3606 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3607 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3608 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3609 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3610 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3611 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3612 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3613 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3614 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3615 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3616 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3617 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3618 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3619 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3620 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
3621 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
3622 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3623 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3624 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3625 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3626 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3627 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3628 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3629 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3630 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
3631 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3632
016afc75
SP
3633 * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
3634 * nptl/pthreadP.h: Likewise.
3635 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
3636 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
3637 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
3638 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
3639 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
3640 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
3641 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3642 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
3643 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
3644 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
3645 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
3646 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
3647 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
3648 Likewise.
3649 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
3650 Likewise.
3651 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
3652 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
3653 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
3654 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
3655 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
3656 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
3657 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
3658 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
3659
9b42a0b3
SP
3660 * dlfcn/dladdr.c: Use IS_IN.
3661 * dlfcn/dladdr1.c: Likewise.
3662 * dlfcn/dlclose.c: Likewise.
3663 * dlfcn/dlerror.c: Likewise.
3664 * dlfcn/dlinfo.c: Likewise.
3665 * dlfcn/dlmopen.c: Likewise.
3666 * dlfcn/dlopen.c: Likewise.
3667 * dlfcn/dlsym.c: Likewise.
3668 * dlfcn/dlvsym.c: Likewise.
3669
85f36372
SP
3670 * include/ifaddrs.h: Use IS_IN.
3671 * inet/check_pf.c: Likewise.
3672 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
3673 * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
3674
fb6784e3
SP
3675 * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
3676 IS_IN_ldconfig.
3677 * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
3678 * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
3679
2886d2d1
SP
3680 * include/shlib-compat.h [!NOT_IN_libc]: Remove.
3681 * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
3682 IS_IN (libc).
3683
9a484857
SP
3684 * elf/Makefile (libof-sotruss-lib): Set as extramodules.
3685
a10178bd
SP
3686 * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
3687 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
3688 * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
3689 * include/libc-symbols.h (IS_IN_LIB): New macro.
3690 * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
3691 * include/netdb.h: Likewise.
3692 * include/stap-probe.h: Remove all uses of IN_LIB.
3693
279bc5b3
SP
3694 * Makeconfig (module-cppflags-real): Define MODULE_NAME
3695 instead of IN_MODULE.
3696 * include/libc-symbols.h (IN_MODULE): Define using
3697 MODULE_NAME.
3698 (PASTE_NAME, PASTE_NAME1): New macros.
3699 * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
3700 of IN_LIB.
3701 (STAP_PROBE_ASM): Likewise.
3702
e0cfa510
ST
37032014-11-23 Samuel Thibault <samuel.thibault@ens-lyon.org>
3704
3705 * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
3706 __mach_init in dlopened libc.
3707
34d97d87
MF
37082014-11-22 Mike Frysinger <vapier@gentoo.org>
3709
3710 * sysdeps/arm/preconfigure.ac: Delete EABI check.
3711 * sysdeps/arm/preconfigure: Regenerate.
3712
33cd1f74
RM
37132014-11-21 Roland McGrath <roland@hack.frob.com>
3714
3715 * nptl/pthread_create.c (__pthread_create_2_1): Set
3716 ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
3717 when copying values from IATTR into PD.
3718
8c230039
WN
37192014-11-21 Will Newton <will.newton@linaro.org>
3720 Andrew Pinski <andrew.pinski@caviumnetworks.com>
3721
6d3db89b
AP
3722 * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
3723 Refactor inline-asm. Also add comment.
3724
01194ba1
WN
3725 * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
3726 ElfW macro instead of hardcoded Elf64 types.
3727 (la_aarch64_gnu_pltenter): Likewise.
3728 * sysdeps/aarch64/dl-machine.h
3729 (elf_machine_runtime_setup): Use ElfW(Addr).
3730
8c230039
WN
3731 * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
3732 R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
3733 R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
3734 R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
3735 R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
3736 (R_AARCH64_TLS_DTPMOD64): Rename to ..
3737 (R_AARCH64_TLS_DTPMOD): This.
3738 (R_AARCH64_TLS_DTPREL64): Rename to ...
3739 (R_AARCH64_TLS_DTPREL): This.
3740 (R_AARCH64_TLS_TPREL64): Rename to ...
3741 (R_AARCH64_TLS_TPREL): This.
3742 * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
3743 R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
3744 R_AARCH64_TLS_TPREL64.
3745 (elf_machine_rela): Likewise.
3746
0d79fa53
TR
37472014-11-21 Torvald Riegel <triegel@redhat.com>
3748
3749 * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
3750 by setting it to 0. 64b atomics are not supported currently.
3751
b59d114b
AO
37522014-11-21 Alexandre Oliva <aoliva@redhat.com>
3753
3754 [BZ #16469]
3755 * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
3756 search domain names.
3757
f3d945d5
AO
37582014-11-21 Alexandre Oliva <aoliva@redhat.com>
3759
3760 [BZ #16469]
3761 * NEWS: Update.
3762 * resolv/res_query.c (__libc_res_nquerydomain): Retain
3763 trailing dot.
3764 * posix/tst-getaddrinfo5.c: New.
3765 * posix/Makefile (tests): Add it.
3766
49698902
AO
37672014-11-21 Alexandre Oliva <aoliva@redhat.com>
3768
3769 [BZ #14498]
3770 * NEWS: Fixed.
3771 * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
3772 after parsing line but before break_if_match.
3773 * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
3774 if there is a protocol mismatch.
3775
81959214
MS
37762014-11-21 Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
3777
3778 * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
3779 because the potential race is on the user-supplied stream.
3780
7729e0e9
AO
37812014-11-21 Alexandre Oliva <aoliva@redhat.com>
3782
3783 * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
3784 string literal if not passed a buffer.
3785 * manual/job.texi (ctermid): Update reasoning, note deviation
3786 from posix, suggest mtasurace when not passed a buffer, for
3787 future non-preliminary safety notes.
3788
a4ea5e28
AO
37892014-11-21 Alexandre Oliva <aoliva@redhat.com>
3790
3791 * manual/users.texi (cuserid): Fix MT-Safety note for the case
3792 of not passing it a buffer.
3793 Reported by Peng Haitao.
3794
a2b581cb
AO
37952014-11-21 Alexandre Oliva <aoliva@redhat.com>
3796
3797 * manual/Makefile ($(objpfx)stamp-summary): Require
3798 check-safety.sh to pass.
3799 * manual/check-safety.sh: Wish for verification that every
3800 @deftypefn and @deftypefun is followed by a @safety remark.
3801
f214ff74
RM
38022014-11-20 Roland McGrath <roland@hack.frob.com>
3803
7f0dfae0
RM
3804 * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
3805
2f531bbb
RM
3806 * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
3807 PTHREAD_CANCEL_ASYNCHRONOUS.
3808 * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
3809 send SIGCANCEL.
3810
f214ff74
RM
3811 * nptl/default-sched.h: New file.
3812 * sysdeps/unix/sysv/linux/default-sched.h: New file.
3813 * nptl/pthread_create.c: Include it.
3814 (__pthread_create_2_1): Use collect_default_sched instead of making
3815 Linux syscalls here directly.
3816
e37c91d4
TR
38172014-11-20 Torvald Riegel <triegel@redhat.com>
3818
3819 * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
3820 __pthread_once): Use C11 atomics.
3821
1eccfecd
TR
38222014-11-20 Torvald Riegel <triegel@redhat.com>
3823
3824 * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
3825
ff871426
TR
38262014-11-20 Torvald Riegel <triegel@redhat.com>
3827
3828 * include/atomic.h (__atomic_link_error, __atomic_check_size,
3829 atomic_thread_fence_acquire, atomic_thread_fence_release,
3830 atomic_thread_fence_seq_cst, atomic_load_relaxed,
3831 atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
3832 atomic_compare_exchange_weak_relaxed,
3833 atomic_compare_exchange_weak_acquire,
3834 atomic_compare_exchange_weak_release,
3835 atomic_exchange_acquire, atomic_exchange_release,
3836 atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
3837 atomic_fetch_add_release, atomic_fetch_add_acq_rel,
3838 atomic_fetch_and_acquire,
3839 atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
3840
1ea339b6
TR
38412014-11-20 Torvald Riegel <triegel@redhat.com>
3842
3843 * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
3844 USE_ATOMIC_COMPILER_BUILTINS): Define.
3845 * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
3846 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3847 * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
3848 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3849 * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
3850 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3851 * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
3852 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3853 * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
3854 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3855 * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
3856 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3857 * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
3858 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3859 * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
3860 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3861 * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
3862 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3863 * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
3864 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3865 * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
3866 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3867 * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
3868 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3869 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
3870 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3871 * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
3872 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3873 * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
3874 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3875 * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
3876 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3877 * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
3878 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3879 * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
3880 (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3881 * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
3882 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3883 * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
3884 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
3885
cbd463e2
RM
38862014-11-19 Roland McGrath <roland@hack.frob.com>
3887
d960211f
RM
3888 * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
3889 the sched_priority value here. It was already checked when the user
3890 called pthread_attr_setschedparam.
3891
cbd463e2
RM
3892 * nptl/tst-bad-schedattr.c: New file.
3893 * nptl/Makefile (tests): Add it.
3894
a39208bd
CD
38952014-11-19 Carlos O'Donell <carlos@redhat.com>
3896 Florian Weimer <fweimer@redhat.com>
3897 Joseph Myers <joseph@codesourcery.com>
3898 Adam Conrad <adconrad@0c3.net>
3899 Andreas Schwab <schwab@suse.de>
3900 Brooks <bmoses@google.com>
3901
3902 [BZ #17625]
3903 * wordexp-test.c (__dso_handle): Add prototype.
3904 (__register_atfork): Likewise.
3905 (__app_register_atfork): New function.
3906 (registered_forks): New global.
3907 (register_fork): New function.
3908 (test_case): Add 3 new tests for WRDE_CMDSUB.
3909 (main): Call __app_register_atfork.
3910 (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
3911 fork count is non-zero fail the test.
3912 * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
3913 is set.
3914 (parse_dollars): Remove check for WRDE_NOCMD.
3915 (parse_dquote): Likewise.
3916
9cd47470
SP
39172014-11-19 Siddhesh Poyarekar <siddhesh@redhat.com>
3918
130ac68c
SP
3919 * Makeconfig (built-modules): List non-library modules to be
3920 built.
3921 (module-cppflags): Include libc-modules.h for
3922 everything except shlib-versions.v.i.
3923 (CPPFLAGS): Use it.
3924 (before-compile): Add libc-modules.h.
3925 ($(common-objpfx)libc-modules.h,
3926 $(common-objpfx)libc-modules.stmp): New targets.
3927 (common-generated): Add libc-modules.h and libc-modules.stmp.
3928 ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
3929 * include/libc-symbols.h: Don't include libc-modules.h.
3930 * include/libc-modules.h: Remove file.
3931 * scripts/gen-libc-modules.awk: New script to generate
3932 libc-modules.h.
3933 * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
3934 Depend on libc-modules.stmp.
3935
286663c3
SP
3936 * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
3937
9cd47470
SP
3938 * Makeconfig (in-module): Get value of libof set for the
3939 translation unit.
3940 (CPPFLAGS): Use $(in-module).
3941 * Makerules: Don't suffix routine names for nonlib.
3942 * include/libc-modules.h: New file.
3943 * include/libc-symbols.h: Include libc-modules.h
3944 (IS_IN): New macro to replace IS_IN_* macros.
3945 * elf/Makefile: Set libof-* for each routine.
3946 * elf/rtld-Rules: Likewise.
3947 * extra-modules.mk: Likewise.
3948 * iconv/Makefile: Likewise.
3949 * iconvdata/Makefile: Likewise.
3950 * locale/Makefile: Likewise.
3951 * malloc/Makefile: Likewise.
3952 * nss/Makefile: Likewise.
3953 * sysdeps/gnu/Makefile: Likewise.
3954 * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
3955 * sysdeps/unix/sysv/linux/Makefile: Likewise.
3956 * sysdeps/s390/s390-64/Makefile: Likewise.
3957 * nscd/Makefile: Set libof-* for each routine. Set CFLAGS and
3958 CPPFLAGS for nscd instead of nonlib.
3959
32fed10f
RM
39602014-11-18 Roland McGrath <roland@hack.frob.com>
3961
d71035bd
RM
3962 * nptl/createthread.c: New file.
3963
6540b991
RM
3964 * nptl/createthread.c: Moved ...
3965 * sysdeps/unix/sysv/linux/createthread.c: ... here.
3966
32fed10f
RM
3967 * nptl/createthread.c: Add proper top-line comment.
3968 (do_clone): Folded into ...
3969 (create_thread): ... here. Take new arguments STOPPED_START and
3970 THREAD_RAN. Always set PD->stopped_start to something here. Don't
3971 increment __nptl_threads, do event-reporting logic, do
3972 CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
3973 here. Set *THREAD_RAN after ARCH_CLONE call succeeds. Don't do any
3974 resource cleanup if sched_setaffinity or sched_setscheduler fails,
3975 just send SIGCANCEL.
3976 * nptl/pthread_create.c: Forward-declare create_thread before
3977 including createthread.c.
3978 (start_thread): Use new macro START_THREAD_DEFN to replace defining
3979 declaration, and new macro START_THREAD_SELF to replace argument.
3980 Remove return statement.
3981 (report_thread_creation): New function.
3982 (__pthread_create_2_1): Use it. Do TD_CREATE reporting,
3983 synchronization logic, and __nptl_nthreads increment here, around
3984 calling create_thread. Do CHECK_THREAD_SYSINFO and initialize
3985 PD->parent_cancelhandling here, before create_thread. When
3986 create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
3987 __deallocate_stack, and ENOMEM translation here.
3988
107a5bf0
JM
39892014-11-18 Joseph Myers <joseph@codesourcery.com>
3990
3991 [BZ #17616]
3992 * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
3993 (mptwo): Rename to __mptwo.
3994 (__inv): Use __mptwo instead of mptwo.
3995 * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
3996 (mptwo): Rename to __mptwo.
3997 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
3998 of mpone and __mptwo instead of mptwo.
3999 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
4000 instead of mpone.
4001 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
4002 * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
4003 * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
4004 of mpone and __mptwo instead of mptwo.
4005 (__mpranred): Use __mpone instead of mpone.
4006 * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
4007 variable.
4008 (test-xfail-ISO99/complex.h/linknamespace): Likewise.
4009 (test-xfail-ISO99/math.h/linknamespace): Likewise.
4010 (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
4011 (test-xfail-ISO11/complex.h/linknamespace): Likewise.
4012 (test-xfail-ISO11/math.h/linknamespace): Likewise.
4013 (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
4014 (test-xfail-XPG3/math.h/linknamespace): Likewise.
4015 (test-xfail-XPG4/math.h/linknamespace): Likewise.
4016 (test-xfail-POSIX/math.h/linknamespace): Likewise.
4017 (test-xfail-UNIX98/math.h/linknamespace): Likewise.
4018 (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
4019 (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
4020 (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
4021 (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
4022 (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
4023 (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
4024 (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
4025 (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
4026 (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
4027
3b679ab3
TV
40282014-11-18 Tom de Vries <tom@codesoucery.com>
4029
4030 * manual/signal.texi (Primitives Interrupted by Signals): In section,
4031 replace BSD Handler xref with BSD Signal Handling.
4886f341
RH
4032
40332014-11-17 Richard Henderson <rth@redhat.com>
4034
4035 * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
4036 (_FP_PACK_RAW_2): Remove.
4037 (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
4038 (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
4039 (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
4040 (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
4041 * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
4042 * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
4043 * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
4044 * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
4045 * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
4046 * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
4047 * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
4048 * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
4049 * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
4050 * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
4051 * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
4052 * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
4053
0781a777
RM
40542014-11-14 Roland McGrath <roland@hack.frob.com>
4055
4056 * signal/signal.h [__USE_MISC]
4057 (struct sigvec): Remove type.
4058 (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
4059 (sigvec): Remove declaration.
4060 * sysdeps/posix/sigvec.c: Moved ...
4061 * signal/sigvec.c: ... here, replacing old file.
4062 (struct sigvec): New type, copied from old signal.h definition.
4063 (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
4064 (__sigvec): Convert definition to prototype.
4065 (sigvec): Replace weak_alias with compat_symbol.
4066 * signal/Versions (libc: GLIBC_2.21): New version set.
4067 * include/signal.h: Remove __sigvec declaration.
4068 * sysdeps/unix/bsd/sigvec.c: Remove file.
4069 * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
4070 * manual/signal.texi (BSD Handler): Remove subsection.
4071 Move siginterrupt up to ...
4072 (BSD Signal Handling): ... here. Mark it as XPG rather than BSD.
4073 (Blocking in BSD): Fold subsection into its parent.
4074 * NEWS: Mention sigvec removal.
4075
a4733812
JM
40762014-11-14 Joseph Myers <joseph@codesourcery.com>
4077
5ae4fe60
JM
4078 * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
4079 (DLA_FMS): Make definition conditional only on [__FMA4__].
4080 [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
4081 definition.
4082
6a0dd472
JM
4083 * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
4084 Make definition conditional only on [PROF].
4085 [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
4086 definition.
4087 [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
4088 [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
4089
a4733812
JM
4090 * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
4091 !__GNUC__].
4092 * include/signal.h (__sigpause): Move declaration above call to
4093 libc_hidden_proto.
4094 * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
4095 variable.
4096 (test-xfail-ISO99/signal.h/linknamespace): Likewise.
4097 (test-xfail-ISO11/signal.h/linknamespace): Likewise.
4098
cf7246dd
DM
40992014-11-14 David S. Miller <davem@davemloft.net>
4100
4101 * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
4102 Define before including <string/memcpy.c> and <string/mempcpy.c>.
4103
c1b0aadc
JM
41042014-11-14 Joseph Myers <joseph@codesourcery.com>
4105
4863355a
JM
4106 * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
4107 * configure: Regenerated.
4108 * manual/install.texi (Tools for Compilation): Document a
4109 requirement of GCC 4.6 or later and that GCC 4.9 is the newest
4110 compiler verified to work.
4111 * INSTALL: Regenerated.
4112
c1b0aadc
JM
4113 * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
4114 redeclare with asm name.
4115 [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
4116 * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
4117 including <string.h>.
4118 * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4119 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
4120 [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4121 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
4122 [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4123 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
4124 [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
4125
2a1cfd94
JM
41262014-11-13 Joseph Myers <joseph@codesourcery.com>
4127
bf438382
JM
4128 * stdlib/strtol.c (__strtol): Use prototype definition.
4129
2a1cfd94
JM
4130 [BZ #17594]
4131 * stdlib/strtol.c (SYM__): New macro.
4132 (SYM__1): Likewise.
4133 (__strtol): Likewise.
4134 (strtol): Rename to __strtol and define as weak alias of
4135 __strtol. Use libc_hidden_weak.
4136
20ed0d26
SL
41372014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
4138
4139 * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
4140 Use numbered labels in inline assembly.
4141
53244a4e
SL
41422014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
4143
4144 * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
4145 Add setjmp LIBC_PROBE.
4146 * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
4147 Likewise.
4148 * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
4149 Add longjmp, longjmp_target LIBC_PROBE.
4150 * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
4151 Likewise.
4152
47df8251
SL
41532014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
4154
4155 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
4156 Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
4157 to get rid of unused variable warning.
4158
618cebef
SL
41592014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
4160
4161 * sysdeps/s390/s390-32/backtrace.c (__backtrace):
4162 Check for unwind_backtrace == NULL only in SHARED case.
4163 (__backchain_backtrace): Compile only in SHARED case.
4164 * sysdeps/s390/s390-64/backtrace.c (__backtrace):
4165 Likewise.
4166 (__backchain_backtrace): Declare as static.
4167
c6aab2cb
RM
41682014-11-12 Roland McGrath <roland@hack.frob.com>
4169
4170 * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
4171 (__libc_multiple_threads_ptr): Variable moved ...
4172 * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
4173
5a6fa4d7
JM
41742014-11-12 Joseph Myers <joseph@codesourcery.com>
4175
24f4f825
JM
4176 * conform/GlibcConform.pm: New file.
4177 * conform/conformtest.pl: Use GlibcConform module.
4178 * conform/linknamespace.pl: New file.
4179 * conform/list-header-symbols.pl: Likewise.
4180 * conform/Makefile (linknamespace-symlists-base): New variable.
4181 (linknamespace-symlists-tests): Likewise.
4182 (linknamespace-header-base): Likewise.
4183 (linknamespace-header-tests): Likewise.
4184 (tests-special): Add new tests.
4185 ($(linknamespace-symlists-tests)): New rule.
4186 (linknamespace-libs): New variable.
4187 ($(objpfx)symlist-stdlibs): New rule.
4188 ($(linknamespace-header-tests)): Likewise.
4189 (test-xfail-XPG3/varargs.h/linknamespace): New variable.
4190 (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
4191 (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
4192 (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
4193 (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
4194 (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
4195 (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
4196 (test-xfail-ISO/math.h/linknamespace): Likewise.
4197 (test-xfail-ISO/signal.h/linknamespace): Likewise.
4198 (test-xfail-ISO/stdio.h/linknamespace): Likewise.
4199 (test-xfail-ISO/time.h/linknamespace): Likewise.
4200 (test-xfail-ISO99/complex.h/linknamespace): Likewise.
4201 (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
4202 (test-xfail-ISO99/math.h/linknamespace): Likewise.
4203 (test-xfail-ISO99/signal.h/linknamespace): Likewise.
4204 (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
4205 (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
4206 (test-xfail-ISO11/complex.h/linknamespace): Likewise.
4207 (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
4208 (test-xfail-ISO11/math.h/linknamespace): Likewise.
4209 (test-xfail-ISO11/signal.h/linknamespace): Likewise.
4210 (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
4211 (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
4212 (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
4213 (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
4214 (test-xfail-XPG3/glob.h/linknamespace): Likewise.
4215 (test-xfail-XPG3/math.h/linknamespace): Likewise.
4216 (test-xfail-XPG3/regex.h/linknamespace): Likewise.
4217 (test-xfail-XPG3/search.h/linknamespace): Likewise.
4218 (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
4219 (test-xfail-XPG3/time.h/linknamespace): Likewise.
4220 (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
4221 (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
4222 (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
4223 (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
4224 (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
4225 (test-xfail-XPG4/glob.h/linknamespace): Likewise.
4226 (test-xfail-XPG4/grp.h/linknamespace): Likewise.
4227 (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
4228 (test-xfail-XPG4/math.h/linknamespace): Likewise.
4229 (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
4230 (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
4231 (test-xfail-XPG4/regex.h/linknamespace): Likewise.
4232 (test-xfail-XPG4/search.h/linknamespace): Likewise.
4233 (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
4234 (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
4235 (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
4236 (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
4237 (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
4238 (test-xfail-XPG4/time.h/linknamespace): Likewise.
4239 (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
4240 (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
4241 (test-xfail-POSIX/aio.h/linknamespace): Likewise.
4242 (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
4243 (test-xfail-POSIX/glob.h/linknamespace): Likewise.
4244 (test-xfail-POSIX/math.h/linknamespace): Likewise.
4245 (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
4246 (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
4247 (test-xfail-POSIX/regex.h/linknamespace): Likewise.
4248 (test-xfail-POSIX/sched.h/linknamespace): Likewise.
4249 (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
4250 (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
4251 (test-xfail-POSIX/time.h/linknamespace): Likewise.
4252 (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
4253 (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
4254 (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
4255 (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
4256 (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
4257 (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
4258 (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
4259 (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
4260 (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
4261 (test-xfail-UNIX98/math.h/linknamespace): Likewise.
4262 (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
4263 (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
4264 (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
4265 (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
4266 (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
4267 (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
4268 (test-xfail-UNIX98/search.h/linknamespace): Likewise.
4269 (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
4270 (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
4271 (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
4272 (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
4273 (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
4274 (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
4275 (test-xfail-UNIX98/time.h/linknamespace): Likewise.
4276 (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
4277 (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
4278 (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
4279 (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
4280 (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
4281 (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
4282 (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
4283 (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
4284 (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
4285 (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
4286 (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
4287 (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
4288 (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
4289 (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
4290 (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
4291 (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
4292 (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
4293 (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
4294 (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
4295 (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
4296 (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
4297 (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
4298 (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
4299 (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
4300 (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
4301 (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
4302 (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
4303 (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
4304 (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
4305 (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
4306 (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
4307 (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
4308 (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
4309 (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
4310 (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
4311 (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
4312 (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
4313 (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
4314 (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
4315 (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
4316 (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
4317 (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
4318 (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
4319 (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
4320 (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
4321 (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
4322 (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
4323 (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
4324 (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
4325 (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
4326 (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
4327 (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
4328 (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
4329 (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
4330 (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
4331 (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
4332 (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
4333 (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
4334 (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
4335 (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
4336 (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
4337 (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
4338 (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
4339 (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
4340 (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
4341 (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
4342 (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
4343 (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
4344 (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
4345 (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
4346 (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
4347 (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
4348 (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
4349 (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
4350
cc67478e
JM
4351 [BZ #17589]
4352 * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
4353 of fgets_unlocked.
4354
9975e3d3
JM
4355 [BZ #17585]
4356 * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
4357 (memmem): Rename to __memmem and define as weak alias of
4358 __memmem. Use libc_hidden_weak.
4359 (__memmem): Use libc_hidden_def.
4360 * include/string.h (__memmem): Declare. Use libc_hidden_proto.
4361 * locale/findlocale.c (valid_locale_name): Use __memmem instead of
4362 memmem.
4363
c4eae752
JM
4364 [BZ #17582]
4365 * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
4366 (__fgets_unlocked): Add alias of _IO_fgets. Use libc_hidden_def.
4367 * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
4368 and define as weak alias of __fgets_unlocked. Use
4369 libc_hidden_weak.
4370 (__fgets_unlocked): Use libc_hidden_def.
4371 * include/stdio.h (__fgets_unlocked): Declare. Use
4372 libc_hidden_proto.
4373 * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
4374 __fgets_unlocked instead of fgets_unlocked.
4375 * sysdeps/unix/sysv/linux/alpha/getsysstats.c
4376 (GET_NPROCS_CONF_PARSER): Likewise.
4377 * sysdeps/unix/sysv/linux/sparc/getsysstats.c
4378 (GET_NPROCS_CONF_PARSER): Likewise.
4379
01cad84e
JM
4380 [BZ #17574]
4381 * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
4382 weak alias of __wmemset. Use libc_hidden_weak.
4383 (__wmemset): Use libc_hidden_def.
4384 * include/wchar.h (__wmemset): Declare. Use libc_hidden_proto.
4385 * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
4386 of wmemset.
4387
939da411
JM
4388 [BZ #17573]
4389 * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
4390 with asm name __mempcpy.
4391 [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
4392
293d9a41
JM
4393 [BZ #17572]
4394 * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
4395 and define as weak alias of __rawmemchr.
4396 (__rawmemchr): Do not define as strong alias of rawmemchr.
4397
bef8fd60
JM
4398 [BZ #17571]
4399 * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
4400 alias of __qsort_r.
4401 (qsort): Call __qsort_r instead of qsort_r.
4402 * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
4403 (__qsort_r): Declare. Call libc_hidden_proto.
4404 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
4405 instead of qsort_r.
4406 * nscd/gai.c (__qsort_r): Define to qsort_r.
4407 * posix/tst-rfc3484.c (__qsort_r): Likewise.
4408 * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
4409 * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
4410
c52ff39e
JM
4411 [BZ #17570]
4412 * malloc/malloc.c (malloc_info): Rename to __malloc_info and
4413 define as weak alias of __malloc_info.
4414
2f5c1b00
JM
4415 [BZ #17584]
4416 * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
4417 as weak alias of __rewinddir. Don't use libc_hidden_def.
4418 (__rewinddir): Use libc_hidden_def.
4419 * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
4420 as weak alias of __rewinddir. Don't use libc_hidden_def.
4421 (__rewinddir): Use libc_hidden_def.
4422 * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
4423 weak alias of __rewinddir. Don't use libc_hidden_def.
4424 (__rewinddir): Use libc_hidden_def.
4425 * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
4426 (__rewinddir): Use libc_hidden_proto.
4427 * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
4428 rewinddir.
4429 (__getcwd): Use __rewinddir instead of rewinddir.
4430
5a6fa4d7
JM
4431 [BZ #17583]
4432 * libio/fileno.c (fileno): Rename to __fileno and define as weak
4433 alias of __fileno. Use libc_hidden_weak.
4434 (__fileno): Use libc_hidden_def.
4435 [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
4436 * libio/ftello.c (ftello): Rename to __ftello and define as weak
4437 alias of __ftello.
4438 [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
4439 __ftello.
4440 * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
4441 (__fread_unlocked): Define as strong alias of _IO_fread. Use
4442 libc_hidden_def.
4443 (fread_unlocked): Don't use libc_hidden_ver.
4444 * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
4445 and define as weak alias of __fread_unlocked. Don't use
4446 libc_hidden_def.
4447 (__fread_unlocked): Use libc_hidden_def.
4448 * include/stdio.h (__fileno): Declare. Use libc_hidden_proto.
4449 (ftello): Don't use libc_hidden_proto.
4450 (__ftello): Declare. Use libc_hidden_proto.
4451 (fread_unlocked): Don't use libc_hidden_proto.
4452 (__fread_unlocked): Declare. Use libc_hidden_proto.
4453 * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
4454 and __ftello instead of fileno, fread_unlocked and ftello.
4455
2581b98e
SP
44562012-11-12 Siddhesh Poyarekar <siddhesh@redhat.com>
4457
4458 * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
4459 GOT12.
4460 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
4461 Likewise.
4462 (_dl_start_user): Likewise.
4463 * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
4464
533bb7c2
SP
44652014-11-12 Carlos O'Donell <carlos@redhat.com>
4466 Siddhesh Poyarekar <siddhesh@redhat.com>
4467
4468 * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
4469 Move argv and envp down instead of moving argc up.
4470 * sysdeps/s390/s390-32/dl-sysdep.h: New file.
4471
fffa1cf8
LH
44722014-11-12 Leonhard Holz <leonhard.holz@web.de>
4473
4474 [BZ #17506]
4475 * test-skeleton.c (main): Return successful if one of
4476 EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
4477 * string/tst-strcoll-overflow.c: Define expected status.
4478
fb89b46d
TU
44792014-11-12 Tatiana Udalova <t.udalova@samsung.com>
4480
4481 [BZ #17475]
4482 * locale/iso-639.def: Define Bhili and Tulu language codes.
4483
5c40c3ba
AH
44842014-11-11 Alan Hayward <alan.hayward@arm.com>
4485
4486 * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
4487
b17fe01b 44882014-11-10 Renlin Li <Renlin.Li@arm.com>
80085def
RL
4489
4490 [BZ #17555]
4491 * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
4492
bd805071
AS
44932014-11-10 Andrew Senkevich <andrew.n.senkevich@gmail.com>
4494
4495 * configure.ac: Updated check of minimal required version to
4496 2.22.
4497 * manual/install.texi (Tools for Compilation): Updated version
4498 number.
4499 * configure: Regenerated.
4500 * INSTALL: Likewise.
4501
1400983e
AS
45022014-11-07 Andreas Schwab <schwab@linux-m68k.org>
4503
4504 * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
4505 __tls_get_addr.
4506
2c46a66a
JM
45072014-11-07 Joseph Myers <joseph@codesourcery.com>
4508
4509 * include/sys/wait.h (__libc_waitpid): Remove declaration.
4510 * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
4511 (__waitpid): Don't define as alias. Use libc_hidden_def not
4512 libc_hidden_weak.
4513 (waitpid): Define as alias of __waitpid.
4514 * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
4515 __waitpid.
4516 (__waitpid): Don't define as alias. Use libc_hidden_def not
4517 libc_hidden_weak.
4518 (waitpid): Define as alias of __waitpid.
4519 * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
4520 __libc_waitpid alias.
4521 * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
4522 * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
4523 Likewise.
4524 * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
4525 * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
4526 * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
4527 alias.
4528 * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
4529 __waitpid.
4530 (__waitpid): Don't define as alias. Use libc_hidden_def not
4531 libc_hidden_weak.
4532 (waitpid): Define as alias of __waitpid.
4533
da53d6db
CD
45342014-11-06 Carlos O'Donell <carlos@redhat.com>
4535
a2887bdb
CD
4536 * manual/llio.texi: Add comment that write safety has been
4537 fixed in Linux.
4538
da53d6db
CD
4539 * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
4540 (localplt-build-dso): Add elf/ld.so.
4541 * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
4542 i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
4543 and free for ld.so.
4544 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
4545 __libc_memalign, malloc, calloc, realloc, and free for ld.so.
4546 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
4547 Likewise.
4548 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
4549 Likewise.
4550 * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
4551 * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
4552 version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
4553 * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
4554 * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
4555 * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
4556 * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
4557 * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
4558 * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
4559 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
4560 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
4561
9cf27b8d
JM
45622014-11-05 Joseph Myers <joseph@codesourcery.com>
4563
4564 [BZ #14132]
4565 * include/libc-symbols.h (INTUSE): Remove macro.
4566 (INTDEF): Likewise.
4567 (INTVARDEF): Likewise.
4568 (_INTVARDEF): Likewise.
4569 (INTDEF2): Likewise.
4570 (INTVARDEF2): Likewise.
4571 * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
4572 rtld_hidden_def instead of INTVARDEF.
4573 * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
4574 (_dl_starting_up_internal): Remove declaration.
4575 (_dl_starting_up): Use rtld_hidden_proto.
4576 * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
4577 declaration.
4578 [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
4579 (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
4580 _dl_starting_up.
4581 * elf/dl-writev.h (_dl_writev): Likewise.
4582 * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
4583 (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
4584 _dl_starting_up_internal.
4585
af83568d
AZ
45862014-11-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4587
4588 * stdio-common/tst-fmemopen.c (do_test): Refactor to use
4589 test-skeleton.c.
4590
b01ee67c
WN
45912014-11-05 Will Newton <will.newton@linaro.org>
4592
4593 * benchtests/Makefile: (bench-malloc): Add malloc thread
4594 scalability benchmark.
4595 * benchtests/bench-malloc-threads.c: New file.
4596
be9d4ccc
RE
45972014-11-05 Richard Earnshaw <rearnsha@arm.com>
4598
4599 * sysdeps/aarch64/strchrnul.S: New file.
4600
7110166d
AZ
46012014-11-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4602
4603 * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
4604 definition.
4605 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
4606 Likwise.
4607 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
4608 Likewise.
4609 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
4610 Likewise.
4611 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
4612 Likewise.
4613 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
4614 Likewise.
4615
46162014-11-05 Arjun Shankar <arjun.is@lostca.se>
29955b5d
AS
4617
4618 * catgets/test-gencat.c: Use test-skeleton.c.
4619 * catgets/tst-catgets.c: Likewise.
4620 * csu/tst-empty.c: Likewise.
4621 * elf/tst-audit2.c: Likewise.
4622 * elf/tst-global1.c: Likewise.
4623 * elf/tst-pathopt.c: Likewise.
4624 * elf/tst-piemod1.c: Likewise.
4625 * elf/tst-tls10.c: Likewise.
4626 * elf/tst-tls11.c: Likewise.
4627 * elf/tst-tls12.c: Likewise.
4628 * gnulib/tst-gcc.c: Likewise.
4629 * iconvdata/tst-e2big.c: Likewise.
4630 * iconvdata/tst-loading.c: Likewise.
4631 * iconv/tst-iconv1.c: Likewise.
4632 * iconv/tst-iconv2.c: Likewise.
4633 * inet/test-inet6_opt.c: Likewise.
4634 * inet/tst-gethnm.c: Likewise.
4635 * inet/tst-network.c: Likewise.
4636 * inet/tst-ntoa.c: Likewise.
4637 * intl/tst-codeset.c: Likewise.
4638 * intl/tst-gettext2.c: Likewise.
4639 * intl/tst-gettext3.c: Likewise.
4640 * intl/tst-ngettext.c: Likewise.
4641 * intl/tst-translit.c: Likewise.
4642 * io/test-stat.c: Likewise.
4643 * libio/test-fmemopen.c: Likewise.
4644 * libio/tst-freopen.c: Likewise.
4645 * libio/tst-sscanf.c: Likewise.
4646 * libio/tst-ungetwc1.c: Likewise.
4647 * libio/tst-ungetwc2.c: Likewise.
4648 * libio/tst-widetext.c: Likewise.
4649 * localedata/tst-ctype.c: Likewise.
4650 * localedata/tst-digits.c: Likewise.
4651 * localedata/tst-leaks.c: Likewise.
4652 * localedata/tst-mbswcs1.c: Likewise.
4653 * localedata/tst-mbswcs2.c: Likewise.
4654 * localedata/tst-mbswcs3.c: Likewise.
4655 * localedata/tst-mbswcs4.c: Likewise.
4656 * localedata/tst-mbswcs5.c: Likewise.
4657 * localedata/tst-setlocale.c: Likewise.
4658 * localedata/tst-trans.c: Likewise.
4659 * localedata/tst-wctype.c: Likewise.
4660 * localedata/tst-xlocale1.c: Likewise.
4661 * login/tst-grantpt.c: Likewise.
4662 * malloc/tst-calloc.c: Likewise.
4663 * malloc/tst-malloc.c: Likewise.
4664 * malloc/tst-mallocstate.c: Likewise.
4665 * malloc/tst-mcheck.c: Likewise.
4666 * malloc/tst-mtrace.c: Likewise.
4667 * malloc/tst-obstack.c: Likewise.
4668 * math/atest-exp2.c: Likewise.
4669 * math/atest-exp.c: Likewise.
4670 * math/atest-sincos.c: Likewise.
4671 * math/test-matherr.c: Likewise.
4672 * math/test-misc.c: Likewise.
4673 * math/test-powl.c: Likewise.
4674 * math/tst-definitions.c: Likewise.
4675 * misc/tst-dirname.c: Likewise.
4676 * misc/tst-efgcvt.c: Likewise.
4677 * misc/tst-fdset.c: Likewise.
4678 * misc/tst-hsearch.c: Likewise.
4679 * misc/tst-mntent2.c: Likewise.
4680 * nptl/tst-sem7.c: Likewise.
4681 * nptl/tst-sem8.c: Likewise.
4682 * nptl/tst-sem9.c: Likewise.
4683 * nss/test-netdb.c: Likewise.
4684 * posix/tst-fnmatch.c: Likewise.
4685 * posix/tst-getlogin.c: Likewise.
4686 * posix/tst-gnuglob.c: Likewise.
4687 * posix/tst-mmap.c: Likewise.
4688 * pwd/tst-getpw.c: Likewise.
4689 * resolv/tst-inet_ntop.c: Likewise.
4690 * rt/tst-timer.c: Likewise.
4691 * stdio-common/test-fseek.c: Likewise.
4692 * stdio-common/test-popen.c: Likewise.
4693 * stdio-common/test-vfprintf.c: Likewise.
4694 * stdio-common/tst-cookie.c: Likewise.
4695 * stdio-common/tst-fileno.c: Likewise.
4696 * stdio-common/tst-gets.c: Likewise.
4697 * stdio-common/tst-obprintf.c: Likewise.
4698 * stdio-common/tst-perror.c: Likewise.
4699 * stdio-common/tst-sprintf2.c: Likewise.
4700 * stdio-common/tst-sprintf3.c: Likewise.
4701 * stdio-common/tst-sprintf.c: Likewise.
4702 * stdio-common/tst-swprintf.c: Likewise.
4703 * stdio-common/tst-tmpnam.c: Likewise.
4704 * stdio-common/tst-unbputc.c: Likewise.
4705 * stdio-common/tst-wc-printf.c: Likewise.
4706 * stdlib/tst-environ.c: Likewise.
4707 * stdlib/tst-fmtmsg.c: Likewise.
4708 * stdlib/tst-limits.c: Likewise.
4709 * stdlib/tst-rand48-2.c: Likewise.
4710 * stdlib/tst-rand48.c: Likewise.
4711 * stdlib/tst-random2.c: Likewise.
4712 * stdlib/tst-random.c: Likewise.
4713 * stdlib/tst-strtol.c: Likewise.
4714 * stdlib/tst-strtoll.c: Likewise.
4715 * stdlib/tst-tls-atexit.c: Likewise.
4716 * stdlib/tst-xpg-basename.c: Likewise.
4717 * string/test-ffs.c: Likewise.
4718 * string/tst-bswap.c: Likewise.
4719 * string/tst-inlcall.c: Likewise.
4720 * string/tst-strtok.c: Likewise.
4721 * string/tst-strxfrm.c: Likewise.
4722 * sysdeps/x86_64/tst-audit10.c: Likewise.
4723 * sysdeps/x86_64/tst-audit3.c: Likewise.
4724 * sysdeps/x86_64/tst-audit4.c: Likewise.
4725 * sysdeps/x86_64/tst-audit5.c: Likewise.
4726 * time/tst-ftime_l.c: Likewise.
4727 * time/tst-getdate.c: Likewise.
4728 * time/tst-mktime3.c: Likewise.
4729 * time/tst-mktime.c: Likewise.
4730 * time/tst-posixtz.c: Likewise.
4731 * time/tst-strptime2.c: Likewise.
4732 * time/tst-strptime3.c: Likewise.
4733 * wcsmbs/tst-btowc.c: Likewise.
4734 * wcsmbs/tst-mbrtowc.c: Likewise.
4735 * wcsmbs/tst-mbsrtowcs.c: Likewise.
4736 * wcsmbs/tst-wchar-h.c: Likewise.
4737 * wcsmbs/tst-wcpncpy.c: Likewise.
4738 * wcsmbs/tst-wcrtomb.c: Likewise.
4739 * wcsmbs/tst-wcsnlen.c: Likewise.
4740 * wcsmbs/tst-wcstof.c: Likewise.
4741
2004e7fb
JM
47422014-11-04 Joseph Myers <joseph@codesourcery.com>
4743
ab97ee8f
JM
4744 [BZ #14132]
4745 * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
4746 INTDEF.
4747 * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
4748 declaration.
4749 (_dl_mcount): Use rtld_hidden_proto.
4750 * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
4751 _dl_mcount.
4752 * elf/rtld.c (_rtld_global_ro): Likewise.
4753
c5684fdb
JM
4754 [BZ #14132]
4755 * elf/dl-init.c (_dl_init): Don't use INTDEF.
4756 * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
4757 of _dl_init_internal.
4758 * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
4759 * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
4760 * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
4761 * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
4762 * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
4763 * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
4764 * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
4765 * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
4766 * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
4767 * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
4768 * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
4769 * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
4770 * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
4771 * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
4772 * sysdeps/tile/dl-start.S (_start): Likewise.
4773 * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
4774 * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
4775
4243cbea
JM
4776 [BZ #14132]
4777 * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
4778 [IS_IN_rtld] (_dl_argv_internal): Do not declare.
4779 (rtld_progname): Make macro definition unconditional.
4780 * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
4781 INTDEF.
4782 (dlmopen_doit): Do not use INTUSE with _dl_argv.
4783 (dl_main): Likewise.
4784 * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
4785 * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
4786 instead of _dl_argv_internal.
4787 * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
4788 __GI__dl_argv instead of INTUSE(_dl_argv).
4789 * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
4790 __GI__dl_argv instead of _dl_argv_internal.
4791
2004e7fb
JM
4792 * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
4793 * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
4794 macro.
4795 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
4796 * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
4797 New macro.
4798 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
4799 * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
4800 macro.
4801 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
4802 * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
4803
97827bfc
AS
48042014-11-04 Andreas Schwab <schwab@suse.de>
4805
4806 * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
4807
5e4df284
AZ
48082014-11-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4809
4810 * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
4811 mtvsrd instruction in binary form.
4812
04b76b5a
AS
48132014-11-03 Andreas Schwab <schwab@suse.de>
4814
4815 [BZ #17522]
4816 * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
4817 for less than MB_LEN_MAX use a local buffer of that size.
4818 * libio/tst-fputws.c: New file.
4819 * libio/Makefile (tests): Add tst-fputws.
4820
4c6da7da
JM
48212014-11-01 Jose E. Marchesi <jose.marchesi@oracle.com>
4822
4823 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
4824 the size of the fpu_fr.fpu_dregs[] array.
4825
1679ba8e
JM
48262014-11-01 Joseph Myers <joseph@codesourcery.com>
4827
4828 * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
4829 (__nanosleep): Do not define as alias.
4830 (nanosleep): Define as alias of __nanosleep.
4831 * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
4832 __libc_nanosleep name.
4833
2626c183
JM
48342014-10-31 Joseph Myers <joseph@codesourcery.com>
4835
4836 * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
4837 install.texi in comment.
4838
7f981fc2
TR
48392014-10-31 Torvald Riegel <triegel@redhat.com>
4840
4841 * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
4842 * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
4843 ... add here and use lwsync or sync ...
4844 * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
4845 ... and add here using lwsync.
4846
d6f373d2
MF
48472014-10-31 Matthew Fortune <matthew.fortune@imgtec.com>
4848
4849 * elf/dl-machine-reject-phdr.h: New file.
4850 * elf/dl-load.c: #include that.
4851 (open_verify): Call elf_machine_reject_phdr_p and ignore the file
4852 if that returned true.
4853
67c37987
RM
48542014-10-31 Roland McGrath <roland@hack.frob.com>
4855
4856 [BZ #17496]
4857 * Makerules: Move gnu/lib-names.h generation chunk up, to right after
4858 gen-as-const-headers chunk. Add a big scare comment after the last
4859 safe place to touch before-compile.
4860
94a42455 48612014-10-31 Joseph Myers <joseph@codesourcery.com>
f62ff286 4862
f3f5d895
JM
4863 * manual/install.texi (Tools for Compilation): Update autoconf
4864 version requirements.
4865 * INSTALL: Regenerated.
4866
f62ff286
JM
4867 * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
4868 * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
4869 (__libc_pselect): Likewise.
94a42455
JM
4870
4871 [BZ #14138]
4872 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
4873 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
4874 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
4875 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
4876
ff9dbdc0
TR
48772014-10-31 Torvald Riegel <triegel@redhat.com>
4878
4879 * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
4880 correct barrier instruction.
4881 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
4882 Likewise.
4883 * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
4884 Likewise.
4885
b4f66884
RM
48862014-10-30 Roland McGrath <roland@hack.frob.com>
4887
4888 * include/ctype.h: Include <ctype/ctype.h> first thing rather than
4889 after defining inlines. Instead, just use parens to defeat macro
4890 expansion of __isctype in its declaration.
4891
e19c95fd
JM
48922014-10-30 Joseph Myers <joseph@codesourcery.com>
4893
4894 * include/sys/uio.h (__libc_readv): Remove declaration.
4895 (__libc_writev): Likewise.
4896 * misc/readv.c (__libc_readv): Rename to __readv.
4897 (__readv): Do not define as alias.
4898 (readv): Define as alias of __readv.
4899 * misc/writev.c (__libc_writev): Rename to __writev.
4900 (__writev): Do not define as alias.
4901 (writev): Define as alias of __writev.
4902 * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
4903 (__readv): Do not define as alias.
4904 (readv): Define unconditionally as alias of __readv.
4905 * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
4906 (__writev): Do not define as alias.
4907 (writev): Define unconditionally as alias of __writev.
4908 * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
4909 name.
4910 (writev): Do not define __libc_writev name.
4911
65b00b6c
RM
49122014-10-30 Roland McGrath <roland@hack.frob.com>
4913
4914 * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
4915 (convert_charseq): New function, broken out of ...
4916 (use_from_charmap): ... here. Call it.
4917 (use_to_charmap): Use convert_charseq and free instead of duplicating
4918 its code with a variable-length stack struct.
4919
d4e157aa
JM
49202014-10-30 Joseph Myers <joseph@codesourcery.com>
4921
4922 * include/fcntl.h (__libc_creat): Remove declaration.
4923 * io/creat.c (__libc_creat): Rename to creat.
4924 (creat): Do not define as alias.
4925 * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
4926 of creat instead of __libc_creat.
4927 * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
4928 to creat.
4929 (creat): Do not define as alias.
4930 [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
4931 __libc_creat.
4932 * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
4933 __libc_creat name.
4934 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
4935 Likewise.
4936
0c6891a0
CD
49372014-10-29 Carlos O'Donell <carlos@redhat.com>
4938
4939 * manual/llio.texi: Add comments discussing why write() may be
4940 considered MT-unsafe on Linux.
4941
cc00cece
CD
49422014-10-28 Carlos O'Donell <carlos@redhat.com>
4943
4944 * dl-load.c (local_strdup): Remove.
4945 (expand_dynamic_string_token): Use __strdup.
4946 (decompose_rpath): Likewise.
4947 (_dl_map_object): Likewise.
4948
51e623f2
JM
49492014-10-28 Joseph Myers <joseph@codesourcery.com>
4950
4951 [BZ #14132]
4952 * sysdeps/generic/unwind-dw2-fde.c
4953 (__register_frame_info_bases_internal): Do not declare.
4954 (__register_frame_info_table_bases_internal): Likewise.
4955 (__deregister_frame_info_bases_internal): Likewise.
4956 (__register_frame_info_bases): Declare and use hidden_proto before
4957 definition. Use hidden_def instead of INTDEF.
4958 (__register_frame_info_table_bases): Likewise.
4959 (__deregister_frame_info_bases): Likewise.
4960 (__register_frame_info): Do not use INTUSE.
4961 (__register_frame): Likewise.
4962 (__register_frame_info_table): Likewise.
4963 (__register_frame_table): Likewise.
4964 (__deregister_frame_info): Likewise.
4965 (__deregister_frame): Likewise.
4966
03d41216
GC
49672014-10-27 Gratian Crisan <gratian.crisan@ni.com>
4968
4969 * sysdeps/unix/sysv/linux/arm/kernel-features.h
4970 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
4971 not undefine.
4972 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
4973 Likewise.
4974 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
4975 Likewise.
4976
a4b3624d
JM
49772014-10-27 Joseph Myers <joseph@codesourcery.com>
4978
4979 [BZ #14138]
4980 * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
4981 * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
4982 * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
4983 * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
4984 * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
4985 * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
4986 * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
4987 * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
4988 * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
4989 * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
4990 * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
4991 * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
4992 * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
4993 syscall.
4994 (setfsuid): Likewise.
4995 * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
4996 (setfsuid): Likewise.
4997 * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
4998 (setfsuid): Likewise.
4999 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
5000 Likewise.
5001 (setfsuid): Likewise.
5002 * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
5003 (setfsuid): Likewise.
5004 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
5005 Likewise.
5006 (setfsuid): Likewise.
5007
3574f2fd
AS
50082014-10-27 Andreas Schwab <schwab@suse.de>
5009
5010 [BZ #17501]
5011 * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
5012 check for Slow_SSE4_2 feature bit.
5013 * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
5014 * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
5015 * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
5016 Likewise. Fix check for Fast_Unaligned_Load feature bit.
5017
70996a37
RM
50182014-10-24 Roland McGrath <roland@hack.frob.com>
5019
461a7b1e
RM
5020 * configure.ac: Validate compiler version with a empirical test of
5021 __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
5022 $CC -v output.
5023 * configure: Regenerated.
5024
70996a37
RM
5025 * inet/htons.c (htons): Prototypify.
5026 * inet/htonl.c (htonl): Likewise.
5027
e80514b5
WD
50282014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5029
5030 * string/strncat.c (strncat): Improve performance by using strlen.
5031
6e46de42
WD
50322014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5033
5034 * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
5035
6a9ad2fa
WD
50362014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5037
5038 * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
5039 Call libc_fetestexcept_aarch64.
5040
1c8810ed
WD
50412014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5042
5043 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
5044 Call libc_feholdexcept_aarch64.
5045
8b1af712
WD
50462014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5047
5048 * sysdeps/aarch64/fpu/fegetround.c (fegetround):
5049 Call get_rounding_mode.
5050
a7b00c11
WD
50512014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5052
5053 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
5054 Simplify logic.
5055
3a84f1a6
WD
50562014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
5057
5058 * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
5059 Simplify logic.
5060
48eb7a94
JM
50612014-10-24 Joseph Myers <joseph@codesourcery.com>
5062
c8bc4038
JM
5063 [BZ #14138]
5064 * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
5065 * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
5066 * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
5067 * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
5068 * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
5069 * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
5070 * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
5071 * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
5072 * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
5073 * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
5074 * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
5075 * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
5076 * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
5077 * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
5078 * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
5079 * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
5080 * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
5081 * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
5082 * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
5083 * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
5084 * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
5085 * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
5086 * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
5087 * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
5088 * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
5089 * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
5090 * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
5091 * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
5092 * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
5093 * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
5094 * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
5095 * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
5096 * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
5097 * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
5098 * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
5099 * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
5100 * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
5101 * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
5102 * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
5103 * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
5104 * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
5105 syscall.
5106 (geteuid): Likewise.
5107 (getgid): Likewise.
5108 (getuid): Likewise.
5109 (getresgid): Likewise.
5110 (getresuid): Likewise.
5111 (getgroups): Likewise.
5112 * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
5113 (geteuid): Likewise.
5114 (getgid): Likewise.
5115 (getuid): Likewise.
5116 (getresgid): Likewise.
5117 (getresuid): Likewise.
5118 (getgroups): Likewise.
5119 * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
5120 (geteuid): Likewise.
5121 (getgid): Likewise.
5122 (getuid): Likewise.
5123 (getresgid): Likewise.
5124 (getresuid): Likewise.
5125 (getgroups): Likewise.
5126 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
5127 Likewise.
5128 (geteuid): Likewise.
5129 (getgid): Likewise.
5130 (getuid): Likewise.
5131 (getresgid): Likewise.
5132 (getresuid): Likewise.
5133 (getgroups): Likewise.
5134 * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
5135 (geteuid): Likewise.
5136 (getgid): Likewise.
5137 (getuid): Likewise.
5138 (getresgid): Likewise.
5139 (getresuid): Likewise.
5140 (getgroups): Likewise.
5141 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
5142 Likewise.
5143 (geteuid): Likewise.
5144 (getgid): Likewise.
5145 (getuid): Likewise.
5146 (getgroups): Likewise.
5147
48eb7a94
JM
5148 [BZ #14138]
5149 * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
5150 * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
5151 * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
5152 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
5153 * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
5154 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
5155 * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
5156 * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
5157 * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
5158 * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
5159 * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
5160 * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
5161 * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
5162 __chown.
5163 * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
5164 (lchown): Likewise.
5165 (fchown): Likewise.
5166 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
5167 Likewise.
5168 (lchown): Likewise.
5169 (fchown): Likewise.
5170 * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
5171 (lchown): Likewise.
5172 (fchown): Likewise.
5173 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
5174 Likewise.
5175 (lchown): Likewise.
5176 (fchown): Likewise.
5177
ea9a7c8b
WD
51782014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
5179
5180 * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
5181 Simplify logic.
5182
e226de33
WD
51832014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
5184
5185 * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
5186 Cleanup logic.
5187
6e3d8ed3
WD
51882014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
5189
5190 * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
5191 Remove unused include.
5192
eb04247d
WD
51932014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
5194
5195 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
5196 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
5197 * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
5198 * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
5199
13d84554
CD
52002014-10-23 Carlos O'Donell <carlos@systemhalted.org>
5201 Helge Deller <deller@gmx.de>
5202
5203 [BZ #17508]
5204 * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
5205 Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
5206 Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
5207
15f9c5df
JM
52082014-10-23 Joseph Myers <joseph@codesourcery.com>
5209
5210 [BZ #14132]
5211 * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
5212 Remove macro definition.
5213 (__ashrdi3_v_glibc20): Likewise.
5214 (__lshrdi3_v_glibc20): Likewise.
5215 (__cmpdi2_v_glibc20): Likewise.
5216 (__ucmpdi2_v_glibc20): Likewise.
5217 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
5218 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
5219 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
5220 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
5221 [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
5222 [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
5223
c6dfed24
RM
52242014-10-22 Roland McGrath <roland@hack.frob.com>
5225
5226 * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
5227 old GNU extension [0] syntax.
5228 * nscd/nscd_helper.c (open_socket): Use a flexible array member and
5229 alloca rather than an array member with variable length.
5230 * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
5231 * nscd/nscd.c (invalidate_db): New function, broken out of ...
5232 (parse_opt): ... here. Likewise use alloca there.
5233 Validate the -i argument before checking for rootness.
5234 (send_shutdown): New function, broken out of ...
5235 (parse_opt): ... here.
5236
8c2b1ed8
RM
52372014-10-22 Roland McGrath <roland@hack.frob.com>
5238
5239 * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
5240 macro to get at the _rt_local_ro field.
5241 [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
5242 ([PIC] case) or _dl_hwcap ([!PIC] case).
5243 * sysdeps/arm/setjmp.S: Likewise.
5244
5245 * config.h.in (ARM_PCREL_MOVW_OK): New macro.
5246 * sysdeps/arm/configure.ac: New check to define it.
5247 * sysdeps/arm/configure: Regenerated.
5248 * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
5249 (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
5250 (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
5251 depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
5252 (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
5253 Use move/movt pair instead of a load.
5254 (LDST_GLOBAL): Macro removed.
5255 (LDR_GLOBAL): New macro replaces it.
5256 (LDR_HIDDEN): New macro.
5257 (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
5258 Use LDR_HIDDEN instead for __pointer_chk_guard_local.
5259
5260 * setjmp/tst-setjmp-static.c: New file.
5261 * setjmp/Makefile (tests): Add it.
5262 (tests-static): New variable.
5263
b5af9297
MR
52642014-10-22 Maciej W. Rozycki <macro@codesourcery.com>
5265
5266 [BZ #17485]
5267 * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
5268
a13d0d74
JM
52692014-10-21 Joseph Myers <joseph@codesourcery.com>
5270
5271 [BZ #14132]
5272 * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
5273
f05e73f6
RM
52742014-10-21 Roland McGrath <roland@hack.frob.com>
5275
5276 * nptl/version.c (__nptl_main): Call __libc_write, not __write.
5277
6ab1d1ea
RM
52782014-10-20 Roland McGrath <roland@hack.frob.com>
5279
5280 * io/fts.c (dirent_not_directory): New function.
5281 (fts_build): Call it.
5282
ab49e763
RM
52832014-10-20 Roland McGrath <roland@hack.frob.com>
5284
e436eb79
RM
5285 * nptl/version.c (__nptl_main): Use normal __write rather than
5286 INTERNAL_SYSCALL.
5287 (banner): Update copyright years.
5288
6af246cf
RM
5289 * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
5290 gettimeofday.
5291 * nptl/pthread_rwlock_timedwrlock.c: Likewise.
5292 * nptl/pthread_cond_timedwait.c: Likewise.
5293 * nptl/pthread_mutex_timedlock.c: Likewise.
5294 * nptl/sem_timedwait.c: Likewise.
5295
ab49e763
RM
5296 * sysdeps/nptl/bits/libc-lock.h
5297 [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
5298 (__libc_lock_init_recursive): Return void, not 0.
5299 * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
5300 (__libc_rwlock_init): Likewise.
5301 * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
5302
f50277c1
TR
53032014-10-20 Torvald Riegel <triegel@redhat.com>
5304
5305 [BZ #15215]
5306 * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
5307 (__pthread_once_slow): ... here.
5308 * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
5309 * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
5310
63668b70
TR
53112014-10-20 Torvald Riegel <triegel@redhat.com>
5312
5313 [BZ #15215]
5314 * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
5315 __PTHREAD_ONCE_FORK_GEN_INCR): New.
5316 * sysdeps/nptl/fork.c (__libc_fork): Use them.
5317 * nptl/pthread_once.c (__pthread_once): Likewise.
5318 Update comments.
5319
42b7f5d4
JM
53202014-10-20 Joseph Myers <joseph@codesourcery.com>
5321
5322 [BZ #14138]
5323 * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
5324 name.
5325 (writev): Use __libc_writev as strong name.
5326 * sysdeps/unix/sysv/linux/readv.c: Remove file.
5327 * sysdeps/unix/sysv/linux/writev.c: Likewise.
5328
b0643088
RM
53292014-10-17 Roland McGrath <roland@hack.frob.com>
5330
114c4e09
RM
5331 * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
5332
674b8978
RM
5333 * sysdeps/i386/nptl/tls.h
5334 (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
5335 [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
5336 New macros.
5337 * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
5338 (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
5339 * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
5340 Call SETUP_THREAD_SYSINFO instead of doing an assignment.
5341 * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
5342 Call CHECK_THREAD_SYSINFO instead of doing an assert.
5343
184ee940
RM
5344 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
5345 Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
5346 on [__NR_futex].
5347 * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
5348 broken out of ...
5349 (__pthread_mutex_init): ... here. Call it.
5350 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
5351 Conditionalize PI cases on [__NR_futex].
5352 * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
5353 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
5354 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
5355
327ae257
RM
5356 * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
5357 conditional on [SIGSETXID].
5358 (sigcancel_handler): Make definition conditional on [SIGCANCEL].
5359 (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
5360 is defined. Likewise for SIGSETXID.
5361 * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
5362 Conditionalize definitions on [SIGSETXID].
5363 (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
5364 * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
5365 unblocking on [SIGCANCEL].
5366
b0643088
RM
5367 * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
5368 [__NR_set_robust_list].
5369
33cc770b
SP
53702014-10-17 Siddhesh Poyarekar <siddhesh@redhat.com>
5371
5372 * string/strcoll_l.c (get_next_seq): Fix up formatting.
5373 (do_compare): Likewise.
5374
0742aef6
LH
53752014-10-17 Leonhard Holz <leonhard.holz@web.de>
5376
5377 [BZ #15884]
5378 * string/strcoll_l.c: Don't include stdio.h.
5379 (coll_seq): Remove members idxarr and rulearr.
5380 (get_next_seq_cached): Remove function.
5381 (get_next_seq): Likewise.
5382 (get_next_seq_nocache): Rename to get_next_seq.
5383 (do_compare): Remove function.
5384 (do_compare_nocache): Rename to do_compare.
5385 (STRCOLL): Remove weight and rules cache.
5386
ee54ce44
RM
53872014-10-16 Roland McGrath <roland@hack.frob.com>
5388
5389 * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
5390 * sysdeps/arm/sfp-machine.h: ... to here.
5391 * sysdeps/arm/Implies: Remove arm/soft-fp.
5392
a75d3b02
JM
53932014-10-14 Joseph Myers <joseph@codesourcery.com>
5394
5395 * conform/data/sys/utsname.h-data (*_t): Allow.
5396 * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
5397 [POSIX] (WEXITED): Do not expect constant.
5398 [POSIX] (WSTOPPED): Likewise.
5399 [POSIX] (WNOHANG): Likewise.
5400 [POSIX] (WNOWAIT): Likewise.
5401 [POSIX] (siginfo_t): Do not expect type or elements.
5402 [POSIX] (pid_t): Do not expect type.
5403 [POSIX] (signal.h): Do not allow header.
5404 [POSIX] (sys/resource.h): Likewise.
5405 [POSIX] (si_*): Do not allow pattern.
5406 [POSIX] (W*): Likewise.
5407 [POSIX] (P_*): Likewise.
5408 [POSIX] (BUS_*): Likewise.
5409 [POSIX] (CLD_*): Likewise.
5410 [POSIX] (FPE_*): Likewise.
5411 [POSIX] (ILL_*): Likewise.
5412 [POSIX] (POLL_*): Likewise.
5413 [POSIX] (SEGV_*): Likewise.
5414 [POSIX] (SI_*): Likewise.
5415 [POSIX] (TRAP_*): Likewise.
5416 * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
5417 variable.
5418
fda389c8
SP
54192014-10-14 Paul Pluzhnikov <ppluzhnikov@google.com>
5420
5421 [BZ #12926]
5422 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
5423 infinite loop when __recvmsg returns 0.
5424
6bc6bd3b
JM
54252014-10-10 Joseph Myers <joseph@codesourcery.com>
5426
fcb32af1
JM
5427 * CANCEL-FCT-WAIVE: Remove file.
5428 * CANCEL-FILE-WAIVE: Likewise.
5429
6bc6bd3b
JM
5430 [BZ #14132]
5431 * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
5432 instead of INTVARDEF.
5433 (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
5434 * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
5435 rtld_hidden_data_def instead of INTVARDEF.
5436 (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
5437 * elf/dl-deps.c (expand_dst): Likewise.
5438 * elf/dl-load.c (_dl_dst_count): Likewise.
5439 (_dl_dst_substitute): Likewise.
5440 (decompose_rpath): Likewise.
5441 (_dl_init_paths): Likewise.
5442 (open_path): Likewise.
5443 (_dl_map_object): Likewise.
5444 * elf/rtld.c (dl_main): Likewise.
5445 (process_dl_audit): Likewise.
5446 (process_envvars): Likewise.
5447 * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
5448 Remove declaration.
5449 (__libc_enable_secure): Use rtld_hidden_proto.
5450
b8c80a7e
KS
54512014-10-09 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
5452
5453 * elf/dl-load.c
5454 (add_path): New function broken out of _dl_rtld_di_serinfo.
5455 (_dl_rtld_di_serinfo): Remove that nested function. Update call sites.
5456
ff12c11f
JM
54572014-10-09 Joseph Myers <joseph@codesourcery.com>
5458
5c0508a3
JM
5459 * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
5460 parentheses around macro arguments.
5461 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
5462 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
5463 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
5464 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
5465 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
5466 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
5467 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
5468 [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
5469 [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
5470 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
5471 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
5472 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
5473 [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
5474 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
5475 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
5476 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
5477 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
5478 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
5479 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
5480 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
5481 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
5482 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
5483 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
5484 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
5485 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
5486 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
5487 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
5488 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
5489 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
5490 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
5491 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
5492 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
5493 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
5494 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
5495 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
5496 * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
5497 Likewise.
5498 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
5499 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
5500 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
5501 [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
5502 [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
5503 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
5504 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
5505 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
5506 [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
5507 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
5508 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
5509 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
5510 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
5511 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
5512 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
5513 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
5514 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
5515 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
5516 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
5517 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
5518 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
5519 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
5520 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
5521 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
5522 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
5523 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
5524 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
5525 * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
5526 (_FP_FRAC_SRS_1): Likewise.
5527 (_FP_FRAC_CLZ_1): Likewise.
5528 (_FP_MUL_MEAT_1_imm): Likewise.
5529 (_FP_MUL_MEAT_1_wide): Likewise.
5530 (_FP_MUL_MEAT_1_hard): Likewise.
5531 (_FP_SQRT_MEAT_1): Likewise.
5532 (_FP_FRAC_ASSEMBLE_1): Likewise.
5533 (_FP_FRAC_DISASSEMBLE_1): Likewise.
5534 * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
5535 (__FP_CLZ_2): Likewise.
5536 (_FP_MUL_MEAT_2_wide): Likewise.
5537 (_FP_MUL_MEAT_2_wide_3mul): Likewise.
5538 (_FP_MUL_MEAT_2_gmp): Likewise.
5539 (_FP_MUL_MEAT_2_120_240_double): Likewise.
5540 (_FP_SQRT_MEAT_2): Likewise.
5541 (_FP_FRAC_ASSEMBLE_2): Likewise.
5542 (_FP_FRAC_DISASSEMBLE_2): Likewise.
5543 * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
5544 (_FP_FRAC_CLZ_4): Likewise.
5545 (_FP_MUL_MEAT_4_wide): Likewise.
5546 (_FP_MUL_MEAT_4_gmp): Likewise.
5547 (_FP_SQRT_MEAT_4): Likewise.
5548 (_FP_FRAC_ASSEMBLE_4): Likewise.
5549 (_FP_FRAC_DISASSEMBLE_4): Likewise.
5550 * soft-fp/op-common.h (_FP_CMP): Likewise.
5551 (_FP_CMP_EQ): Likewise.
5552 (_FP_CMP_UNORD): Likewise.
5553 (_FP_TO_INT): Likewise.
5554 (_FP_FROM_INT): Likewise.
5555 [!__FP_CLZ] (__FP_CLZ): Likewise.
5556 (_FP_DIV_HELP_imm): Likewise.
5557 * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
5558 Likewise.
5559 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
5560 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
5561 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
5562 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
5563 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
5564 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
5565 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
5566 [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
5567 [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
5568 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
5569 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
5570 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
5571 [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
5572 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
5573 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
5574 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
5575 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
5576 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
5577 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
5578 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
5579 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
5580 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
5581 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
5582 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
5583 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
5584 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
5585 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
5586 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
5587 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
5588 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
5589 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
5590 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
5591 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
5592 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
5593 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
5594 * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
5595 (FP_UNPACK_RAW_SP): Likewise.
5596 (FP_PACK_RAW_S): Likewise.
5597 (FP_PACK_RAW_SP): Likewise.
5598 (FP_UNPACK_S): Likewise.
5599 (FP_UNPACK_SP): Likewise.
5600 (FP_UNPACK_SEMIRAW_S): Likewise.
5601 (FP_UNPACK_SEMIRAW_SP): Likewise.
5602 (FP_PACK_S): Likewise.
5603 (FP_PACK_SP): Likewise.
5604 (FP_PACK_SEMIRAW_S): Likewise.
5605 (FP_PACK_SEMIRAW_SP): Likewise.
5606 (_FP_SQRT_MEAT_S): Likewise.
5607 (FP_CMP_S): Likewise.
5608 (FP_CMP_EQ_S): Likewise.
5609 (FP_CMP_UNORD_S): Likewise.
5610 (FP_TO_INT_S): Likewise.
5611 (FP_FROM_INT_S): Likewise.
5612
a736ec37
JM
5613 * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
5614
ff12c11f
JM
5615 * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
5616 (FP_EX_INVALID_IMZ): Likewise.
5617 (FP_EX_INVALID_IMZ_FMA): Likewise.
5618 (FP_EX_INVALID_ISI): Likewise.
5619 (FP_EX_INVALID_ZDZ): Likewise.
5620 (FP_EX_INVALID_IDI): Likewise.
5621 (FP_EX_INVALID_SQRT): Likewise.
5622 (FP_EX_INVALID_CVI): Likewise.
5623 (FP_EX_INVALID_VC): Likewise.
5624 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
5625 "invalid" exceptions.
5626 (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
5627 (_FP_ADD_INTERNAL): Likewise.
5628 (_FP_MUL): Likewise.
5629 (_FP_FMA): Likewise.
5630 (_FP_DIV): Likewise.
5631 (_FP_CMP_CHECK_NAN): Likewise.
5632 (_FP_SQRT): Likewise.
5633 (_FP_TO_INT): Likewise.
5634 (FP_EXTEND): Likewise.
5635
b6dcfe8c
AM
56362014-10-09 Allan McRae <allan@archlinux.org>
5637
5638 * po/fr.po: Update French translation from translation project.
5639
2d6a47ba
JM
56402014-10-09 Joseph Myers <joseph@codesourcery.com>
5641
cb831245
JM
5642 [BZ #14132]
5643 * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
5644 of INTDEF.
5645 * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
5646 (__cxa_atexit): Use libc_hidden_proto.
5647 [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
5648
5deeb190
JM
5649 [BZ #14132]
5650 * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
5651 declaration.
5652 [!_ISOMAC] (__iswdigit_l_internal): Likewise.
5653 [!_ISOMAC] (__iswspace_l_internal): Likewise.
5654 [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
5655 [!_ISOMAC] (__iswctype_internal): Likewise.
5656 * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
5657 * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
5658 alias.
5659 (fcntl): Remove __fcntl_internal alias.
5660 * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
5661 __connect_internal alias.
5662 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
5663 Likewise.
5664
454ac701
JM
5665 * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
5666 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
5667 FP_DENORM_ZERO.
5668 (_FP_CHECK_FLUSH_ZERO): New macro.
5669 (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
5670 (_FP_CMP): Likewise.
5671 (_FP_CMP_EQ): Likewise.
5672 (_FP_TO_INT): Do not set inexact for subnormal arguments if
5673 FP_DENORM_ZERO.
5674 (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
5675 (FP_TRUNC): Likewise.
5676
0022e688
JM
5677 * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
5678 treated as invalid conversion, not as normal exponent.
5679
73e28d9c
JM
5680 * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
5681 (_FP_CMP): Add extra argument EX. Call _FP_CMP_CHECK_NAN.
5682 (_FP_CMP_EQ): Likewise.
5683 (_FP_CMP_UNORD): Likewise.
5684 * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
5685 (FP_CMP_EQ_D): Likewise.
5686 (FP_CMP_UNORD_D): Likewise.
5687 * soft-fp/extended.h (FP_CMP_E): Likewise.
5688 (FP_CMP_EQ_E): Likewise.
5689 (FP_CMP_UNORD_E): Likewise.
5690 * soft-fp/quad.h (FP_CMP_Q): Likewise.
5691 (FP_CMP_EQ_Q): Likewise.
5692 (FP_CMP_UNORD_Q): Likewise.
5693 * soft-fp/single.h (FP_CMP_S): Likewise.
5694 (FP_CMP_EQ_S): Likewise.
5695 (FP_CMP_UNORD_S): Likewise.
5696 * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
5697 * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
5698 * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
5699 * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
5700 * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
5701 * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
5702 * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
5703 * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
5704 * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
5705 * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
5706 * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
5707 * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
5708 * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
5709 to FP_CMP_Q.
5710 * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
5711 FP_CMP_Q.
5712 * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
5713 * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
5714 FP_CMP_EQ_Q.
5715 * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
5716 FP_CMP_Q.
5717 * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
5718 * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
5719 * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
5720 * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
5721 FP_CMP_EQ_Q.
5722 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
5723 FP_CMP_Q.
5724 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
5725 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
5726 FP_CMP_EQ_Q.
5727 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
5728 FP_CMP_Q.
5729 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
5730 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
5731 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
5732 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
5733 FP_CMP_EQ_Q.
5734
43059f42
JM
5735 * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
5736 a subnormal result, set the underflow exception if trapping on
5737 underflow is enabled.
5738 * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
5739 (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
5740 [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
5741 redefine to 0.
5742 * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
5743 * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
5744 * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
5745 * soft-fp/extendxftf2.c (__extendxftf2): Use
5746 FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
5747
2d6a47ba
JM
5748 * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
5749 * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
5750 (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5751 FP_HANDLE_EXCEPTIONS.
5752 * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
5753 (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5754 FP_HANDLE_EXCEPTIONS.
5755 * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
5756 (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5757 FP_HANDLE_EXCEPTIONS.
5758 * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
5759 (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
5760 FP_HANDLE_EXCEPTIONS.
5761
620f462e
JM
57622014-10-08 Joseph Myers <joseph@codesourcery.com>
5763
5764 [BZ #14132]
5765 * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
5766 * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
5767 use INTUSE.
5768 [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
5769 * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
5770 Remove alias.
5771 (__adjtimex): Define using libc_hidden_ver.
5772 * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
5773 Remove declaration.
5774 (ntp_gettime): Call __adjtimex directly.
5775 * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
5776 Remove declaration.
5777 (ntp_gettimex): Call __adjtimex directly.
5778 * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
5779 __adjtimex_internal alias.
5780
c763c5d2
RM
57812014-10-08 Roland McGrath <roland@hack.frob.com>
5782
5783 [BZ #17460]
5784 * nscd/nscd.c (more_help): Rewrite list of tables collection
5785 using xstrdup and asprintf.
5786
5787 * nscd/nscd_conf.c: Remove local xstrdup declaration.
5788
7b8fb2b8
RM
57892014-10-08 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
5790 Roland McGrath <roland@hack.frob.com>
5791
5792 * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
5793 (do_lookup_unique): ... local function 'enter' here; update callers.
5794
abb280f7
JM
57952014-10-06 Joseph Myers <joseph@codesourcery.com>
5796
f7b42517
JM
5797 * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
5798 compat_symbol calls on [SHARED].
5799 * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
5800 * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
5801 Remove.
5802 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5803 * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
5804 (oldsetrlimit): Remove.
5805 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5806 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
5807 (lchown): New syscall entry.
5808 (oldsetrlimit): Remove.
5809 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5810 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
5811 (oldsetrlimit): Remove.
5812 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
5813
abb280f7
JM
5814 [BZ #14138]
5815 * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
5816 * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
5817 * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
5818 * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
5819 * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
5820 * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
5821 (fchown): Likewise.
5822 * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
5823 (fchown): Likewise.
5824 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
5825 Likewise.
5826
47d46237
AZ
58272014-10-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
5828
5829 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
5830 * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
5831 (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
5832 __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
5833 * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
5834 Likewise.
5835 (__old_sem_post): Likewise.
5836
58372014-10-06 Chris Metcalf <cmetcalf@tilera.com>
1c4c1a6f 5838
845a7343
CM
5839 * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
5840 INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
5841 HAVE_CLOCK_GETTIME_VSYSCALL macros.
5842 * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
5843 Use INLINE_VSYSCALL macro.
5844 * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
5845 __vdso_clock_gettime.
5846 * sysdeps/unix/sysv/linux/tile/init-first.c
5847 (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
5848 * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
5849 __vdso_clock_gettime.
5850
83d641ef
CM
5851 * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
5852 to set up frame more cleanly.
5853
d9cd52e6
CM
5854 * sysdeps/tile/memcmp.c: New file.
5855
4b68ea11
CM
5856 * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
5857
c86f7b80
CM
5858 * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
5859 * sysdeps/tile/tilegx/strcasestr.c: New file.
5860 * sysdeps/tile/tilegx/strnlen.c: New file.
5861 * sysdeps/tile/tilegx/strstr.c: New file.
5862
1c4c1a6f
CM
5863 * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
5864
99d86ea3
AS
58652014-10-06 Arjun Shankar <arjun.is@lostca.se>
5866
5867 * nptl/tst-setuid3.c: Write errors to stdout.
5868
06210a44
KS
58692014-10-01 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
5870
5871 * elf/dl-deps.c
5872 (preload): New functions broken out of _dl_map_object_deps.
5873 (_dl_map_object_deps): Remove a nested function. Update call sites.
5874
6268f532
JM
58752014-10-01 Joseph Myers <joseph@codesourcery.com>
5876
5877 [BZ #14138]
5878 * sysdeps/unix/sysv/linux/execve.c: Remove file.
5879 * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
5880
b925285f
SE
58812014-10-01 Steve Ellcey <sellcey@mips.com>
5882
5883 * sysdeps/mips/strcmp.S: New.
5884
754a15c6
JM
58852014-09-30 Joseph Myers <joseph@codesourcery.com>
5886
5887 [BZ #14138]
5888 * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
5889 (linkat): Likewise.
5890 (mkdirat): Likewise.
5891 (readlinkat): Likewise.
5892 (renameat): Likewise.
5893 (symlinkat): Likewise.
5894 (unlinkat): Likewise.
5895 * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
5896 * sysdeps/unix/sysv/linux/linkat.c: Likewise.
5897 * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
5898 * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
5899 * sysdeps/unix/sysv/linux/renameat.c: Likewise.
5900 * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
5901 * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
5902
85bb81c9
WN
59032014-09-30 Will Newton <will.newton@linaro.org>
5904
dc6fe23b
WN
5905 * math/math.h: Define long double math functions if
5906 _LIBC_TEST is defined.
5907 * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
5908
85bb81c9
WN
5909 * localedata/Makefile: Move assignment to tests-special
5910 into an ifdef testing run-built-tests.
5911 * timezone/Makefile: Likewise.
5912
b7e02da4
JM
59132014-09-29 Joseph Myers <joseph@codesourcery.com>
5914
5915 * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
5916 with $(BASH) not $(SHELL).
5917
62058ce6
CD
59182014-09-29 Carlos O'Donell <carlos@redhat.com>
5919 Matthew LeGendre <legendre1@llnl.gov>
5920
5921 [BZ #17411]
5922 * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
5923 l_reloc_result.
5924
8e257a29
KS
59252014-09-29 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
5926
5927 * stdio-common/printf_fp.c
5928 (hack_digit): New function, broken out of ...
5929 (__printf_fp): ... local function here. Update call sites.
5930 hack_digit now takes an additional parameter that is a pointer
5931 to a struct of the referenced locals. Those locals moved inside
5932 the struct and references updated.
5933
f4a58f0d
L
59342014-09-29 H.J. Lu <hongjiu.lu@intel.com>
5935
5936 * aclocal.m4: Require autoconf 2.69.
5937 * configure: Regenerated.
5938 * sysdeps/aarch64/configure: Likewise.
5939 * sysdeps/alpha/configure: Likewise.
5940 * sysdeps/arm/armv7/configure: Likewise.
5941 * sysdeps/arm/configure: Likewise.
5942 * sysdeps/ia64/configure: Likewise.
5943 * sysdeps/mach/configure: Likewise.
5944 * sysdeps/mips/configure: Likewise.
5945 * sysdeps/s390/configure: Likewise.
5946 * sysdeps/unix/sysv/linux/mips/configure: Likewise.
5947 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
5948
5949 * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
5950 file.
5951 * sysdeps/ia64/configure.ac: Likewise.
5952
93ae1eba
JM
59532014-09-26 Joseph Myers <joseph@codesourcery.com>
5954
1810d3ab
JM
5955 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
5956 specify symbol version for ld.so. Do not include entry for
5957 libpthread.
5958 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
5959 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
5960 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
5961
93ae1eba
JM
5962 [BZ #14171]
5963 * Makeconfig [$(build-shared) = yes]
5964 ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
5965 makefiles.
5966 [$(build-shared) = yes && $(soversions.mk-done) = t]
5967 ($(common-objpfx)gnu/lib-names.h): Remove rule.
5968 [$(build-shared) = yes && $(soversions.mk-done) = t]
5969 ($(common-objpfx)gnu/lib-names.stmp): Likewise. Split and moved
5970 to Makerules.
5971 [$(build-shared) = yes && $(soversions.mk-done) = t]
5972 (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
5973 here.
5974 [$(build-shared) = yes && $(soversions.mk-done) = t]
5975 (common-generated): Don't append gnu/lib-names.h and
5976 gnu/lib-names.stmp here.
5977 * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
5978 (lib-names-h-abi): New variable.
5979 [$(build-shared) = yes && $(soversions.mk-done) = t]
5980 (lib-names-stmp-abi): Likewise.
5981 [$(build-shared) = yes && $(soversions.mk-done) = t &&
5982 abi-variants] (before-compile): Append
5983 $(common-objpfx)$(lib-names-h-abi).
5984 [$(build-shared) = yes && $(soversions.mk-done) = t &&
5985 abi-variants] (common-generated): Append gnu/lib-names.h.
5986 [$(build-shared) = yes && $(soversions.mk-done) = t &&
5987 abi-variants] (install-others-nosubdir): Depend on
5988 $(inst_includedir)/$(lib-names-h-abi).
5989 [$(build-shared) = yes && $(soversions.mk-done) = t &&
5990 abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
5991 [$(build-shared) = yes && $(soversions.mk-done) = t]
5992 ($(common-objpfx)$(lib-names-h-abi)): New rule.
5993 [$(build-shared) = yes && $(soversions.mk-done) = t]
5994 ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
5995 [$(build-shared) = yes && $(soversions.mk-done) = t]
5996 (common-generated): Append $(lib-names-h-abi) and
5997 $(lib-names-stmp-abi).
5998 * scripts/lib-names.awk: Do not handle multi being set.
5999 * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
6000 Remove variable.
6001 (abi-lp64_be-ld-soname): Likewise.
6002 * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
6003 Likewise.
6004 (abi-hard-ld-soname): Likewise.
6005 * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
6006 * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
6007 Remove variable.
6008 (abi-o32_hard-ld-soname): Likewise.
6009 (abi-o32_soft_2008-ld-soname): Likewise.
6010 (abi-o32_hard_2008-ld-soname): Likewise.
6011 (abi-n32_soft-ld-soname): Likewise.
6012 (abi-n32_hard-ld-soname): Likewise.
6013 (abi-n32_soft_2008-ld-soname): Likewise.
6014 (abi-n32_hard_2008-ld-soname): Likewise.
6015 (abi-n64_soft-ld-soname): Likewise.
6016 (abi-n64_hard-ld-soname): Likewise.
6017 (abi-n64_soft_2008-ld-soname): Likewise.
6018 (abi-n64_hard_2008-ld-soname): Likewise.
6019 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
6020 Likewise.
6021 (abi-64-v2-ld-soname): Likewise.
6022 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
6023 ld.so entries.
6024 * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
6025 variable.
6026 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
6027 entry.
6028 * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
6029 variable.
6030 (abi-64-ld-soname): Likewise.
6031 (abi-x32-ld-soname): Likewise.
6032 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
6033 entry.
6034 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
6035
68870f12
JM
60362014-09-23 Joseph Myers <joseph@codesourcery.com>
6037
6038 [BZ #14138]
6039 * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
6040 * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
6041 * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
6042 * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
6043 * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
6044 * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
6045 * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
6046 syscall entry for GLIBC_2.2 symbol version.
6047 * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
6048 Likewise.
6049 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
6050 (setrlimit): Likewise.
6051 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
6052 Likewise.
6053
ea58f202
WN
60542014-09-23 Will Newton <will.newton@linaro.org>
6055
6056 * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
6057 _LINUX_ARM_SYSDEP_H include guard too.
6058 * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
6059 define.
6060
69eb9a18
RV
60612014-09-20 Rasmus Villemoes <rv@rasmusvillemoes.dk>
6062
6063 * sysdeps/unix/sysv/linux/eventfd.c:
6064 Make first argument unsigned.
6065 * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
6066 * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
6067
20e5a5f7
OB
60682014-09-20 Ondřej Bílka <neleai@seznam.cz>
6069
6070 * socket/recvmmsg.c (recvmmsg): Drop const argument.
6071 * socket/sys/socket.h: Likewise
6072 * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
6073
d3c827e7
AK
60742014-09-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
6075
6076 * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
6077
fe1cc35a
AS
60782014-09-17 Arjun Shankar <arjun.is@lostca.se>
6079
6080 * time/tst-ftime.c: New test.
6081 * time/Makefile (tests): Add tst-ftime.
6082
4e8afe69
JM
60832014-09-17 Joseph Myers <joseph@codesourcery.com>
6084
c4fe3ea7
JM
6085 * soft-fp/extended.h: Fix comment formatting.
6086 * soft-fp/op-1.h: Likewise.
6087 * soft-fp/op-2.h: Likewise.
6088 * soft-fp/op-4.h: Likewise.
6089 * soft-fp/op-8.h: Likewise.
6090 * soft-fp/op-common.h: Likewise.
6091 * soft-fp/soft-fp.h: Likewise.
6092
4e8afe69
JM
6093 * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
6094
af296fcd
JM
60952014-09-16 Joseph Myers <joseph@codesourcery.com>
6096
6097 [BZ #6652]
6098 * Makeconfig (soversions-default-setname): Remove variable.
6099 ($(common-objpfx)soversions.i): Don't pass default_setname to
6100 soversions.awk.
6101 * Makerules ($(common-objpfx)abi-versions.h): Don't pass
6102 oldest_abi to abi-versions.awk.
6103 * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
6104 * config.make.in (oldest-abi): Remove variable.
6105 * configure.ac (--enable-oldest-abi): Remove configure option.
6106 * configure: Regenerated.
6107 * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
6108 text.
6109 * scripts/abi-versions.awk: Do not handle oldest_abi variable.
6110 * scripts/soversions.awk: Do not handle default_setname variable.
6111 * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
6112 variable.
6113 * sysdeps/mach/hurd/configure: Regenerated.
6114 * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
6115 variable.
6116 * sysdeps/unix/sysv/linux/configure: Regenerated.
6117
545583d6
SP
61182014-09-16 Siddhesh Poyarekar <siddhesh@redhat.com>
6119
d330b980
SP
6120 * elf/Makefile (CFLAGS-interp.c): Remove.
6121 ($(elf-objpfx)runtime-linker.h): Generate header with linker
6122 path string.
6123 * elf/interp.c: Include generated runtime-linker.h
6124
02657da2
SP
6125 * Makerules (lib%.so): Don't include $(+interp) in
6126 prerequisites.
6127 * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
6128 * dlfcn/eval.c: Remove file.
6129
653b1080
SP
6130 * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
6131 macros.
6132
602f80ec
SP
6133 [BZ #17266]
6134 * misc/sys/cdefs.h: Define __extern_always_inline for clang
6135 4.2 and newer.
6136
545583d6
SP
6137 [BZ #17370]
6138 * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
6139
884ddc50
SP
61402014-09-16 Siddhesh Poyarekar <siddhesh@redhat.com>
6141 Jakub Jelinek <jakub@redhat.com>
6142
6143 [BZ #17266]
6144 * libio/stdio.h: Check definition of __fortify_function
6145 instead of __extern_always_inline to include bits/stdio2.h.
6146 * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
6147 check if __extern_always_inline is defined.
6148 [__USE_MISC || __USE_XOPEN]: Likewise.
6149 [__USE_ISOC99] Likewise.
6150 * misc/sys/cdefs.h (__fortify_function): Define only if
6151 __extern_always_inline is defined.
6152 [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
6153 __extern_always_inline and __extern_inline only for g++-4.3
6154 and newer or a compatible gcc.
6155
a7b87268
AS
61562014-09-15 Andreas Schwab <schwab@linux-m68k.org>
6157
6158 [BZ #17371]
6159 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
6160 last change to handle zero prefix length.
6161
3f41521d
SP
61622014-09-15 Siddhesh Poyarekar <siddhesh@redhat.com>
6163
61fe374a
SP
6164 * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
6165 _SC_REGEX_VERSION.
6166
3f41521d
SP
6167 * posix/getconf.c (vars): Add _POSIX_IPV6 and
6168 _POSIX_RAW_SOCKETS.
6169
d8f879ee
AM
61702014-09-13 Allan McRae <allan@archlinux.org>
6171
6172 * po/ru.po: Update Russian translation from translation project.
6173
c079afb7
RM
61742014-09-12 Roland McGrath <roland@hack.frob.com>
6175
a62b3c15
RM
6176 * locale/programs/locale.c (show_locale_vars): Inline local function
6177 into its sole call site. Clean up some style nits.
6178 (print_item): New function, broken out of ...
6179 (show_info): ... local function here. Clean up style nits.
6180
d7e49b19
RM
6181 * locale/programs/ld-ctype.c (set_one_default): New function, broken
6182 out of ...
6183 (set_class_defaults): ... local function set_default here.
6184 Define set_default as a macro locally to pass constant parameters.
6185 (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
6186 rather than a shared local.
6187
c079afb7
RM
6188 * stdlib/rpmatch.c (try): New function, broken out of ...
6189 (rpmatch): ... local function here. Also, prototypify definition.
6190
0bd72468
JM
61912014-09-12 Joseph Myers <joseph@codesourcery.com>
6192
ba90e050
JM
6193 * scripts/soversions.awk: Do not handle configuration names.
6194 * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
6195 vendor and os variables to soversions.awk.
6196 * configure.ac: Do not modify gnu-* host_os.
6197 * configure: Regenerated
6198 * shlib-versions: Remove first column with configuration names.
6199 * nptl/shlib-versions: Likewise.
6200 * nptl_db/shlib-versions: Likewise.
6201 * sysdeps/hppa/shlib-versions: Likewise.
6202 * sysdeps/m68k/shlib-versions: Likewise.
6203 * sysdeps/mach/hurd/shlib-versions: Likewise.
6204 * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
6205 * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
6206 * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
6207 * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
6208 * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
6209 * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
6210 * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
6211 * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
6212 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
6213 Likewise.
6214 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
6215 * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
6216 * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
6217 * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
6218 * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
6219 * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
6220 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
6221 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
6222
73a39112
JM
6223 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
6224 (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
6225 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
6226 Regenerated.
6227 * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
6228 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
6229 Condition symbol version definitions on [HAVE_ELFV2_ABI].
6230
c729e7c1
JM
6231 * shlib-versions: Remove OS-specific entries. Moved to files in
6232 sysdeps.
6233 * sysdeps/mach/hurd/shlib-versions: New file.
6234 * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
6235
dc932a24
JM
6236 * nptl/shlib-versions: Remove architecture-specific entries.
6237 Moved to files in sysdeps.
6238 * shlib-versions: Likewise.
6239 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
6240 file.
6241 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
6242 * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
6243 * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
6244 * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
6245
0bd72468
JM
6246 * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
6247 (UDP_NO_CHECK6_RX): Likewise.
6248
920238e0
SP
62492014-09-12 Siddhesh Poyarekar <siddhesh@redhat.com>
6250
6251 * sysdeps/posix/sysconf.c (__sysconf): Spell
6252 _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
6253
ba7b4d29
FW
62542014-08-12 Florian Weimer <fweimer@redhat.com>
6255
6256 * iconv/gconv_open.c (__gconv_open): Remove transliteration module
6257 loading.
6258 * iconv/Versions (__gconv_transliterate): Export for use from
6259 gconv modules.
6260 * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
6261 (struct __gconv_trans_data, __gconv_trans_fct,
6262 __gconv_trans_context_fct, __gconv_trans_query_fct,
6263 __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
6264 definitions.
6265 (struct __gconv_step_data): Remove __trans member.
6266 (__gconv_transliterate): Declaration moved from gconv_int.h. No
6267 longer hidden. Remove unused trans_data argument.
6268 * iconv/gconv_int.h (struct trans_struct): Remove definition.
6269 (__gconv_translit_find): Remove declaration.
6270 (__gconv_transliterate): Declaration moved to gconv.h. Add hidden
6271 prototype.
6272 * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
6273 * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
6274 trans_data argument. Add hidden definition.
6275 (__gconv_translit_find): Remove.
6276 * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
6277 __gconv_transliterate directly if __GCONV_TRANSLIT is set.
6278 * iconv/skeleton.c: Remove transliteration initialization.
6279 * libio/fileops.c (_IO_new_file_fopen): Adjust struct
6280 __gconv_step_data initialization.
6281 * libio/iofwide.c (__libio_translit_): Remove.
6282 (_IO_fwide): Adjust struct __gconv_step_data initialization.
6283 * wcsmbs/btowc.c (__btowc): Likewise.
6284 * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
6285 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
6286 * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
6287 * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
6288 * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
6289 * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
6290 * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
6291 * wcsmbs/wctob.c (wctob): Likewise.
6292
5379aebd
SP
62932014-09-12 Siddhesh Poyarekar <siddhesh@redhat.com>
6294
6295 [BZ #16194]
6296 * sysdeps/x86/tst-xmmymm.sh: Rename file to...
6297 * sysdeps/x86/tst-ld-sse-use.sh: ... this. Check for zmm
6298 register usage.
6299 * sysdeps/x86/Makefile: Adjust.
6300
8c0ab919
RM
63012014-09-11 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
6302 Roland McGrath <roland@hack.frob.com>
6303
6304 * locale/weight.h: Add include guard.
6305 (findidx): Make static rather than auto; take new parameters
6306 TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
6307 * locale/weightwc.h: Likewise.
6308 * posix/fnmatch_loop.c
6309 (FCT): Change type of EXTRA from int32_t to wint_t.
6310 Don't include either header inside the function.
6311 Call FINDIDX rather than findidx, and pass new arguments.
6312 #undef FINDIDX at the end of the file.
6313 * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
6314 FINDIDX before including fnmatch_loop.c for the non-wide version.
6315 [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
6316 #include <locale/weightwc.h>, and define FINDIDX to findidxwc
6317 for the wide version.
6318 * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
6319 (build_equiv_class) [_LIBC]: Don't #include it inside the function.
6320 Pass new arguments to findidx.
6321 * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
6322 [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
6323 Don't #include it inside the function. Pass new arguments to findidx.
6324 * posix/regex_internal.h
6325 [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
6326 (re_string_elem_size_at): Don't #include it inside the function.
6327 Pass new arguments to findidx.
6328 * string/strcoll_l.c: #include WEIGHT_H at top level.
6329 (get_next_seq): Don't #include it inside the function.
6330 Pass new arguments to findidx.
6331 (get_next_seq_nocache): Likewise.
6332 * string/strxfrm_l.c: #include WEIGHT_H at top level.
6333 (STRXFRM): Don't #include it inside the function.
6334 Pass new arguments to findidx.
6335
52ffbdf2
FW
63362014-09-11 Florian Weimer <fweimer@redhat.com>
6337
6338 [BZ #17344]
6339 * malloc/malloc.c (unlink): Turn asserts into a call to
6340 malloc_printerr.
6341
984c0ea9
TL
63422014-09-11 Tim Lammens <tim.lammens@gmail.com>
6343
6344 [BZ #17370]
6345 * libio/wfileops (do_ftell_wide): Free OUT.
6346
3daee107
CM
63472014-09-10 Chris Metcalf <cmetcalf@tilera.com>
6348
6349 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
6350
58b930ae
SP
63512014-09-10 Siddhesh Poyarekar <siddhesh@redhat.com>
6352
6353 [BZ #17363]
6354 * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
6355 group if the current group is empty.
6356
3b473fec
AZ
63572014-09-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6358
71ae8647
AZ
6359 * benchtests/bench-memset.c (test_main): Add more test from size
6360 from 32 to 512 bytes.
6361 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
6362 Add POWER8 memset object.
6363 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
6364 (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
6365 * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
6366 implementation.
6367 * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
6368 Likewise.
6369 * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
6370 multiarch POWER8 memset optimization.
6371 * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
6372 POWER8 memset optimization.
6373
3b473fec
AZ
6374 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
6375 Remove bzero multiarch objects.
6376 * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
6377 * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
6378 * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
6379 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
6380 Remove define.
6381 [__bzero]: Redefine to specific name.
6382 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
6383 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
6384 * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
6385 define.
6386 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
6387 * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
6388
e6fb9587
FW
63892014-09-10 Florian Weimer <fweimer@redhat.com>
6390
6391 * Makeconfig (gccwarn-c): Turn implicit-function-declaration
6392 warnings into errors.
6393
6394 * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
6395 __cxa_thread_atexit_impl prototype.
6396
9d3a350b
SE
63972014-09-09 Steve Ellcey <sellcey@mips.com>
6398
6399 * sysdeps/mips/preconfigure: Put code inside mips* case statement.
6400 Fix capitalization of error message.
6401
0febba23
SE
64022014-09-09 Steve Ellcey <sellcey@mips.com>
6403
6404 * sysdeps/mips/preconfigure: Modify ABI tests.
6405
645a0e9c
CD
64062014-09-07 Carlos O'Donell <carlos@systemhalted.org>
6407
6408 * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
6409
d83f0734
CD
64102014-09-07 Roland McGrath <roland@hack.frob.com>
6411 Carlos O'Donell <carlos@systemhalted.org>
6412
6413 * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
6414 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
6415 * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
6416 * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
6417 * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
6418 * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
6419 * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
6420 * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
6421 * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
6422 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
6423 * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
6424 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
6425 * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
6426 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
6427 * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
6428 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
6429 * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
6430 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
6431 * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
6432 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
6433 * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
6434 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
6435 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
6436 * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
6437 * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
6438 * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
6439 * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
6440 * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
6441 Deconditionalize the code that was previously under [RESET_PID].
6442 * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
6443 * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
6444 * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
6445 * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
6446 include sysdep.h.
6447
21c83793
AM
64482014-09-08 Allan McRae <allan@archlinux.org>
6449
6450 * version.h (RELEASE): Set to "development".
6451 (VERSION): Set to "2.20.90"
6452
1cd9b65c
AM
64532014-09-07 Allan McRae <allan@archlinux.org
6454
b8079dd0
AM
6455 * version.h (RELEASE): Set to "stable".
6456 (VERSION): Set to "2.20"
6457 * include/features.h (__GLIBC_MINOR__): Set to 20.
6458
c46303ef
AM
6459 * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
6460 Liebler.
6461
1cd9b65c
AM
6462 * po/ko.po: Update Korean translation from translation project.
6463
8622092d
CM
64642014-09-06 Chris Metcalf <cmetcalf@tilera.com>
6465
6466 [BZ #17354]
6467 * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
6468 macro for handling signed relocations.
6469
41488498
FW
64702014-09-03 Florian Weimer <fweimer@redhat.com>
6471
6472 [BZ #17325]
6473 * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
6474 * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
6475 assert.
6476 * iconvdata/ibm933.c (BODY): Fix check for sentinel.
6477 * iconvdata/ibm935.c (BODY): Likewise.
6478 * iconvdata/ibm937.c (BODY): Likewise.
6479 * iconvdata/ibm939.c (BODY): Likewise.
6480 * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
6481 assert.
6482 * iconvdata/Makefile (iconv-test.out): Pass module list to test
6483 script.
6484 * iconvdata/run-iconv-test.sh: New test loop for checking for
6485 decoder crashers.
6486
a78b712d
KR
64872014-09-02 Khem Raj <raj.khem@gmail.com>
6488
6489 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
6490 libm_hidden_ver.
6491
cb08abc6
AM
64922014-09-01 Allan McRae <allan@archlinux.org>
6493
2c31e102
AM
6494 * po/eo.po: Update Esperanto translation from translation project.
6495
cb08abc6
AM
6496 * po/ca.po: Update Catalan translation from translation project.
6497
17a62de1
ST
64982014-08-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
6499
6500 * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
6501 __proc_dostop call.
6502
9570bc53
MW
65032014-08-27 Mark Wielaard <mjw@redhat.com>
6504
6505 [BZ #17319]
6506 * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
6507 to call set_thread_area instead of hand written asm.
6508 (__NR_set_thread_area): Removed define.
6509 (TLS_FLAG_WRITABLE): Likewise.
6510 (__ASSUME_SET_THREAD_AREA): Remove check.
6511 (TLS_EBX_ARG): Remove define.
6512 (TLS_LOAD_EBX): Likewise.
6513
b0f955c9
ST
65142014-08-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
6515
6516 Simplify atomicity of socket creation in bind.
6517
6518 * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
6519 looking up the name after linking the file.
6520
529bf515
AM
65212014-08-27 Allan McRae <allan@archlinux.org>
6522
6523 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
6524
a1a6a401
FW
65252014-08-26 Florian Weimer <fweimer@redhat.com>
6526
6527 [BZ #17187]
6528 * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
6529 trans_compare, open_translit, __gconv_translit_find):
6530 Remove module loading code.
6531
686ab290
AM
65322014-08-26 Allan McRae <allan@archlinux.org>
6533
e4e7cfd2
AM
6534 * po/vi.po: Update Vietnamese translation from translation project.
6535
6aa09f71
AM
6536 * po/uk.po: Update Ukrainian translation from translation project.
6537
edc0660e
AM
6538 * po/fr.po: Update French translation from translation project.
6539
7eea72ac
AM
6540 * po/ru.po: Update Russian translation from translation project.
6541
93c49eff
AM
6542 * po/pl.po: Update Polish translation from translation project.
6543
46acaf63
AM
6544 * po/cs.po: Update Czech translation from translation project.
6545
a9f5ce98
AM
6546 * po/de.po: Update German translation from translation project.
6547
373f2b78
AM
6548 * po/bg.po: Update Bulgarian translation from translation project.
6549
e7548bd8
AM
6550 * po/sv.po: Update Sweedish translation from translation project.
6551
c526bf4d
AM
6552 * po/nl.po: Update Dutch translation from translation project.
6553
686ab290
AM
6554 * po/es.po: Update Spanish translation from translation project.
6555
eb72478a
SP
65562014-08-21 Siddhesh Poyarekar <siddhesh@redhat.com>
6557
dd763fdb
SP
6558 * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
6559
318c7a58
SP
6560 * catgets/Makefile (CPPFLAGS-gencat): Remove.
6561 * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
6562 (CPPFLAGS-iconvconfig): Likewise.
6563 * timezone/Makefile (CPPFLAGS-zic): Likewise.
6564
eb72478a
SP
6565 * include/libc-symbols.h: Remove unnecessary check for
6566 NOT_IN_libc.
6567 * nptl/pthreadP.h: Likewise.
6568 * sysdeps/aarch64/setjmp.S: Likewise.
6569 * sysdeps/alpha/setjmp.S: Likewise.
6570 * sysdeps/arm/sysdep.h: Likewise.
6571 * sysdeps/i386/setjmp.S: Likewise.
6572 * sysdeps/m68k/setjmp.c: Likewise.
6573 * sysdeps/posix/getcwd.c: Likewise.
6574 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
6575 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
6576 * sysdeps/s390/s390-32/setjmp.S: Likewise.
6577 * sysdeps/s390/s390-64/setjmp.S: Likewise.
6578 * sysdeps/sh/sh3/setjmp.S: Likewise.
6579 * sysdeps/sh/sh4/setjmp.S: Likewise.
6580 * sysdeps/unix/alpha/sysdep.h: Likewise.
6581 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
6582 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
6583 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
6584 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
6585 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
6586 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
6587 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
6588 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
6589 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
6590 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
6591 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
6592 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
6593 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
6594 * sysdeps/x86_64/setjmp.S: Likewise.
6595
d44a052c
JM
65962014-08-13 Joseph Myers <joseph@codesourcery.com>
6597
6598 [BZ #17263]
6599 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
6600 <stdint.h>.
6601 (__get_clockfreq): Use uint64_t instead of hp_timing_t in
6602 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
6603
508ce3ac
SP
66042014-08-13 Siddhesh Poyarekar <siddhesh@redhat.com>
6605
e44c8b0e
SP
6606 * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
6607
508ce3ac
SP
6608 [BZ #17262]
6609 * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
6610 and __x86_64__ when disabling x87 inline functions.
6611
b4acef1f
L
66122014-08-12 H.J. Lu <hongjiu.lu@intel.com>
6613
6614 [BZ #17259]
6615 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
6616 asm statement with __cpuid_count.
6617
61b1ef6e
MF
66182014-08-12 Mike Frysinger <vapier@gentoo.org>
6619
6620 * configure.ac: Change __ehdr_start code to dereference the struct.
6621 Run readelf on the output to look for relocations.
6622 * configure: Regenerated.
6623
898c62f4
JM
66242014-08-12 Joseph Myers <joseph@codesourcery.com>
6625
6626 [BZ #17261]
6627 * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
6628 value to 0.
6629 (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
6630
9a8a5720
RM
66312014-08-12 Roland McGrath <roland@hack.frob.com>
6632
6633 * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
6634
4e75751c
BO
66352014-08-12 Bernard Ogden <bernie.ogden@linaro.org>
6636
6637 [BZ #16892]
6638 * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
6639 atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
6640
bb2ce416
SA
66412014-08-12 Sean Anderson <seanga2@gmail.com>
6642
6643 * malloc/malloc.c: Fix typo in comment.
6644
7950a4ee
AM
66452014-08-09 Allan McRae <allan@archlinux.org>
6646
6647 * Regenerate libc.po.
6648
f469c49f
MF
66492014-08-08 Mike Frysinger <vapier@gentoo.org>
6650
6651 * intl/tst-gettext2.sh: Check every lang file for creation.
6652
656b84c2
WD
66532014-08-07 Wilco Dijkstra <wdijkstr@arm.com>
6654
6655 * sysdeps/aarch64/fpu/math_private.h
6656 (libc_feholdsetround_noex_aarch64_ctx): New function.
6657
538e9e45
W
66582014-08-07 Wilco Dijkstra <wdijkstr@arm.com>
6659
6660 * sysdeps/arm/armv6/strcpy.S (strcpy):
6661 Fix performance issue in misaligned cases.
6662
d4795e4a
AZ
66632014-08-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6664
6665 * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
6666 Move definition from termios.h.
6667 (struct termio): Likewise.
6668 (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
6669 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
6670 N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
6671 N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
6672 Likewise.
6673 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
6674 Move definition to ioctl-types.h
6675 (struct termio): Likewise.
6676 (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
6677 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
6678 N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
6679 N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
6680 Likewise.
6681
64accb62
RH
66822014-08-05 Richard Henderson <rth@redhat.com>
6683
27bb6dc0
RH
6684 * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
6685 exceptions.
6686 * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
6687 Add fraiseexcpt.
6688 * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
6689 Use __feraiseexcept.
6690 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
6691 Protect libm symbols with IS_IN_libm.
6692
64accb62
RH
6693 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
6694
e5292691
BO
66952014-08-04 Bernard Ogden <bernie.ogden@linaro.org>
6696
6697 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
6698
5b4bd2d4
WN
66992014-08-04 Will Newton <will.newton@linaro.org>
6700
6701 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
6702 file.
6703
fcadaeef
MF
67042014-08-04 Mike Frysinger <vapier@gentoo.org>
6705
6706 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
6707 variants for each function.
6708
43a94c64
RM
67092014-08-04 Roland McGrath <roland@hack.frob.com>
6710
6711 * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
6712 appended ...
6713 * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
6714 * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
6715 appended ...
6716 * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
6717 * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
6718 * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
6719 * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
6720 * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
6721 * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
6722 * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
6723 * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
6724 * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
6725 * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
6726 * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
6727 * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
6728 * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
6729 * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
6730 * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
6731 * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
6732 * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
6733 * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
6734 * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
6735 * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
6736 * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
6737 * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
6738 * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
6739 * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
6740 * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
6741 * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
6742 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
6743 * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
6744 * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
6745 * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
6746 * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
6747 * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
6748 * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
6749 * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
6750 * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
6751 * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
6752 * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
6753 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
6754 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
6755 * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
6756 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
6757 * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
6758 * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
6759 * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
6760 * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
6761 * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
6762 * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
6763 * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
6764 * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
6765 * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
6766 * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
6767 * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
6768 * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
6769 Update #include.
6770 * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
6771 * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
6772
8f3c1fa4
RM
67732014-08-04 Roland McGrath <roland@hack.frob.com>
6774
6775 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
6776 * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
6777 * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
6778 * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
6779 * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
6780 * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
6781
ca08746f
RM
67822014-08-04 Roland McGrath <roland@hack.frob.com>
6783
6784 * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
6785 * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
6786 * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
6787 * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
6788
9c925ff9
RM
67892014-08-04 Roland McGrath <roland@hack.frob.com>
6790
6791 * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
6792 * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
6793 (__libc_vfork): Define function under this name.
6794 (__vfork): Define as an alias.
6795 * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
6796 * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
6797
e641054c
RM
67982014-08-04 Roland McGrath <roland@hack.frob.com>
6799
6800 * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
6801 that was previously under [RESET_PID].
6802 * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
6803
dacdc867
AS
68042014-08-04 Andreas Schwab <schwab@suse.de>
6805
6806 * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
6807
41f725ff
MF
68082014-08-03 Mike Frysinger <vapier@gentoo.org>
6809
6810 * stdlib/tst-setcontext.c (test_stack): Fix coding style.
6811 (main): Likewise.
6812
277cfb31
RM
68132014-08-01 Roland McGrath <roland@hack.frob.com>
6814
6815 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
6816
4896f049
RH
68172014-08-01 Richard Henderon <rth@redhat.com>
6818
6819 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
6820 feclearexcept; use math_opt_barrier instead of open-coded asm; fix
6821 typo in exact zero test.
6822 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
6823 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
6824 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
6825
6f64e7d7
RM
68262014-08-01 Roland McGrath <roland@hack.frob.com>
6827
6828 * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
6829 (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
6830 * sysdeps/arm/sysdep.h: ... here.
6831 [!__ASSEMBLER__]: Include <stdint.h>.
6832
3f3dd810
SP
68332014-08-01 Siddhesh Poyarekar <siddhesh@redhat.com>
6834
a476ac4b
SP
6835 * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
6836 (HAVE_WCTYPE_H): Likewise.
6837 (HAVE_ISWCTYPE): Likewise.
6838 (ENABLE_NLS): Likewise.
6839 * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
6840 && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
6841
78dd658a
SP
6842 * posix/regex_internal.c: Check if DEBUG is defined and is
6843 set.
6844
3f3dd810
SP
6845 * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
6846 (HAVE_MBSRTOWCS): Likewise.
6847 * posix/fnmatch.c: Include string.h unconditionally.
6848
95ee7fb1
SL
68492014-08-01 Stefan Liebler <stli@linux.vnet.ibm.com>
6850
6851 * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
6852 reversal.
6853
23fe486b
RM
68542014-07-31 Roland McGrath <roland@hack.frob.com>
6855
f61a113f
RM
6856 * sysdeps/generic/safe-fatal.h: New file.
6857 * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
6858 * nptl/forward.c: Include it.
6859 (__pthread_unwind): Use __safe_fatal as default action, rather
6860 than a bogus use of INTERNAL_SYSCALL that could never work.
6861
9fe7e787
RM
6862 * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
6863 * configure.ac (libc_cv_builtin_trap): New test.
6864 * configure: Regenerated.
6865 * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
6866 (ABORT_INSTRUCTION): Define using __builtin_trap.
6867
23fe486b
RM
6868 * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
6869 * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
6870 * sysdeps/nptl/nptl-signals.h: New file.
6871 * nptl/pthreadP.h: Include <nptl-signals.h>.
6872
f349489e
SL
68732014-07-31 Stefan Liebler <stli@linux.vnet.ibm.com>
6874
6875 * sysdeps/s390/s390-64/utf16-utf32-z9.c
6876 (ONE_DIRECTION): Define.
6877 * sysdeps/s390/s390-64/utf8-utf16-z9.c
6878 (ONE_DIRECTION): Define.
6879 * sysdeps/s390/s390-64/utf8-utf32-z9.c
6880 (ONE_DIRECTION): Define.
6881
2f438e20
SL
68822014-07-31 Stefan Liebler <stli@linux.vnet.ibm.com>
6883
6884 * sysdeps/s390/Makefile: Delete file.
6885 * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
6886 * sysdeps/s390/__longjmp.c: Delete file.
6887 * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
6888 Remove fields __flags and __reserved.
6889 * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
6890 and add versioning.
6891 * sysdeps/s390/rtld-__longjmp.c: Delete file.
6892 * sysdeps/s390/rtld-global-offsets.sym: Likewise.
6893 * sysdeps/s390/rtld-setjmp.S: Likewise.
6894 * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
6895 * sysdeps/s390/s390-32/__longjmp.c: ... here.
6896 * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
6897 * sysdeps/s390/s390-32/setjmp.S: ... here.
6898 Add versioning.
6899 (__sigsetjmp): Remove setting __flags field.
6900 * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
6901 * sysdeps/s390/s390-64/__longjmp.c: ... here.
6902 * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
6903 * sysdeps/s390/s390-64/setjmp.S: ... here.
6904 Add versioning.
6905 (__sigsetjmp): Remove setting __flags field.
6906 * sysdeps/s390/setjmp.S: Delete file.
6907 * sysdeps/s390/sigjmp.c: Likewise.
6908 * sysdeps/s390/v1-longjmp.c: Likewise.
6909 * sysdeps/s390/v1-setjmp.h: Likewise.
6910 * sysdeps/s390/v1-sigjmp.c: Likewise.
6911 * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
6912 Remove v1-longjmp_chk.
6913 * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
6914 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
6915 Include debug/longjmp_chk.c and add versioning.
6916 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
6917 Include nptl/pt-longjmp.c and add versioning.
6918 * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
6919 * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
6920 Include __longjmp.c.
6921 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
6922 Move to ...
6923 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
6924 (__getcontext): Remove setting __flags field.
6925 Add versioning.
6926 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
6927 Don't restore upper high grps.
6928 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
6929 Likewise.
6930 (__swapcontext): Remove setting uc_flags field.
6931 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
6932 Delete file.
6933 * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
6934 Include __longjmp.c.
6935 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
6936 Move to ...
6937 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
6938 (__getcontext): Remove setting __flags field.
6939 Add versioning.
6940 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
6941 (__swapcontext): Remove setting uc_flags field.
6942 * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
6943 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
6944 Remove fields uc_high_gprs and __reserved.
6945 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
6946 New file with reverted content.
6947 * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
6948 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
6949 Regenerated.
6950 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
6951 Regenerated.
6952
6c9578a2
AS
69532014-07-31 Andreas Schwab <schwab@suse.de>
6954
6955 * config.h.in (HAVE_IFUNC): Define to 0.
6956 * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
6957 definedness.
6958
05f3633d
LM
69592014-07-30 Ling Ma <ling.ml@alibaba-inc.com>
6960
6961 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
6962 memmove-avx-unaligned, memcpy-avx-unaligned and
6963 mempcpy-avx-unaligned.
6964 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
6965 Add tests for AVX memcpy functions.
6966 * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
6967 * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
6968 memcpy_chk.
6969 * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
6970 * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
6971 memmove_chk.
6972 * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
6973 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
6974 mempcpy_chk.
6975 * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
6976 * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
6977 * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
6978
a53fbd8e
AZ
69792013-07-29 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6980
6981 [BZ #17213]
6982 * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
6983 powerpc64le.
6984
0961f7e1
JL
69852014-07-29 Jeff Layton <jlayton@poochiereds.net>
6986
6987 [BZ #16839]
6988 * manual/llio.texi: Add section about open file description locks.
6989 * manual/examples/ofdlocks.c: Example of open file description
6990 lock usage.
6991 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
6992 F_OFD_SETLK, and F_OFD_SETLKW.
6993
cc5fb300
AM
69942014-07-23 Allan McRae <allan@archlinux.org>
6995
6996 * po/es.po: Update Spanish translation from translation project.
6997
23329dca
AS
69982014-07-18 Andreas Schwab <schwab@linux-m68k.org>
6999
7000 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
7001
9c82da17
MR
70022014-07-17 Maciej W. Rozycki <macro@codesourcery.com>
7003
7004 [BZ #17078]
7005 * sysdeps/arm/dl-machine.h (elf_machine_rela)
7006 [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
7007 (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
7008
29c4f53e
JM
70092014-07-17 Joseph Myers <joseph@codesourcery.com>
7010
831b9896
JM
7011 [BZ #17088]
7012 * math/fesetenv.c (__fesetenv)
7013 [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
7014 * math/feupdateenv.c (__feupdateenv)
7015 [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
7016
b21c2d50
JM
7017 * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
7018 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
7019 (__ASSUME_SOCKETCALL): Do not define.
7020
067764ef
JM
7021 * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
7022 * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
7023 (__ASSUME_SOCKETCALL): Do not define.
7024 (__ASSUME_ST_INO_64_BIT): Define unconditionally.
7025 [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
7026 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7027 [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
7028 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7029 [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
7030 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7031 [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7032
642530c1
JM
7033 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
7034 * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
7035 (__ASSUME_SOCKETCALL): Do not define.
7036 (__ASSUME_IPC64): Define unconditionally.
7037 [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
7038 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7039 [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
7040 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7041 [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
7042 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7043 [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
7044 Likewise.
7045
03f77315
JM
7046 * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
7047 * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
7048 (__ASSUME_SOCKETCALL): Do not define.
7049 (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
7050 (__ASSUME_FUTEX_LOCK_PI): Likewise.
7051 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7052 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
7053 (__ASSUME_REQUEUE_PI): Define unconditionally.
7054 [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
7055 (__ASSUME_RECVMMSG_SYSCALL): Do not define.
7056 [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7057 [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
7058 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7059 [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7060
083b1f7c
JM
7061 * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
7062 * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
7063 (__ASSUME_SOCKETCALL): Do not define.
7064 [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
7065 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7066 [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7067 [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
7068 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7069 [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
7070
5be44ea6
JM
7071 * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
7072 * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
7073 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
7074 [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
7075 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
7076 [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
7077 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
7078 [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
7079 (__ASSUME_GETCPU_SYSCALL): Likewise.
7080
d95ffd4c
JM
7081 * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
7082 * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR. Remove
7083 cases for individual architectures.
7084 * sysdeps/gnu/configure: Regenerated.
7085 * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
7086 LIBC_SLIBDIR_RTLDDIR.
7087 * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
7088 * sysdeps/unix/sysv/linux/mips/configure.ac: Use
7089 LIBC_SLIBDIR_RTLDDIR.
7090 * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
7091 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
7092 LIBC_SLIBDIR_RTLDDIR.
7093 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
7094 Regenerated.
7095 * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
7096 * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
7097 file.
7098 * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
7099 * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
7100 file.
7101 * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
7102 * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
7103 * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
7104 * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
7105
29c4f53e
JM
7106 * sysdeps/aarch64/shlib-versions: Move to ...
7107 * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
7108 * sysdeps/alpha/shlib-versions: Move to ...
7109 * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
7110 * sysdeps/arm/shlib-versions: Move to ...
7111 * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
7112 * sysdeps/hppa/shlib-versions: Move all contents except for
7113 libgcc_s entry to ...
7114 * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here. Merge in
7115 entry from ...
7116 * sysdeps/hppa/nptl/shlib-versions: ... here. Remove file.
7117 * sysdeps/ia64/shlib-versions: Move to ...
7118 * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here. Merge in
7119 entry from ...
7120 * sysdeps/ia64/nptl/shlib-versions: ... here. Remove file.
7121 * sysdeps/m68k/coldfire/shlib-versions: Move to ...
7122 * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
7123 * sysdeps/microblaze/shlib-versions: Move to ...
7124 * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
7125 * sysdeps/mips/shlib-versions: Move to ...
7126 * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here. Merge in
7127 entry from ...
7128 * sysdeps/mips/nptl/shlib-versions: ... here. Remove file.
7129 * sysdeps/tile/shlib-versions: Move to ...
7130 * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
7131 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
7132 from ...
7133 * sysdeps/x86_64/64/shlib-versions: ... here. Remove file.
7134 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
7135 entry from ...
7136 * sysdeps/x86_64/x32/shlib-versions: ... here. Remove file.
7137
32bead5b
WN
71382014-07-17 Will Newton <will.newton@linaro.org>
7139
57977c4b
WN
7140 * sysdeps/arm/bits/atomic.h
7141 (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
7142 (__arch_compare_and_exchange_bool_16_int): Likewise.
7143 (__arch_compare_and_exchange_bool_64_int): Likewise.
7144
32bead5b
WN
7145 * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
7146 into an #else block.
7147
37fccd41
RM
71482014-07-16 Roland McGrath <roland@hack.frob.com>
7149
7150 * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
7151 just Linux configurations. Test empirically that the compiler sets
7152 __ARM_EABI__, rather than using the tuple to decide.
7153 * sysdeps/arm/preconfigure: Regenerated.
7154 * sysdeps/unix/sysv/linux/arm/configure: File removed.
7155 * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
7156 contents appended ...
7157 * sysdeps/arm/configure.ac: ... here.
7158 * sysdeps/arm/configure: Regenerated.
7159
b365f3ec
RM
71602014-07-15 Roland McGrath <roland@hack.frob.com>
7161
8badf496
RM
7162 * nptl/pthread_kill.c: New file.
7163 * nptl/pthread_sigmask.c: New file.
7164 * nptl/pthread_sigqueue.c: New file.
7165
3df6f22e
RM
7166 * sysdeps/nptl/lowlevellock.h: New file.
7167 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
7168 * sysdeps/nptl/lowlevellock-futex.h: New file.
7169
b365f3ec
RM
7170 * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
7171 Remove dead declarations.
7172
f2fef657
L
71732014-07-14 H.J. Lu <hongjiu.lu@intel.com>
7174
7175 * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
7176 * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
7177 config-cflags-avx2.
7178 * sysdeps/x86_64/configure.ac: Likewise.
7179 * sysdeps/i386/configure: Regenerated.
7180 * sysdeps/x86_64/configure: Likewise.
7181 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
7182 memset-avx2 only if config-cflags-avx2 is yes.
7183 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
7184 Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
7185 defined.
7186 * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
7187 only if HAVE_AVX2_SUPPORT is defined.
7188 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
7189
f6c44d47
AM
71902014-07-14 Alan Modra <amodra@gmail.com>
7191
7192 [BZ #17153]
7193 * elf/elf.h (DT_PPC64_NUM): Correct value.
7194 * NEWS: Add to fixed bug list.
7195
7ee03f00
JM
71962014-07-13 Jim Meyering <meyering@fb.com>
7197
7198 [BZ 17150]
7199 regex: don't deref NULL upon heap allocation failure
7200 * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
7201 failure in one more place.
7202 To trigger the segfault, configure grep -with-included-regex,
7203 build it, and run these commands:
7204 ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
7205
9d39d517
AS
72062014-07-13 Andreas Schwab <schwab@linux-m68k.org>
7207
7208 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
7209
a75b89b7
RH
72102014-07-11 Richard Henderson <rth@redhat.com>
7211
7212 * sysdeps/aarch64/libm-test-ulps: Update.
7213
771eb141
FW
72142014-07-10 Florian Weimer <fweimer@redhat.com>
7215
7216 [BZ #17135]
7217 * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
7218 * nptl/allocatestack.c (__nptl_setxid_error): New function.
7219 (__nptl_setxid): Initialize error member. Call
7220 __nptl_setxid_error.
7221 * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
7222 * nptl/descr.h (struct xid_command): Add error member.
7223 * nptl/tst-setuid3.c: New file.
7224 * nptl/Makefile (tests): Add it.
7225
bc1da176
AZ
72262014-07-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7227
7228 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
7229 New define.
7230 (__lll_trylock): Use __lll_base_trylock.
7231 (__lll_cond_trylock): Likewise.
7232
887865fc
RM
72332014-07-10 Roland McGrath <roland@hack.frob.com>
7234
c0c6bac9
RM
7235 * nptl/pthread_create.c (start_thread): Use atomic_or and
7236 lll_futex_wake directly rather than lll_robust_dead.
7237 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
7238 (lll_robust_dead): Macro removed.
6a42be57 7239 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
c0c6bac9
RM
7240 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
7241 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
7242 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
7243 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
7244 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
7245 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
7246 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
7247 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
7248 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
7249 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
7250 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
7251 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
7252 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
7253 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
7254
887865fc
RM
7255 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
7256 Use atomic_compare_and_exchange_val_acq directly rather than
7257 lll_robust_trylock.
7258 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
7259 (__lll_robust_trylock, lll_robust_trylock): Removed.
7260 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
7261 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
7262 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
7263 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
7264 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
7265 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
7266 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
7267 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
7268 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
7269 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
7270 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
7271 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
7272 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
7273 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
7274
58536726
FW
72752014-07-02 Florian Weimer <fweimer@redhat.com>
7276
7277 * manual/locale.texi (Locale Names): New section documenting
7278 locale name syntax. Adjust menu and node chaining accordingly.
7279 (Choosing Locale): Reference Locale Names, Locale Categories.
7280 Mention setting LC_ALL=C. Reflect that name syntax is now
7281 documented.
7282 (Locale Categories): New section title. Reference Locale Names.
7283 LC_ALL is an environment variable, but not a category.
7284 (Setting the Locale): Remove "locale -a" invocation and LOCPATH
7285 description, now in Locale Name. Reference that section. Locale
7286 name syntax is now documented.
7287
4e8f95a0
FW
72882014-07-02 Florian Weimer <fweimer@redhat.com>
7289
7290 [BZ #17137]
7291 * locale/findlocale.c (name_present, valid_locale_name): New
7292 functions.
7293 (_nl_find_locale): Use the loc_name variable to store name
7294 candidates. Call name_present and valid_locale_name to check and
7295 validate locale names. Return an error if the locale is invalid.
7296
d1836456
FW
72972014-07-02 Florian Weimer <fweimer@redhat.com>
7298
7299 * locale/setlocale.c (setlocale): Use strdup for allocating
7300 composite name copy.
7301
d69b7f5a
SP
73022014-07-10 Siddhesh Poyarekar <siddhesh@redhat.com>
7303
888c679b
SP
7304 Sync up with gnulib.
7305 * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
7306 [!_LIBC && ENABLE_NLS]: Include gettext.h.
7307 [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
7308 and _GL_ARG_NONNULL.
7309 [USE_UNLOCKED_IO]: Include unlocked-io.h.
7310 [!_LIBC]: Include code for Windows and Cygwin.
7311 [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
7312 Include prototype for int strerror_r.
7313 [!_LIBC] (is_open): New function.
7314 (flush_stdout): New function.
7315 (print_errno_message): Use it.
7316 (error): Likewise.
7317 (error_at_line): Likewise.
7318 (error_tail) Add function attribute macros. Use
7319 __builtin_expect.
7320
180e0e4b
SP
7321 * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
7322
d22f1fe2
SP
7323 * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
7324
12f2254b
SP
7325 * io/ftw.c: Include sys/param.h unconditionally.
7326
c3c7c360
SP
7327 * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
7328
d62aa75a
SP
7329 [BZ #17125]
7330 * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
7331 libc_freeres_ptr.
7332 (freecache): New function to free CACHE on exit.
7333
d69b7f5a
SP
7334 * sunrpc/xdr.c (xdr_string): Add comment about SIZE
7335 initialization.
7336
5efe06a1
DM
73372014-07-09 David S. Miller <davem@davemloft.net>
7338
7339 * sysdeps/sparc/fpu/libm-test-ulps: Update.
7340
7000d82e
DM
7341 * sysdeps/sparc/nptl/internaltypes.h: Delete.
7342 * sysdeps/sparc/nptl/sparc-nptl.h: New file.
7343 * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
7344 * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
7345 * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
7346 * sysdeps/sparc/nptl/sem_init.c: Likewise.
7347 * sysdeps/sparc/nptl/sem_post.c: Likewise.
7348 * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
7349 * sysdeps/sparc/nptl/sem_wait.c: Likewise.
7350 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
7351 * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
7352 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
7353 * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
7354
c213442d
AS
73552014-07-09 Andreas Schwab <schwab@suse.de>
7356
4a2552c3
AS
7357 * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
7358 output.
7359 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
7360 (do_test): Likewise.
7361
c213442d
AS
7362 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
7363
82374e65
WN
73642014-07-09 Will Newton <will.newton@linaro.org>
7365
7366 * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
7367 * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
7368 * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
7369 * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
7370 * sysdeps/hppa/start.S (_start): Likewise.
7371
6680738a
SP
73722014-07-09 Siddhesh Poyarekar <siddhesh@redhat.com>
7373
6ee3eab4
SP
7374 * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
7375
6680738a
SP
7376 * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
7377 defined.
7378
80b5c505
SP
73792014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com>
7380
e35c53e3
SP
7381 * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
7382 after checking that it is non-NULL.
7383
80b5c505
SP
7384 * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
7385
91f4b564
AZ
73862014-07-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7387
27b75f56
AZ
7388 * sysdeps/powerpc/memmove.c: Remove file.
7389 * sysdeps/powerpc/powerpc32/power4/memcopy.h
7390 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
7391 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
7392 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
7393 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
7394 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
7395 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
7396 string memmove instead of removed powerpc one.
7397
e7f95bb5
AZ
7398 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
7399 [weak_alias]: Fix compiler warning due trailing data.
7400 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
7401 [weak_alias]: Likewise.
7402 * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
7403 warnigs due missing definition of __strcpy_power7 and __strlen_power7.
7404
91f4b564
AZ
7405 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
7406 (__libc_ifunc_impl_list): Add memmove functions.
7407
7c33f1e5
SP
74082014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com>
7409
7410 * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
7411 Remove code.
7412 * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
7413 Likewise
7414 * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
7415 Likewise
7416 * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
7417 Likewise
7418 * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
7419 Likewise
7420 * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
7421 Likewise
7422 * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
7423 Likewise
7424 * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
7425 Likewise
7426 * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
7427 Likewise
7428 * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
7429 Likewise
7430 * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
7431 Likewise
7432 * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
7433 Likewise
7434 * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
7435 Likewise
7436 * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
7437 Likewise
7438 * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
7439 Likewise
7440 * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
7441 Likewise
7442 * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
7443 Likewise
7444
3f17b03b
AZ
74452014-07-07 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7446
87868c24
AZ
7447 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
7448 to avoid alignment traps in non-cacheable memory.
7449 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
7450
07aedd78
AZ
7451 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
7452 multiarch objects.
7453 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
7454 file: multiarch power7 memmove.
7455 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
7456 multiarch default memmove.
7457 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
7458 multiarch memove for powerpc32/power4.
7459
17762f66
AZ
7460 * string/bcopy.c: Use full path to include memmove.c.
7461 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
7462 multiarch objects.
7463 * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
7464 bcopy for powerpc64.
7465 * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
7466 bcopy for powerpc64.
7467 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
7468 and memmove implementations.
7469 * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
7470 optimized multiarch memmove for POWER7/powerpc64.
7471 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
7472 default multiarch memmove for powerpc64.
7473 * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
7474 multiarch for powerpc64.
7475 * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
7476 for POWER7/powerpc64.
7477 * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
7478 memmove for POWER7/powerpc64.
7479
d6f68bbe
AZ
7480 * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
7481 glibc default one.
7482
3f17b03b
AZ
7483 * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
7484 __ELF_NATIVE_CLASS equal to 64.
7485
08192659
RM
74862014-07-07 Roland McGrath <roland@hack.frob.com>
7487
f4c4021b
RM
7488 * sysdeps/nptl/lowlevellock.h: File removed.
7489
f083450f
RM
7490 * NEWS: NPTL is no longer an add-on!
7491 * nptl/internaltypes.h: Moved ...
7492 * sysdeps/nptl/internaltypes.h: ... here.
7493 * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
7494 * sysdeps/nptl/fork.c: Likewise.
7495 * sysdeps/nptl/gai_misc.h: Likewise.
7496 * sysdeps/nptl/librt-cancellation.c: Likewise.
7497 * sysdeps/nptl/jmp-unwind.c: Likewise.
7498 * sysdeps/nptl/setxid.h: Likewise.
7499 * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
7500 * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
7501 * sysdeps/unix/sysv/linux/arm/Implies: New file.
7502 * sysdeps/unix/sysv/linux/hppa/Implies: New file.
7503 * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
7504 * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
7505 * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
7506 * sysdeps/unix/sysv/linux/m68k/Implies: New file.
7507 * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
7508 * sysdeps/unix/sysv/linux/mips/Implies: New file.
7509 * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
7510 * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
7511 * sysdeps/unix/sysv/linux/sh/Implies: New file.
7512 * sysdeps/unix/sysv/linux/sparc/Implies: New file.
7513 * sysdeps/unix/sysv/linux/tile/Implies: New file.
7514 * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
7515 * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
7516 * nptl/Makeconfig: Moved ...
7517 * sysdeps/nptl/Makeconfig: ... here.
7518 * nptl/configure: File removed.
7519 * nptl/ANNOUNCE: File removed.
7520 * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
7521 * sysdeps/unix/sysv/linux/configure: Regenerated.
7522
08192659
RM
7523 * nptl/Makefile (routines): Add libc_pthread_init,
7524 libc_multiple_threads, register-atfork and unregister-atfork.
7525 (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
7526 (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
7527 lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
7528 pthread-pi-defines.sym, structsem.sym.
7529 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
7530 (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
7531 [$(subdir) = nptl] (tests): Add tst-setgetname.
7532 * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
7533 * sysdeps/unix/sysv/linux/sigaction.c: Just include
7534 <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
7535 [!LIBC_SIGACTION]: Remove aliases.
7536 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
7537 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
7538 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
7539 * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
7540 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
7541 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
7542 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
7543 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
7544 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
7545 * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
7546 (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
7547 __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
7548 __libc_allocate_rtsig_private.
7549 * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
7550 * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
7551 * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
7552 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
7553 * sysdeps/unix/sysv/linux/sleep.c: Likewise.
7554 * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
7555 * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
7556 * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
7557 * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
7558 * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
7559 * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
7560 * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
7561 * nptl/internaltypes.h: ... here.
7562 * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
7563 * sysdeps/nptl/jmp-unwind.c: ... here.
7564 * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
7565 * nptl/libc-lowlevellock.c: ... here.
7566 * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
7567 * nptl/libc_multiple_threads.c: ... here.
7568 * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
7569 * nptl/libc_pthread_init.c: ... here.
7570 * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
7571 * nptl/lowlevelbarrier.sym: ... here.
7572 * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
7573 * nptl/lowlevelcond.sym: ... here.
7574 * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
7575 * nptl/lowlevellock.c: ... here.
7576 * nptl/lowlevellock.h: Moved ...
7577 * sysdeps/nptl/lowlevellock.h: ... here.
7578 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
7579 * nptl/lowlevelrobustlock.c: ... here.
7580 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
7581 * nptl/lowlevelrobustlock.sym: ... here.
7582 * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
7583 * nptl/lowlevelrwlock.sym: ... here.
7584 * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
7585 * nptl/pt-fork.c: ... here.
7586 * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
7587 * nptl/pthread-pi-defines.sym: ... here.
7588 * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
7589 * nptl/pthread_attr_getaffinity.c: ... here.
7590 * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
7591 * nptl/pthread_attr_setaffinity.c: ... here.
7592 * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
7593 * nptl/pthread_mutex_cond_lock.c: ... here.
7594 * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
7595 Update #include.
7596 * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
7597 * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
7598 * nptl/pthread_once.c: ... here, replacing old file.
7599 * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
7600 * nptl/pthread_yield.c: ... here.
7601 * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
7602 * nptl/register-atfork.c: ... here.
7603 * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
7604 * nptl/sem_post.c: ... here.
7605 * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
7606 * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
7607 * nptl/sem_timedwait.c: ... here.
7608 * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
7609 * nptl/sem_trywait.c: ... here.
7610 * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
7611 * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
7612 * nptl/sem_wait.c: ... here.
7613 * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
7614 * nptl/structsem.sym: ... here.
7615 * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
7616 * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
7617 * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
7618 * nptl/unregister-atfork.c: ... here.
7619 * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
7620 * nptl/unwindbuf.sym: ... here.
7621 * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
7622 * sysdeps/nptl/fork.c: ... here.
7623 * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
7624 * sysdeps/nptl/fork.h: ... here.
7625 * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
7626 * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
7627 * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
7628 * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
7629 * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
7630 * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
7631 * sysdeps/unix/sysv/linux/getpid.c: ... here.
7632 * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
7633 * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
7634 * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
7635 * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
7636 * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
7637 * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
7638 * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
7639 * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
7640 * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
7641 * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
7642 * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
7643 * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
7644 * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
7645 * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
7646 * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
7647 * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
7648 * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
7649 * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
7650 * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
7651 * sysdeps/unix/sysv/linux/raise.c: ... here.
7652 * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
7653 * sysdeps/unix/sysv/linux/timer_create.c: ... here.
7654 * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
7655 * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
7656 * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
7657 * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
7658 * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
7659 * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
7660 * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
7661 * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
7662 * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
7663 * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
7664 * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
7665 * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
7666 * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
7667
96baf6ff
SP
76682014-07-04 Siddhesh Poyarekar <siddhesh@redhat.com>
7669
7670 * sysdeps/generic/memcopy.h: Add comment for
7671 MEMCPY_OK_FOR_FWD_MEMMOVE.
7672
6b7b14b2
WN
76732014-07-04 Will Newton <will.newton@linaro.org>
7674
1570a72b
WN
7675 * string/memchr.c: Merge from gnulib.
7676 [_LIBC]: Remove conditionals.
7677 (__ptr_t): Remove define.
7678 (LONG_MAX_32_BITS): Likewise.
7679 (LONG_MAX): Likewise.
7680 (MEMCHR): Use ANSI prototype and optimize algorithm.
7681
6b7b14b2
WN
7682 * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
7683
38851324
SP
76842014-07-03 Roland McGrath <roland@hack.frob.com>
7685
3d9eb57c
RM
7686 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
7687 (lll_futex_timed_wait_bitset): Fix syscall argument count.
7688
78b984ae
RM
7689 * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
7690 Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
7691 in a bare environment with no <stdlib.h> installed.
7692 * sysdeps/nptl/configure: Regenerated.
7693
2d5976a5
RM
7694 * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
7695
c1f5acd4
RM
7696 * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
7697 AC_EGREP_CPP for kernel header checks, so they only succeed if
7698 including <linux/version.h> actually works right.
7699 * sysdeps/unix/sysv/linux/configure: Regenerated.
7700
4d614fe5
RM
7701 * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
7702 value so it's not diagnosed as unused.
7703
38851324
SP
7704 * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
7705 thing) with "ifeq ($(subdir),rt)".
7706
b3ec00e5
RH
77072014-07-03 Richard Henderson <rth@redhat.com>
7708
69862e25
RH
7709 * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
7710 * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
7711 include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
7712
d5e16ade
RH
7713 * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
7714 (math_force_eval): New.
7715
ca7b945c
RH
7716 * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
7717 * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
7718
cd1175a3
RH
7719 * sysdeps/alpha/fpu/s_round.c: Remove file.
7720 * sysdeps/alpha/fpu/s_roundf.c: Remove file.
7721
b3ec00e5
RH
7722 * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
7723 (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
7724 * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
7725 (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
7726 (_dl_start, print_statistics): Likewise.
7727 * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
7728 HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
7729
7730 * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7731 * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7732 * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7733 * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7734 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7735 (HP_SMALL_TIMING_AVAIL): Define.
7736 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7737 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
7738 (HP_SMALL_TIMING_AVAIL): Define.
7739 * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7740 * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
7741
7742 * sysdeps/aarch64/hp-timing.h: New file.
7743
7744 * sysdeps/generic/hp-timing.h: Remove dead comment.
7745 * sysdeps/generic/hp-timing-common.h: New file.
7746 * sysdeps/alpha/hp-timing.h: Include it.
7747 (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
7748 * sysdeps/i386/i686/hp-timing.h: Likewise.
7749 * sysdeps/ia64/hp-timing.h: Likewise.
7750 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
7751 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
7752 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
7753 * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
7754 * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
7755 (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
7756 (hp_timing_t): New.
7757
7758 * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
7759 * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
7760 (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
7761 * elf/rtld.c (_dl_start_final): Likewise.
7762 * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
7763 * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7764 * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7765 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7766 * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7767 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7768 (HP_TIMING_DIFF_INIT): Remove.
7769 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7770 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
7771 (HP_TIMING_DIFF_INIT): Remove.
7772 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
7773 * sysdeps/i386/i686/hp-timing.c: Remove file.
7774 * sysdeps/x86_64/hp-timing.c: Remove file.
7775 * sysdeps/ia64/hp-timing.c: Remove file.
7776 * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
7777 * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
7778 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
7779 * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
7780
7781 * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
7782 * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
7783 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
7784 * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7785 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
7786 (HP_TIMING_ACCUM): Remove.
7787 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7788 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
7789 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
7790
7791 * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
7792 * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
7793 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
7794 * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
7795 * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
7796 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
7797 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
7798 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
7799
7800 * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
7801
225f410f
MR
78022014-07-03 Maciej W. Rozycki <macro@codesourcery.com>
7803
7804 * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
7805
3247f285
SP
78062014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
7807
7808 Sync up with gettext.
7809 * intl/loadmsgcat.c: Define O_BINARY if not defined.
7810 [_MSC_VER]: Include malloc.h
7811 [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
7812 (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
7813 (_nl_load_domain): Open DOMAIN_FILE in binary mode. Don't use
7814 TEMP_FAILURE_RETRY. Cast return of alloca.
7815 [!_LIBC] Call gl_rwlock_init.
7816 [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
7817
d12704c7
SP
78182014-07-02 Roland McGrath <roland@hack.frob.com>
7819
7820 * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
7821 before checking its value.
7822
99f8dc92
SP
78232014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
7824
05fdac77
SP
7825 * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
7826
99f8dc92
SP
7827 * debug/memcpy_chk.c: Don't include pagecopy.h.
7828 * debug/mempcpy_chk.c: Likewise.
7829 * string/memcpy.c: Likewise.
7830 * string/memmove.c: Likewise.
7831 * sysdeps/powerpc/memmove.c: Likewise.
7832 * sysdeps/generic/memcopy.h: Include pagecopy.h. Move
7833 definition of PAGE_COPY_FWD_MAYBE here...
7834 * sysdeps/generic/pagecopy.h: ... from here.
7835 * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
7836
bc8ea385
VR
78372014-07-02 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
7838 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7839
7840 * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
7841 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
7842 optimizations.
7843 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
7844 (__libc_ifunc_impl_list): Likewise.
7845 * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
7846 multiarch strcat for PPC64.
7847 * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
7848 * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
7849
fe5f34e4
RM
78502014-07-02 Roland McGrath <roland@hack.frob.com>
7851
7852 * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
7853
256aa665
SP
78542014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
7855
d4eb8195
SP
7856 * intl/loadmsgcat.c: Remove declaration of
7857 get_sysdep_segment_value.
7858 (get_sysdep_segment_value): Use ISO C style.
7859 (_nl_load_domain): Use ISO C style. Get rid of redundant
7860 semicolon. Fix typo and formatting in comment.
7861 (_nl_unload_domain): Use ISO C style.
7862
256aa665
SP
7863 * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
7864
b100f9aa
WN
78652014-07-02 Will Newton <will.newton@linaro.org>
7866
7867 * malloc/obstack.c: Merge from gnulib master.
7868 [HAVE_CONFIG_H]: Remove conditional code.
7869 [!_LIBC]: Include config.h.
7870 [!ELIDE_CODE]: Don't include inttypes.h, include
7871 stdint.h unconditionally.
7872 (print_and_abort): Mark as _Noreturn.
7873 (_obstack_allocated_p): Mark as __attribute_pure__.
7874 (obstack_free): Rename to __obstack_free.
7875 [!__attribute__]: Remove conditional code.
7876 * malloc/obstack.h: Merge from gnulib master.
7877 [__cplusplus]: Move conditional down.
7878 [!__attribute_pure__]: Define __attribute_pure__ here
7879 if it is not already defined.
7880 (_obstack_memory_used): Mark as __attribute_pure__.
7881 [!__obstack_free]: Define as obstack_free.
7882 [__GNUC__]: Remove check for ancient NeXT gcc.
7883
c4c41244
PE
78842014-07-02 Will Newton <will.newton@linaro.org>
7885 Paul Eggert <eggert@cs.ucla.edu>
7886
7887 * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
7888
e1e041c4
SP
78892014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
7890
7891 * resolv/gethnamaddr.c: Add comment warning that the file is
7892 not maintained.
7893
ccf431ff
CD
78942014-07-01 Carlos O'Donell <carlos@redhat.com>
7895
d34570a6
CD
7896 * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
7897 entries.
7898
ccf431ff
CD
7899 * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
7900 entry for aio_cancel and aio_cancel64.
7901 * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
7902 * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
7903 * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
7904 * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
7905 * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
7906 * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
7907 * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
7908 * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
7909 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
7910 * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
7911 * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
7912 * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
7913 * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
7914
ca06321d
RM
79152014-07-01 Roland McGrath <roland@hack.frob.com>
7916
7917 * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
7918 * nptl/pthread_mutex_lock.c: Likewise.
7919 * nptl/pthread_mutex_timedlock.c: Likewise.
7920 * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
7921
a1ac3184
RH
79222014-07-01 Richard henderson <rth@redhat.com>
7923
631021e0
RH
7924 * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
7925 (__isnan, __isnanl): Remove.
7926 * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
7927
a1ac3184
RH
7928 * sysdeps/alpha/fpu/libm-test-ulps: Update.
7929
0c1d731f
SL
79302014-07-01 Stefan Liebler <stli@linux.vnet.ibm.com>
7931
7932 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
7933
76985d3e
SP
79342014-07-01 Siddhesh Poyarekar <siddhesh@redhat.com>
7935
7936 * resolv/nss_dns/dns-host.c (getanswer_r)
7937 [MULTI_PTRS_ARE_ALIASES]: Remove code.
7938
b0cb3096
JM
79392014-07-01 Joseph Myers <joseph@codesourcery.com>
7940
7941 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
7942 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
7943 undefine.
7944 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
7945 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
7946
4d76cb39
RM
79472014-07-01 Roland McGrath <roland@hack.frob.com>
7948
7949 * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
7950 * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
7951
7952 * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
7953 * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
7954
7955 * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
7956 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
7957 ... here.
7958 * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
7959 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
7960
7961 * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
7962 * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
7963 * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
7964 * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
7965
7966 * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
7967 * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
7968 * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
7969 * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
7970 * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
7971 Moved ...
7972 * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
7973 ... here.
7974 * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
7975 * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
7976 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
7977 * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
7978 * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
7979 * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
7980 * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
7981 * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
7982 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
7983 * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
7984 * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
7985 * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
7986 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
7987 * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
7988 * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
7989 * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
7990 * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
7991 * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
7992 * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
7993 * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
7994 ... here.
7995 * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
7996 * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
7997 * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
7998 * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
7999 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
8000 * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
8001 * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
8002 * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
8003
0cdcad17
DH
80042014-07-01 David Holsgrove <david.holsgrove@xilinx.com>
8005
8006 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
8007 * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
8008 * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
8009 Add sysdep.
8010
9b71d0e3
AZ
80112014-06-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8012
8013 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8014
665390c2
JM
80152014-06-30 Joseph Myers <joseph@codesourcery.com>
8016
ae05a9d7
JM
8017 * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
8018 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
8019
a7672a2f
JM
8020 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
8021
665390c2
JM
8022 * sysdeps/arm/libm-test-ulps: Regenerated.
8023
d7a05d07
MR
80242014-06-30 Maciej W. Rozycki <macro@codesourcery.com>
8025 Roland McGrath <roland@hack.frob.com>
8026
8027 * test-skeleton.c (signal_handler): Kill the whole process group
8028 before killing the child individually.
8029 (main): Report any failure on `setpgid'.
8030
46f1d8a6
RM
80312014-06-30 Roland McGrath <roland@hack.frob.com>
8032
8033 * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
8034 from _TLS_H to _ARM_NPTL_TLS_H.
8035 (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
8036 * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
8037
9c37ec0b
JM
80382014-06-30 Joseph Myers <joseph@codesourcery.com>
8039
ce9c5b3e
JM
8040 [BZ #16539]
8041 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
8042 (__expm1l): Return argument unchanged when small but not
8043 subnormal.
8044
3a6e9887
JM
8045 * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
8046 include macro name.
8047 (_FP_UNPACK_RAW_1_P): Likewise.
8048 (_FP_PACK_RAW_1): Likewise.
8049 (_FP_PACK_RAW_1_P): Likewise.
8050 (_FP_MUL_MEAT_1_wide): Likewise.
8051 (_FP_MUL_MEAT_DW_1_hard): Likewise.
8052 (_FP_MUL_MEAT_1_hard): Likewise.
8053 (_FP_DIV_MEAT_1_imm): Likewise.
8054 (_FP_DIV_MEAT_1_udiv_norm): Likewise.
8055 (_FP_DIV_MEAT_1_udiv): Likewise.
8056 * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
8057 (_FP_UNPACK_RAW_2): Likewise.
8058 (_FP_UNPACK_RAW_2_P): Likewise.
8059 (_FP_PACK_RAW_2): Likewise.
8060 (_FP_PACK_RAW_2_P): Likewise.
8061 (_FP_MUL_MEAT_DW_2_wide): Likewise.
8062 (_FP_MUL_MEAT_2_wide): Likewise.
8063 (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
8064 (_FP_MUL_MEAT_2_wide_3mul): Likewise.
8065 (_FP_MUL_MEAT_DW_2_gmp): Likewise.
8066 (_FP_MUL_MEAT_2_gmp): Likewise.
8067 (_FP_DIV_MEAT_2_udiv): Likewise.
8068 * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
8069 (_FP_FRAC_SRL_4): Likewise.
8070 (_FP_FRAC_SRST_4): Likewise.
8071 (_FP_FRAC_SRS_4): Likewise.
8072 (_FP_UNPACK_RAW_4): Likewise.
8073 (_FP_UNPACK_RAW_4_P): Likewise.
8074 (_FP_PACK_RAW_4): Likewise.
8075 (_FP_PACK_RAW_4_P): Likewise.
8076 (_FP_MUL_MEAT_DW_4_wide): Likewise.
8077 (_FP_MUL_MEAT_4_wide): Likewise.
8078 (_FP_MUL_MEAT_4_gmp): Likewise.
8079 (umul_ppppmnnn): Likewise.
8080 (_FP_DIV_MEAT_4_udiv): Likewise.
8081 (__FP_FRAC_ADD_4): Likewise.
8082 (__FP_FRAC_SUB_3): Likewise.
8083 (__FP_FRAC_SUB_4): Likewise.
8084 (__FP_FRAC_DEC_3): Likewise.
8085 (__FP_FRAC_DEC_4): Likewise.
8086 (__FP_FRAC_ADDI_4): Likewise.
8087 * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
8088 (_FP_FRAC_SRL_8): Likewise.
8089 (_FP_FRAC_SRS_8): Likewise.
8090
9c37ec0b
JM
8091 * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
8092 include macro name.
8093 (FP_UNPACK_RAW_EP): Likewise.
8094 (FP_PACK_RAW_E): Likewise.
8095 (FP_PACK_RAW_EP): Likewise.
8096 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
8097 (_FP_ISSIGNAN): Likewise.
8098 (_FP_ADD_INTERNAL): Likewise.
8099 (_FP_FMA): Likewise.
8100 (_FP_CMP): Likewise.
8101 (_FP_SQRT): Likewise.
8102 (_FP_TO_INT): Likewise.
8103 (_FP_FROM_INT): Likewise.
8104 (FP_EXTEND): Likewise.
8105 (_FP_DIV_MEAT_N_loop): Likewise.
8106
2125f674
MR
81072014-06-30 Maciej W. Rozycki <macro@codesourcery.com>
8108
8109 * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
8110 throughout.
8111
edea4028
JM
81122014-06-29 Joseph Myers <joseph@codesourcery.com>
8113
8114 [BZ #17097]
8115 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
8116 result with correct sign in case of exponents that produce
8117 overflow except for X very close to 1.
8118
dd0ba018
PE
81192014-06-28 Paul Eggert <eggert@cs.ucla.edu>
8120
8121 mktime: merge #if/#ifdef usage from glibc
8122 * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
8123 as that works with both Glibc's and Gnulib's style.
8124 See thread starting at Siddhesh Poyarekar's bug report at:
8125 http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
8126
64df73c2
SP
81272014-06-28 Siddhesh Poyarekar <siddhesh@redhat.com>
8128
8129 * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
8130 * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
8131 * sysdeps/tile/tilegx/memmove.c: Remove file.
8132
f1eafb41
JM
81332014-06-27 Joseph Myers <joseph@codesourcery.com>
8134
8135 * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
8136 abi-name definition.
8137 * scripts/soversions.awk: Do not handle or generate ABI lines.
8138 * shlib-versions: Remove ABI entries.
8139 * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
8140 * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
8141
58eb0862
RM
81422014-06-27 Roland McGrath <roland@hack.frob.com>
8143
37caf178
RM
8144 * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
8145 * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
8146 * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
8147 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
8148 * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
8149 * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
8150 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
8151 Moved ...
8152 * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
8153 ... here.
8154 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
8155 * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
8156 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
8157 * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
8158 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
8159 * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
8160 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
8161 * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
8162 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
8163 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
8164 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
8165 * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
8166 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
8167 Moved ...
8168 * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
8169 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
8170 * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
8171 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
8172 * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
8173 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
8174 Moved ...
8175 * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
8176 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
8177 Moved ...
8178 * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
8179 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
8180 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
8181 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
8182 Moved ...
8183 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
8184 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
8185 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
8186 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
8187 * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
8188 * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
8189 * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
8190 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
8191 Moved ...
8192 * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
8193 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
8194 * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
8195 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
8196 Moved ...
8197 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
8198 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
8199 Moved ...
8200 * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
8201 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
8202 * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
8203 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
8204 Moved ...
8205 * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
8206 ... here.
8207 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
8208 Identical file removed.
8209 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
8210 Moved ...
8211 * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
8212 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
8213 Identical file removed.
8214 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
8215 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
8216 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
8217 Moved ...
8218 * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
8219 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
8220 Identical file removed.
8221 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
8222 * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
8223 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
8224 Identical file removed.
8225 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
8226 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
8227 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
8228 Identical file removed.
8229 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
8230 * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
8231 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
8232 Identical file removed.
8233 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
8234 Moved ...
8235 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
8236 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
8237 Identical file removed.
8238 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
8239 Moved ...
8240 * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
8241 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
8242 * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
8243 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
8244 Identical file removed.
8245 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
8246 Moved ...
8247 * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
8248 ... here.
8249 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
8250 Identical file removed.
8251 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
8252 Moved ...
8253 * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
8254 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
8255 Identical file removed.
8256 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
8257 Moved ...
8258 * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
8259 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
8260 * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
8261 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
8262 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
8263 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
8264 Moved ...
8265 * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
8266 * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
8267 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
8268
58eb0862
RM
8269 * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
8270 SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
8271 * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
8272 * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
8273 * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
8274
6f12d062
AS
82752014-06-27 Arjun Shankar <arjun.is@lostca.se>
8276
8277 [BZ #17092]
8278 * nscd/nscd.c (monitor_child): Return exit status of child
8279 instead of return value from wait syscall.
8280
be254932
JM
82812014-06-27 Joseph Myers <joseph@codesourcery.com>
8282
cb403c34
JM
8283 * configure.ac (libc_commonpagesize): Remove variable.
8284 (libc_relro_required): Likewise.
8285 (libc_cv_z_relro): Remove configure test.
8286 * configure: Regenerated.
8287 * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
8288 variable.
8289 (libc_relro_required): Likewise.
8290 * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
8291 (libc_relro_required): Likewise.
8292 * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
8293 (libc_relro_required): Likewise.
8294 * sysdeps/arm/preconfigure: Regenerated.
8295 * sysdeps/ia64/preconfigure: Remove file.
8296 * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
8297 variable.
8298 (libc_relro_required): Likewise.
8299
be254932
JM
8300 [BZ #16561]
8301 [BZ #16562]
8302 * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
8303 (__ieee754_yn): Set FE_TONEAREST mode internally and then
8304 recompute overflowing results in original rounding mode.
8305 * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
8306 (__ieee754_ynf): Set FE_TONEAREST mode internally and then
8307 recompute overflowing results in original rounding mode.
8308 * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
8309 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8310 recompute overflowing results in original rounding mode.
8311 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
8312 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8313 recompute overflowing results in original rounding mode.
8314 * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
8315 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
8316 recompute overflowing results in original rounding mode.
8317 * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
8318 (libc_feholdsetround_ctx): New macro.
8319 * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
8320 * sysdeps/i386/fpu/libm-test-ulps: Update.
8321 * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
8322
b351d85a
JM
83232014-06-26 Joseph Myers <joseph@codesourcery.com>
8324
8325 * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
8326 [__PIC__] (PSEUDO): Use name of _nocancel entry point in
8327 corresponding .cpsetup call.
8328
3cb4de47
RM
83292014-06-26 Roland McGrath <roland@hack.frob.com>
8330
8331 * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
8332 * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
8333 * sysdeps/arm/Makefile [$(subdir) = csu]
8334 (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
8335 (static-only-routines): Add aeabi_read_tp here.
8336 (shared-only-routines): Add libc-aeabi_read_tp here.
8337 (CFLAGS-libc-start.c): Add -fexceptions here.
8338 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
8339 (sysdep_routines, static-only-routines, shared-only-routines):
8340 Don't add to these here.
8341 (CFLAGS-libc-start.c): Likewise.
8342
8343 * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
8344 * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
8345 * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
8346 * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
8347 * sysdeps/arm/Makefile [$(subdir) = rt]
8348 (librt-sysdep_routines, librt-shared-only-routines):
8349 Append rt-aeabi_unwind_cpp_pr1 here.
8350 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
8351 (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
8352 * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
8353 (libpthread-sysdep_routines, libpthread-shared-only-routines):
8354 Append nptl-aeabi_unwind_cpp_pr1 here.
8355 (tests): Filter out tst-cleanupx4 here.
8356 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
8357 (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
8358 Don't do those here.
8359
354426bb
JM
83602014-06-26 Joseph Myers <joseph@codesourcery.com>
8361
8362 * scripts/list-sources.sh: Do not handle ports specially.
8363
28b0a8c9
RM
83642014-06-26 Roland McGrath <roland@hack.frob.com>
8365
a3dd035d
RM
8366 * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
8367 * sysdeps/arm/feupdateenv.c: Likewise.
8368
28b0a8c9
RM
8369 * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
8370
e66a8203
JM
83712014-06-26 Joseph Myers <joseph@codesourcery.com>
8372
8373 * manual/texinfo.tex: Update to version 2014-05-05.10 with
8374 trailing whitespace removed.
8375 * scripts/config.guess: Update to version 2014-03-23.
8376 * scripts/config.sub: Update to version 2014-05-01
8377 * scripts/install-sh: Update to version 2013-12-25.23.
8378 * scripts/move-if-change: Update from gnulib.
8379
74171115
SP
83802014-06-26 Siddhesh Poyarekar <siddhesh@redhat.com>
8381
b97c9ce5
SP
8382 * debug/memmove_chk.c: Remove pagecopy.h include.
8383
4000f892
SP
83842014-06-26 Paul Eggert <eggert@cs.ucla.edu>
8385
74171115
SP
8386 * time/mktime.c (leapyear): Remove inline keyword. The code is now
8387 identical to gnulib mktime.
8388
a8779c28
JM
83892014-06-26 Joseph Myers <joseph@codesourcery.com>
8390
e64708de
JM
8391 * configure.ac: Do not test for machine being rs6000. Do not test
8392 for powerpc*-*soft.
8393 * configure: Regenerated.
8394
a8779c28
JM
8395 * configure.ac (libc_cv_asm_cfi_directives): Remove configure
8396 test.
8397 * configure: Regenerated.
8398 * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
8399 * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
8400 Remove configure test.
8401 * sysdeps/arm/configure: Regenerated.
8402 * sysdeps/nptl/configure.ac: Do not check
8403 libc_cv_asm_cfi_directives.
8404 * sysdeps/nptl/configure: Regenerated.
8405 * sysdeps/x86_64/nptl/configure.ac: Remove file.
8406 * sysdeps/x86_64/nptl/configure: Remove generated file.
8407 * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
8408 unconditional.
8409 [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
8410
2aac0a86
SP
84112014-06-26 Siddhesh Poyarekar <siddhesh@redhat.com>
8412
059bf913
SP
8413 * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
8414 * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
8415 (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
8416 it is defined.
8417
4cf5b6d0
SP
8418 * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
8419 instead of whether it is defined.
8420 * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
8421 * sysdeps/hppa/dl-machine.h: Likewise.
8422 * sysdeps/ia64/dl-machine.h: Likewise.
8423 * sysdeps/m68k/dl-machine.h: Likewise.
8424 * sysdeps/microblaze/dl-machine.h: Likewise.
8425 * sysdeps/mips/dl-machine.: Likewise.
8426 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
8427 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
8428 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
8429 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
8430 * sysdeps/sh/dl-machine.h: Likewise.
8431 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
8432 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
8433 * sysdeps/tile/dl-machine.h: Likewise.
8434 * sysdeps/x86_64/dl-machine.h: Likewise.
8435
2aac0a86
SP
8436 * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
8437 code.
8438 (verify_persistent_db): Likewise.
8439
6ad2df0b
RM
84402014-06-26 Roland McGrath <roland@hack.frob.com>
8441
d8a483f3
RM
8442 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
8443 * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
8444 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
8445 * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
8446 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
8447 Moved ...
8448 * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
8449 ... here.
8450 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
8451 * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
8452 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
8453 Identical file removed.
8454 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
8455 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
8456 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
8457 * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
8458 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
8459 * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
8460 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
8461 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
8462 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
8463 * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
8464 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
8465 Moved ...
8466 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
8467 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
8468 * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
8469 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
8470 * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
8471 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
8472 Moved ...
8473 * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
8474 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
8475 * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
8476 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
8477 * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
8478 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
8479 Identical file removed.
8480 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
8481 * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
8482 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
8483 * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
8484 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
8485 Moved ...
8486 * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
8487 ... here.
8488 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
8489 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
8490 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
8491 * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
8492 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
8493 * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
8494 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
8495 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
8496 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
8497 * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
8498 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
8499 Moved ...
8500 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
8501 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
8502 Moved ...
8503 * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
8504 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
8505 * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
8506 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
8507 Moved ...
8508 * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
8509 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
8510 * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
8511
52ae23b4
RM
8512 * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
8513 folded into ...
8514 * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
8515 * sysdeps/unix/sysv/linux/s390/Versions
8516 (libpthread: GLIBC_2.19): New version set.
8517 * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
8518 * sysdeps/unix/sysv/linux/s390/s390-64/Versions
8519 (librt: GLIBC_2.3.3): New version set.
8520 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
8521 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
8522 * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
8523 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
8524 * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
8525 * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
8526 * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
8527 * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
8528 * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
8529 * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
8530 * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
8531 * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
8532 * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
8533 * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
8534 * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
8535 * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
8536 * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
8537 * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
8538 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
8539 * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
8540 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
8541 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
8542 * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
8543 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
8544 * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
8545 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
8546 * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
8547 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
8548 * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
8549 * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
8550 * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
8551 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
8552 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
8553 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
8554 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
8555 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
8556 * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
8557 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
8558 * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
8559 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
8560 * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
8561 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
8562 * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
8563 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
8564 * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
8565
39507e4a
RM
8566 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
8567 * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
8568 (__libc_vfork): Define the function under this name.
8569 [!NOT_IN_libc] (__vfork): Make this an alias.
8570 [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
8571 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
8572 * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
8573 (__libc_vfork): Define the function under this name.
8574 [!NOT_IN_libc] (__vfork): Make this an alias.
8575 [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
8576 * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
8577 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
8578 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
8579 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
8580 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
8581
e549ee56
RM
8582 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
8583 code that was previously under [RESET_PID].
8584 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
8585 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
8586 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
8587
6ad2df0b
RM
8588 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
8589 * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
8590 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
8591 * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
8592 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
8593 * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
8594 * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
8595 * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
8596 * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
8597 * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
8598 * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
8599 Moved ...
8600 * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
8601 * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
8602 * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
8603 * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
8604 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
8605 * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
8606 * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
8607 * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
8608 * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
8609 * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
8610 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
8611 * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
8612 * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
8613 * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
8614 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
8615 * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
8616 * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
8617 * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
8618 * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
8619 * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
8620 * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
8621 * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
8622 * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
8623 * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
8624 * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
8625 * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
8626 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
8627 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
8628 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
8629
7c1c1d8e
RM
86302014-06-25 Roland McGrath <roland@hack.frob.com>
8631
8632 * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
8633 that was previously under [RESET_PID].
8634 * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
8635
3e239be6
JM
86362014-06-25 Joseph Myers <joseph@codesourcery.com>
8637
74385da5
JM
8638 * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
8639 not undefine and redefine.
8640 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
8641 [O_CLOEXEC]: Make code unconditional.
8642 (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
8643 * sysdeps/unix/sysv/linux/shm_open.c: Do not include
8644 <kernel-features.h>.
8645 [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
8646 conditional variable definition.
8647 (shm_open) [O_CLOEXEC]: Make code unconditional.
8648 (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
8649 code.
8650
c2570a0b
JM
8651 * configure.ac (USE_REGPARMS): Don't define here.
8652 * configure: Regenerated.
8653 * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
8654 * sysdeps/i386/configure: Regenerated.
8655
11b076bb
JM
8656 * nptl/createthread.c: Don't include kernel-features.h.
8657 * nptl/pthread_cancel.c: Likewise.
8658 * nptl/pthread_condattr_setclock.c: Likewise.
8659 * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
8660 * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
8661 * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
8662 * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
8663 * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
8664 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
8665 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
8666 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
8667 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
8668 * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
8669 * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
8670 * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
8671 * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
8672 * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
8673 * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
8674 * nscd/gai.c: Likewise.
8675 * nss/nss_db/db-open.c: Likewise.
8676 * sysdeps/generic/ldsodefs.h: Likewise.
8677 * sysdeps/sh/nptl/tls.h: Likewise.
8678 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
8679 * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
8680 * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
8681 * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
8682 * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
8683 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
8684 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
8685 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
8686 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
8687 * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
8688 * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
8689 * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
8690 * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
8691 * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
8692 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
8693 * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
8694 * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
8695 * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
8696 * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
8697 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
8698 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
8699 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
8700 * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
8701 * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
8702 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
8703 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
8704 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
8705 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
8706 * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
8707 * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
8708 * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
8709 * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
8710 * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
8711 * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
8712 * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
8713 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
8714 * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
8715 * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
8716 * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
8717 * sysdeps/unix/sysv/linux/if_index.c: Likewise.
8718 * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
8719 * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
8720 * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
8721 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
8722 * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
8723 * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
8724 * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
8725 * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
8726 * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
8727 * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
8728 * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
8729 * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
8730 * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
8731 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
8732 * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
8733 * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
8734 * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
8735 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
8736 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
8737 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
8738 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
8739 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
8740 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
8741 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
8742 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
8743 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
8744 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
8745 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
8746 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
8747 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
8748 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
8749 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
8750 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
8751 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
8752 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
8753 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
8754 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
8755 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
8756 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
8757 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
8758 * sysdeps/unix/sysv/linux/pread.c: Likewise.
8759 * sysdeps/unix/sysv/linux/pread64.c: Likewise.
8760 * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
8761 * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
8762 * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
8763 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
8764 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
8765 * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
8766 * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
8767 * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
8768 * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
8769 * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
8770 * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
8771 * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
8772 * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
8773 * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
8774 * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
8775 * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
8776 * sysdeps/unix/sysv/linux/syslog.c: Likewise.
8777 * sysdeps/unix/sysv/linux/system.c: Likewise.
8778 * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
8779 * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
8780 * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
8781 * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
8782 * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
8783 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
8784 * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
8785
92072d57
JM
8786 * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
8787 * configure: Regenerated.
8788 * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
8789
3e239be6
JM
8790 * configure.ac (base_machine): Do not set specially for particular
8791 machines here.
8792 * configure: Regenerated.
8793 * sysdeps/powerpc/preconfigure: Move machine and base_machine
8794 settings from configure.ac.
8795 * sysdeps/i386/preconfigure: New file.
8796 * sysdeps/s390/preconfigure: Likewise.
8797 * sysdeps/sh/preconfigure: Likewise.
8798 * sysdeps/sparc/preconfigure: Likewise.
8799
06d50baa
RM
88002014-06-25 Roland McGrath <roland@hack.frob.com>
8801
74836003
RM
8802 * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
8803 * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
8804 * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
8805 * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
8806 * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
8807 * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
8808 * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
8809 * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
8810 * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
8811 * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
8812 * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
8813 * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
8814 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
8815 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
8816 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
8817 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
8818 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
8819 * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
8820 * sysdeps/sparc/sparc64/Makefile: ... appended here.
8821
8822 * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
8823 * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
8824 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
8825 * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
8826 * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
8827 * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
8828 * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
8829 * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
8830 * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
8831 * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
8832 * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
8833 * sysdeps/sparc/sparc32/sem_post.c: ... here.
8834 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
8835 * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
8836 * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
8837 * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
8838 * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
8839 * sysdeps/sparc/sparc32/sem_wait.c: ... here.
8840 * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
8841 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
8842 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
8843 * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
8844 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
8845 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
8846 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
8847 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
8848 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
8849 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
8850 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
8851 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
8852 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
8853 * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
8854 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
8855 * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
8856 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
8857 * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
8858 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
8859 * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
8860
06d50baa
RM
8861 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
8862 * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
8863 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
8864 * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
8865 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
8866 Moved ...
8867 * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
8868 ... here.
8869 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
8870 * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
8871 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
8872 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
8873 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
8874 Moved ...
8875 * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
8876 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
8877 * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
8878 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
8879 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
8880 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
8881 * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
8882 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
8883 Moved ...
8884 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
8885 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
8886 Moved ...
8887 * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
8888 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
8889 * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
8890 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
8891 Moved ...
8892 * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
8893 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
8894 * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
8895 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
8896 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
8897 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
8898 * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
8899 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
8900 * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
8901 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
8902 Moved ...
8903 * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
8904 ... here.
8905 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
8906 * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
8907 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
8908 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
8909 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
8910 Moved ...
8911 * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
8912 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
8913 * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
8914 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
8915 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
8916 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
8917 * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
8918 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
8919 Moved ...
8920 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
8921 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
8922 Moved ...
8923 * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
8924 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
8925 * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
8926 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
8927 Moved ...
8928 * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
8929 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
8930 * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
8931 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
8932 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
8933
a4ccbc9b
JM
89342014-06-25 Joseph Myers <joseph@codesourcery.com>
8935
0828edbf
JM
8936 * timezone/checktab.awk: Update from tzcode 2014e.
8937 * timezone/private.h: Likewise.
8938 * timezone/tzfile.h: Likewise.
8939 * timezone/zdump.c: Likewise.
8940 * timezone/zic.c: Likewise.
8941
a4ccbc9b
JM
8942 * sysdeps/unix/sysv/linux/kernel-features.h
8943 (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
8944 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
8945 [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
8946 (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
8947 Remove conditional code.
8948
9aea0cb8
WN
89492014-06-25 Will Newton <will.newton@linaro.org>
8950
8951 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
8952 (_dl_arm_cap_flags): Add HWCAP2 values.
8953 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
8954 (_DL_HWCAP_COUNT): Increase to 37.
8955 (_DL_HWCAP_LAST): New define.
8956 (_DL_HWCAP2_LAST): New define.
8957 (_dl_procinfo): Add support for printing
8958 AT_HWCAP2 entries.
8959 (_dl_string_hwcap): Use _dl_hwcap_string.
8960
6eaa65ce
AZ
89612014-06-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8962
8963 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8964
0f5b7185
JM
89652014-06-25 Joseph Myers <joseph@codesourcery.com>
8966
cfd2ea50
JM
8967 * README: Do not mention ports directory.
8968
cecf2ed4
JM
8969 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
8970 Remove macro.
8971 * sysdeps/unix/sysv/linux/futimes.c: Do not include
8972 <kernel-features.h>.
8973 [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
8974 conditional variable definition.
8975 (__futimes): Update comment.
8976 (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
8977 (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
8978
a638de82
JM
8979 [BZ #16560]
8980 * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
8981 arguments close to 0.
8982 * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
8983 Likewise.
8984 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
8985 Likewise.
8986 * math/auto-libm-test-in: Add more tests of exp10.
8987 * math/auto-libm-test-out: Regenerated.
8988 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
8989
0f5b7185
JM
8990 * sysdeps/unix/sysv/linux/kernel-features.h
8991 (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
8992 * sysdeps/unix/sysv/linux/readv.c: Do not include
8993 <kernel-features.h>.
8994 [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
8995 [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
8996 (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
8997 unconditional.
8998 (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
8999 conditional code.
9000 * sysdeps/unix/sysv/linux/writev.c: Do not include
9001 <kernel-features.h>.
9002 [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
9003 [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
9004 (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
9005 unconditional.
9006 (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
9007 conditional code.
9008
c7aec4be
WN
90092014-06-25 Will Newton <will.newton@linaro.org>
9010
9011 * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
9012 comment changes throughout the file. Remove checks
9013 for HAVE_*_H definitions that are not required.
9014 (__gen_tempname): Call abort if an unknown kind value is
9015 passed.
9016
c5241f95
AS
90172014-06-25 Andreas Schwab <schwab@suse.de>
9018
9019 [BZ #17086]
9020 * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
9021 scalbln, scalblnf, scalblnl in libc.
9022
911422da
SP
90232014-06-25 Siddhesh Poyarekar <siddhesh@redhat.com>
9024
9025 [BZ #17086]
9026 * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
9027 * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
9028 * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
9029
0d749bbe
RM
90302014-06-24 Roland McGrath <roland@hack.frob.com>
9031
9032 * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
9033 * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
9034 * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
9035 * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
9036 Update #include.
9037 * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
9038 * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
9039 Update #include.
9040 * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
9041 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
9042 * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
9043 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
9044 * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
9045 * sysdeps/x86/bits/pthreadtypes.h: ... here.
9046 * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
9047 * sysdeps/x86/bits/semaphore.h: ... here.
9048 * sysdeps/x86/nptl/elide.h: Moved ...
9049 * sysdeps/x86/elide.h: ... here.
9050 * sysdeps/x86_64/nptl/Implies: File removed.
9051 * sysdeps/i386/nptl/Implies: File removed.
9052
0ea5d373
JM
90532014-06-24 Joseph Myers <joseph@codesourcery.com>
9054
4060283d
JM
9055 [BZ #16539]
9056 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
9057 return the argument for normal arguments with exponent below -64.
9058 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
9059 Likewise.
9060 * math/auto-libm-test-in: Add another test of expm1.
9061 * math/auto-libm-test-out: Regenerated.
9062
e7dd3c8c
JM
9063 [BZ #16287]
9064 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
9065 calling __erfcl for arguments at least 16.
9066 * math/auto-libm-test-in: Add more tests of erf.
9067 * math/auto-libm-test-out: Regenerated.
9068
0ea5d373
JM
9069 * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
9070 individual architectures.
9071 * sysdeps/unix/sysv/linux/configure: Regenerated.
9072 * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
9073 * sysdeps/unix/sysv/linux/i386/configure: New generated file.
9074 * sysdeps/unix/sysv/linux/powerpc/configure.ac
9075 (ldd_rewrite_script): Define variable.
9076 * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
9077 * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
9078 file.
9079 * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
9080 generated file.
9081 * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
9082 * sysdeps/unix/sysv/linux/s390/configure: New generated file.
9083 * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
9084 * sysdeps/unix/sysv/linux/sh/configure: New generated file.
9085 * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
9086 * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
9087 * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
9088 * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
9089
2307e126
SP
90902014-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
9091
9092 [BZ #17084]
9093 * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
9094 Rename member __data.d to __data.__elision_data.
9095
c0a4ed77
W
90962014-06-24 Wilco <wdijkstr@arm.com>
9097
9098 * NEWS: Add 16918 to fixed bug list.
9099
b8c00573
W
91002014-06-24 Wilco <wdijkstr@arm.com>
9101
9102 * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
9103
b5570d92
W
91042014-06-24 Wilco <wdijkstr@arm.com>
9105
9106 * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
9107 * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
9108 (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
9109 (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
9110 (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
9111 * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
9112 * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
9113 Use _FPU_MASK_RM.
9114
947bdca2
W
91152014-06-24 Wilco <wdijkstr@arm.com>
9116
9117 * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
9118
00f669ed
W
91192014-06-24 Wilco <wdijkstr@arm.com>
9120
9121 * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
9122 * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
9123 * sysdeps/arm/fesetround.c (fesetround): Remove space.
9124 * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
9125
db59bad3
W
91262014-06-24 Wilco <wdijkstr@arm.com>
9127
9128 [BZ #16918]
9129 * sysdeps/arm/feupdateenv.c (feupdateenv):
9130 Rewrite to reduce FPSCR accesses and fix return value.
9131
001f7b77
W
91322014-06-24 Wilco <wdijkstr@arm.com>
9133
9134 * sysdeps/arm/fclrexcpt.c (feclearexcept):
9135 Optimize to avoid unnecessary FPSCR writes.
9136 * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
9137 * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
9138 * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
9139 * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
9140
4841e6a6
W
91412014-06-24 Wilco <wdijkstr@arm.com>
9142
9143 * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
9144 * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
9145 * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
9146 * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
9147 Call libc_fetestexcept_vfp.
9148 * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
9149 * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
9150 __SOFTFP__ ifdef so that they can be built for softfp.
9151
0813022c
SP
91522014-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
9153
08e5862f
SP
9154 * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
9155 argument type signed char.
9156
0813022c
SP
9157 * Makerules (check-abi): Dump diff of symlist if the test
9158 fails.
9159
3fc7236a
RM
91602014-06-23 Roland McGrath <roland@hack.frob.com>
9161
aba8ef95
RM
9162 * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
9163 using abort.
9164
3fc7236a
RM
9165 * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
9166 Remove unused variable ST.
9167
4da6db51
JM
91682014-06-23 Joseph Myers <joseph@codesourcery.com>
9169
4648909d
JM
9170 [BZ #16354]
9171 [BZ #17061]
9172 * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
9173 small arguments before calling __expm1.
9174 * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
9175 small arguments before calling __expm1f.
9176 * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
9177 small arguments before calling __expm1l.
9178 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
9179 Likewise.
9180 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
9181 * math/auto-libm-test-in: Add more cosh tests. Do not allow
9182 spurious underflow for some cosh tests.
9183 * math/auto-libm-test-out: Regenerated.
9184 * sysdeps/i386/fpu/libm-test-ulps: Update.
9185
46a3d3c7
JM
9186 [BZ #17050]
9187 * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
9188 (__ieee754_y1): Set errno if return value overflows.
9189 * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
9190 (__ieee754_y1f): Set errno if return value overflows.
9191 * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
9192 (__ieee754_y1l): Set errno if return value overflows.
9193 * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
9194 (__ieee754_y1l): Set errno if return value overflows.
9195 * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
9196 * math/auto-libm-test-out: Regenerated.
9197
863893ec
JM
9198 * math/gen-auto-libm-tests.c: Document use of
9199 ignore-zero-inf-sign.
9200 (input_flag_type): Add value flag_ignore_zero_inf_sign.
9201 (input_flags): Add ignore-zero-inf-sign.
9202 (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
9203 * math/gen-libm-test.pl (generate_testfile): Handle
9204 ignore-zero-inf-sign.
9205 * math/auto-libm-test-in: Mark some cpow tests with
9206 ignore-zero-inf-sign and some with xfail-rounding.
9207 * math/auto-libm-test-out: Regenerated.
9208 * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
9209 * sysdeps/i386/fpu/libm-test-ulps: Update.
9210 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9211
4da6db51
JM
9212 [BZ #16315]
9213 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
9214 overflowing or underflowing operations take place with sign of
9215 result.
9216 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
9217 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
9218 * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
9219 (__ieee754_pow): Recompute overflowing and underflowing results in
9220 original rounding mode.
9221 * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
9222 (__powl_helper): Allow negative argument X and scale negated value
9223 as needed. Avoid passing value outside [-1, 1] to f2xm1.
9224 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
9225 overflowing or underflowing operations take place with sign of
9226 result.
9227 * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
9228 Include <math.h>.
9229 * math/auto-libm-test-in: Add more tests of pow.
9230 * math/auto-libm-test-out: Regenerated.
9231 * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
9232 (pow_tonearest_test_data): Remove.
9233 (pow_test_tonearest): Likewise.
9234 (pow_towardzero_test_data): Likewise.
9235 (pow_test_towardzero): Likewise.
9236 (pow_downward_test_data): Likewise.
9237 (pow_test_downward): Likewise.
9238 (pow_upward_test_data): Likewise.
9239 (pow_test_upward): Likewise.
9240 (main): Don't call removed functions.
9241 * sysdeps/i386/fpu/libm-test-ulps: Update.
9242 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9243
5686b236
RM
92442014-06-23 Roland McGrath <roland@hack.frob.com>
9245
9246 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
9247 Moved ...
9248 * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
9249 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
9250 Moved ...
9251 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
9252 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
9253 Moved ...
9254 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
9255 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
9256 Moved ...
9257 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
9258 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
9259 File removed.
9260 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
9261 File removed.
9262 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
9263 File removed.
9264 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
9265 File removed.
9266 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
9267 File removed.
9268 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
9269 File removed.
9270 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
9271 File removed.
9272 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
9273 File removed.
9274 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
9275 File removed.
9276 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
9277 File removed.
9278 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
9279 File removed.
9280 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
9281 File removed.
9282 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
9283 Moved ...
9284 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
9285 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
9286 Moved ...
9287 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
9288 ... here.
9289 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
9290 Moved ...
9291 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
9292 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
9293 Moved ...
9294 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
9295 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
9296 Moved ...
9297 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
9298 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
9299 Moved ...
9300 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
9301 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
9302 Moved ...
9303 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
9304 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
9305 Moved ...
9306 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
9307 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
9308 Moved ...
9309 * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
9310 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
9311 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
9312 ... here.
9313 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
9314 Moved ...
9315 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
9316 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
9317 Moved ...
9318 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
9319 ... here.
9320 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
9321 Moved ...
9322 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
9323 ... here.
9324 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
9325 Moved ...
9326 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
9327 ... here.
9328 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
9329 Moved ...
9330 * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
9331 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
9332 Moved ...
9333 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
9334 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
9335 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
9336 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
9337 Moved ...
9338 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
9339 ... here.
9340 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
9341 Moved ...
9342 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
9343 ... here.
9344 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
9345 Moved ...
9346 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
9347 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
9348 Moved ...
9349 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
9350 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
9351 Moved ...
9352 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
9353 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
9354 Moved ...
9355 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
9356 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
9357 Moved ...
9358 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
9359 ... here.
9360 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
9361 Moved ...
9362 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
9363 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
9364 Moved ...
9365 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
9366 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
9367 Moved ...
9368 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
9369 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
9370 Moved ...
9371 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
9372 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
9373 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
9374 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
9375 Moved ...
9376 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
9377 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
9378 Moved ...
9379 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
9380 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
9381 Moved ...
9382 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
9383 ... here.
9384 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
9385 Moved ...
9386 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
9387 ... here.
9388 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
9389 Moved ...
9390 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
9391 ... here.
9392 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
9393 Moved ...
9394 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
9395 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
9396 Moved ...
9397 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
9398 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
9399 Moved ...
9400 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
9401 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
9402 Moved ...
9403 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
9404 ... here.
9405 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
9406 Moved ...
9407 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
9408 ... here.
9409 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
9410 Moved ...
9411 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
9412 ... here.
9413 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
9414 Moved ...
9415 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
9416 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
9417 Moved ...
9418 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
9419
e6d90d67
WD
94202014-06-23 Will Newton <will.newton@linaro.org>
9421 Wilco <wdijkstr@arm.com>
9422
9423 * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
9424 implementation. Include get-rounding-mode.h.
9425 [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
9426 [!libc_feholdsetround_noex_ctx]: Define
9427 libc_feholdsetround_noex_ctx.
9428 [!libc_feholdsetround_noexf_ctx]: Define
9429 libc_feholdsetround_noexf_ctx.
9430 [!libc_feholdsetround_noexl_ctx]: Define
9431 libc_feholdsetround_noexl_ctx.
9432 (libc_feholdsetround_ctx): New function.
9433 (libc_feresetround_ctx): New function.
9434 (libc_feholdsetround_noex_ctx): New function.
9435 (libc_feresetround_noex_ctx): New function.
9436
d42df555
RM
94372014-06-23 Roland McGrath <roland@hack.frob.com>
9438
88a46474
RM
9439 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
9440 * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
9441 * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
9442 * sysdeps/mips/nptl/bits/semaphore.h: ... here.
9443 * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
9444 * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
9445
15bed472
RM
9446 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
9447 * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
9448 * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
9449 * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
9450 * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
9451 * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
9452 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
9453 * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
9454 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
9455 * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
9456 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
9457 Moved ...
9458 * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
9459 ... here.
9460 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
9461 * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
9462 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
9463 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
9464 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
9465 Moved ...
9466 * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
9467 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
9468 * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
9469 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
9470 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
9471 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
9472 * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
9473 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
9474 Moved ...
9475 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
9476 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
9477 Moved ...
9478 * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
9479 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
9480 * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
9481 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
9482 Moved ...
9483 * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
9484 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
9485 * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
9486 * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
9487 * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
9488 * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
9489 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
9490 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
9491 * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
9492 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
9493 Moved ...
9494 * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
9495 ... here.
9496 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
9497 * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
9498 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
9499 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
9500 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
9501 * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
9502 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
9503 * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
9504 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
9505 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
9506 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
9507 * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
9508 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
9509 Moved ...
9510 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
9511 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
9512 * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
9513 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
9514 * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
9515 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
9516 Moved ...
9517 * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
9518 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
9519 * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
9520 * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
9521 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
9522
d42df555
RM
9523 * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
9524 * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
9525 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
9526 * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
9527 * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
9528 * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
9529 * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
9530 * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
9531 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
9532 * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
9533 * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
9534 * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
9535 * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
9536 * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
9537 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
9538 * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
9539 * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
9540 * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
9541 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
9542 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
9543 * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
9544 * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
9545 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
9546 * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
9547 * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
9548 * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
9549 * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
9550 * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
9551
76e5216e
JM
95522014-06-23 Joseph Myers <joseph@codesourcery.com>
9553
9554 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
9555 (FALLOC_FL_COLLAPSE_RANGE): New macro.
9556 [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
9557 * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
9558 (IPV6_PMTUDISC_INTERFACE): Likewise.
9559 (IPV6_PMTUDISC_OMIT): Likewise.
9560
7a81cbcc
AS
95612014-06-23 Andreas Schwab <schwab@suse.de>
9562
9563 * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
9564 Remove unused errout label.
9565
db224009
AZ
95662014-06-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
9567
9568 * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
9569 macro: hardware supports Vector Crypto instructions.
9570
f393b4aa
WN
95712014-06-23 Will Newton <will.newton@linaro.org>
9572
cc7d0447
WN
9573 * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
9574 rather than __builtin_expect.
9575
d6d06225
WN
9576 * elf/dl-lookup.c (undefined_msg): Remove variable.
9577 (_dl_lookup_symbol_x): Replace undefined_msg with string
9578 literal.
9579
f393b4aa
WN
9580 * elf/dl-lookup.c (do_lookup_unique): New function.
9581 (do_lookup_x): Move STB_GNU_UNIQUE handling code
9582 to a separate function.
9583
ac60763e
AS
95842014-06-23 Andreas Schwab <schwab@suse.de>
9585
9586 [BZ #17079]
9587 * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
9588 before reading the next line.
9589
c5c13355
WN
95902014-06-23 Will Newton <will.newton@linaro.org>
9591
9592 * test-skeleton.c (signal_handler): Use printf and %m
9593 rather than perror. Use printf rather than fprintf to
9594 stderr. Use puts rather than fputs to stderr.
9595 (main): Likewise.
9596
bd3675f9
LC
95972014-06-22 Ludovic Courtès <ludo@gnu.org>
9598
9599 * nscd/nscd.c (thread_info_t): Remove typedef.
9600 (thread_info): Remove variable.
9601
d03efb2f
AM
96022014-06-21 Allan McRae <allan@archlinux.org>
9603
9604 * NEWS: Mention CVE-2014-4043.
9605
bc4a86fa
RM
96062014-06-20 Roland McGrath <roland@hack.frob.com>
9607
dc9a54f8
RM
9608 * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
9609 * nptl/smp.h: ... here.
9610
bd7022c4
RM
9611 * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
9612
26ffd5e6
RM
9613 * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
9614 * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
9615 * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
9616 * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
9617
93a6d082
RM
9618 * nptl/allocatestack.c: Include <stack-aliasing.h>.
9619 * nptl/stack-aliasing.h: New file.
9620 * sysdeps/i386/i686/stack-aliasing.h: New file.
9621 * sysdeps/i386/i686/nptl/Makefile: File removed.
9622 * sysdeps/x86_64/stack-aliasing.h: New file.
9623 * sysdeps/x86_64/nptl/Makefile
9624 (CFLAGS-pthread_create.c): Variable removed.
9625
bc4a86fa
RM
9626 * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
9627 * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
9628 old file.
9629 * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
9630 * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
9631 old file.
9632
2272ffc1
JM
96332014-06-21 Joseph Myers <joseph@codesourcery.com>
9634
9635 * sysdeps/unix/sysv/linux/arm/kernel-features.h
9636 (__ASSUME_SIGFRAME_V2): Remove macro.
9637 * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
9638 [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
9639 (__default_sa_restorer_v2): Rename to __default_sa_restorer.
9640 (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
9641 * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
9642 Declare as function. Remove conditional macro definitions.
9643 (__default_rt_sa_restorer): Likewise.
9644 (__default_sa_restorer_v1): Remove declaration.
9645 (__default_sa_restorer_v2): Likewise.
9646 (__default_rt_sa_restorer_v1): Likewise.
9647 (__default_rt_sa_restorer_v2): Likewise.
9648 * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
9649 __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
9650 __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
9651
4b88139b
RM
96522014-06-20 Roland McGrath <roland@hack.frob.com>
9653
9654 * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
9655 (libpthread-routines): Add sysdep.
9656 * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
9657 * sysdeps/unix/sysv/linux/sparc/Versions
9658 (libpthread: GLIBC_2.3.3): New version set.
9659 * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
9660 * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
9661 * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
9662 * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
9663 * sysdeps/sparc/nptl/internaltypes.h: ... here. Use #include_next.
9664 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
9665 Moved ...
9666 * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
9667 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
9668 * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
9669 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
9670 * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
9671 * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
9672 * sysdeps/sparc/nptl/sem_init.c: ... here.
9673 * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
9674 * sysdeps/sparc/nptl/sem_post.c: ... here.
9675 * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
9676 * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
9677 * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
9678 * sysdeps/sparc/nptl/sem_wait.c: ... here.
9679 * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
9680 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
9681 * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
9682 (libpthread-routines): Add cpu_relax.
9683 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
9684 File removed.
9685 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
9686 (librt: GLIBC_2.3.3): New version set.
9687 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
9688 * sysdeps/sparc/sparc64/nptl/Makefile: New file.
9689 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
9690 (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
9691 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
9692 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
9693 * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
9694 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
9695 Moved ...
9696 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
9697 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
9698 * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
9699 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
9700 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
9701 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
9702 * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
9703 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
9704 * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
9705 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
9706 Moved ...
9707 * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
9708 Update #include.
9709 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
9710 Moved ...
9711 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
9712 Update #include.
9713 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
9714 Moved ...
9715 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
9716 Update #include.
9717 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
9718 Moved ...
9719 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
9720 Update #include.
9721 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
9722 Moved ...
9723 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
9724 Update #include.
9725 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
9726 Moved ...
9727 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
9728 Update #include.
9729 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
9730 * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
9731 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
9732 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
9733 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
9734 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
9735 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
9736 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
9737 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
9738 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
9739 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
9740 Moved ...
9741 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
9742 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
9743 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
9744 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
9745 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
9746
d7109027
JM
97472014-06-20 Joseph Myers <joseph@codesourcery.com>
9748
9bc6103d
JM
9749 * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
9750 * nptl/pthread_rwlock_timedrdlock.c: Likewise.
9751 * nptl/pthread_rwlock_timedwrlock.c: Likewise.
9752 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
9753 * nscd/nscd.c: Likewise.
9754 * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
9755 * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
9756 * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
9757 * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
9758
d7109027
JM
9759 * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
9760 <kernel-features.h>.
9761 (init_mq_netlink): Remove conditional have_sock_cloexec
9762 definitions. Remove code conditional on have_sock_cloexec < 0.
9763 (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
9764 (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
9765 * sysdeps/unix/sysv/linux/opensock.c: Do not include
9766 <kernel-features.h>.
9767 (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
9768 (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
9769
d92d8f8a
L
97702014-06-20 H.J. Lu <hongjiu.lu@intel.com>
9771
9772 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
9773 Add tests for memset_chk and memset.
9774
9775 * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
9776 with AVX2_Usable.
9777
4e6d2347
MR
97782014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
9779
257ce712
MR
9780 [BZ #16046]
9781 * elf/tst-dl-iter-static.c: New file.
9782 * elf/Makefile (tests-static): Add tst-dl-iter-static.
9783
4e6d2347
MR
9784 * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
9785 error.
9786
a2a76afe
JM
97872014-06-20 Joseph Myers <joseph@codesourcery.com>
9788
7fd00f99
JM
9789 * sysdeps/unix/sysv/linux/kernel-features.h
9790 (__ASSUME_F_GETOWN_EX): Remove macro.
9791 * sysdeps/unix/sysv/linux/fcntl.c: Do not include
9792 <kernel-features.h>.
9793 (miss_F_GETOWN_EX): Remove variable or macro.
9794 (do_fcntl): Do not check miss_F_GETOWN_EX.
9795 (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
9796
4a103975
JM
9797 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
9798 Remove macro.
9799 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
9800 [!__ASSUME_AT_RANDOM]: Remove conditional code.
9801 (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
9802
a2a76afe
JM
9803 * sysdeps/unix/sysv/linux/kernel-features.h
9804 (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
9805 * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
9806 [ADJ_OFFSET_SS_READ]: Make code unconditional.
9807 (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
9808
90e5dd48
MR
98092014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
9810
9811 [BZ #17075]
9812 * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
9813 Fix calculation of the symbol's value.
9814 * sysdeps/arm/tst-armtlsdescloc.c: New file.
9815 * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
9816 * sysdeps/arm/tst-armtlsdescextnow.c: New file.
9817 * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
9818 * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
9819 * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
9820 * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
9821 `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
9822 (modules-names): Add `tst-armtlsdescmod',
9823 `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
9824 (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
9825 (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
9826 (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
9827 (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
9828 (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
9829 (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
9830 ($(objpfx)tst-armtlsdescloc): New dependency.
9831 ($(objpfx)tst-armtlsdescextnow): Likewise.
9832 ($(objpfx)tst-armtlsdescextlazy): Likewise.
9833 * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
9834 TLS scheme support.
9835 * sysdeps/arm/configure: Regenerate.
9836
809fdf0d
JM
98372014-06-20 Joseph Myers <joseph@codesourcery.com>
9838
9839 * include/fcntl.h (__atfct_seterrno): Remove prototype.
9840 (__atfct_seterrno_2): Likewise.
9841 * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
9842 <kernel-features.h>.
9843 (__ASSUME_ATFCTS): Do not undefine and redefine.
9844 * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
9845 (__have_atfcts): Remove conditional definition.
9846 (__fxstatat([__NR_fstatat64]: Make code unconditional.
9847 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
9848 unreachable if [__ASSUME_ATFCTS].
9849 * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
9850 not undefine and redefine.
9851 * sysdeps/unix/sysv/linux/faccessat.c: Do not include
9852 <kernel-features.h>.
9853 (faccessat) [__NR_faccessat]: Make code unconditional.
9854 (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
9855 * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
9856 <kernel-features.h>.
9857 (fchmodat) [__NR_fchmodat]: Make code unconditional.
9858 (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
9859 * sysdeps/unix/sysv/linux/fchownat.c: Do not include
9860 <kernel-features.h>.
9861 (fchownat) [__NR_fchownat]: Make code unconditional.
9862 (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
9863 * sysdeps/unix/sysv/linux/futimesat.c: Do not include
9864 <kernel-features.h>.
9865 (futimesat) [__NR_futimesat]: Make code unconditional.
9866 (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
9867 * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
9868 <kernel-features.h>.
9869 (__fxstatat) [__NR_newfstatat]: Make code unconditional.
9870 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
9871 * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
9872 <kernel-features.h>.
9873 (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
9874 (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
9875 * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
9876 * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
9877 <kernel-features.h>.
9878 (__fxstatat) [__NR_fstatat64]: Make code unconditional.
9879 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
9880 * sysdeps/unix/sysv/linux/linkat.c: Do not include
9881 <kernel-features.h>.
9882 (linkat) [__NR_linkat]: Make code unconditional.
9883 (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
9884 * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
9885 * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
9886 <kernel-features.h>.
9887 (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
9888 (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
9889 * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
9890 <kernel-features.h>.
9891 (mkdirat) [__NR_mkdirat]: Make code unconditional.
9892 (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
9893 * sysdeps/unix/sysv/linux/openat.c: Do not include
9894 <kernel-features.h>.
9895 [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
9896 [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
9897 (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
9898 (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
9899 * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
9900 * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
9901 <kernel-features.h>.
9902 (readlinkat) [__NR_readlinkat]: Make code unconditional.
9903 (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code. Return
9904 result of INLINE_SYSCALL directly, not via int variable.
9905 * sysdeps/unix/sysv/linux/renameat.c: Do not include
9906 <kernel-features.h>.
9907 [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
9908 (renameat) [__NR_renameat]: Make code unconditional.
9909 (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
9910 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
9911 * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
9912 * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
9913 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
9914 (__ASSUME_ATFCTS): Do not undefine and redefine.
9915 * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
9916 <kernel-features.h>.
9917 (symlinkat) [__NR_symlinkat]: Make code unconditional.
9918 (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
9919 * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
9920 <kernel-features.h>.
9921 (unlinkat) [__NR_unlinkat]: Make code unconditional.
9922 (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
9923 * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
9924 (__ASSUME_ATFCTS): Do not undefine and redefine.
9925 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
9926 <kernel-features.h>.
9927 (__fxstatat) [__NR_newfstatat]: Make code unconditional.
9928 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
9929 * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
9930 <kernel-features.h>.
9931 (__xmknodat) [__NR_mknodat]: Make code unconditional.
9932 (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
9933
224c6c51
L
99342014-06-20 H.J. Lu <hongjiu.lu@intel.com>
9935
9936 * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
9937
aa6ec754
AS
99382014-06-20 Andreas Schwab <schwab@linux-m68k.org>
9939
9940 [BZ #17069]
9941 * posix/regcomp.c (parse_reg_exp): Deallocate partially
9942 constructed tree before returning error.
9943 * posix/bug-regexp36.c: Expand test case.
9944
d8c2869d
SL
99452014-06-20 Stefan Liebler <stli@linux.vnet.ibm.com>
9946
3ef6b850
SL
9947 [BZ #6803]
9948 * math/libm-test.inc (scalbln_test_date):
9949 Add errno expectations.
9950 * math/w_scalblnf.c: New File.
9951 Add wrapper which checks for setting errno to ERANGE.
9952 Add weak_alias for corresponding scalbln function.
9953 * math/w_scalbln.c: Likewise.
9954 * math/w_scalblnl.c: Likewise.
9955 * math/Makefile (libm-calls): Add w_scalbln.
9956 * sysdeps/ieee754/flt-32/s_scalblnf.c:
9957 Remove weak_alias for corresponding scalbln function.
9958 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
9959 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
9960 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
9961 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
9962 * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
9963 * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
9964 * sysdeps/i386/fpu/s_scalbn.S: Likewise.
9965 * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
9966 * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
9967 * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
9968 Remove long_double_symbol for scalblnl function in libm, libc.
9969 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
9970 Add wrapper which checks for setting errno to ERANGE.
9971 Add long_double_symbol for scalblnl function in libm, libc.
9972 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
9973 Remove long_double_symbol for scalblnl in libm.
9974 * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
9975 Add wrapper which checks for setting errno to ERANGE.
9976 Add long_double_symbol for scalblnl function in libm.
9977 * sysdeps/ia64/fpu/w_scalblnf.c: New File.
9978 Do not use wrapper because of own implementation.
9979
c8daec5c
L
99802014-06-19 H.J. Lu <hongjiu.lu@intel.com>
9981
9982 * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
9983 3 bytes for __pad1 for x32.
9984 (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
9985
5c74e47c
LM
99862014-06-19 Ling Ma <ling.ml@alibaba-inc.com>
9987 H.J. Lu <hongjiu.lu@intel.com>
9988
9989 * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
9990 * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
9991 * sysdeps/x86_64/multiarch/memset.S: Likewise.
9992 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
9993 * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
9994
4d43ef1e
AS
99952014-06-19 Andreas Schwab <schwab@linux-m68k.org>
9996
9997 [BZ #17069]
9998 * posix/regcomp.c (parse_expression): Deallocate partially
9999 constructed tree before returning error.
10000 * posix/Makefile.c (tests): Add bug-regex36.
10001 (generated): Add bug-regex36.mtrace.
10002 (tests-special): Add $(objpfx)bug-regex36-mem.out
10003 (bug-regex36-ENV): New variable.
10004 ($(objpfx)bug-regex36-mem.out): New rule.
10005 * posix/bug-regex36.c: New file.
10006
51a7380b
WN
100072014-06-19 Will Newton <will.newton@linaro.org>
10008
10009 * malloc/malloc.c (systrim): If extra is zero then return
10010 early.
10011
91b84fe5
SP
100122014-06-19 Siddhesh Poyarekar <siddhesh@redhat.com>
10013
10014 * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
10015
f940b965
RE
100162014-06-19 Richard Earnshaw <rearnsha@arm.com>
10017
10018 * sysdeps/aarch64/strchr.S: New file.
10019
4ba7a00f
JM
100202014-06-18 Joseph Myers <joseph@codesourcery.com>
10021
10022 [BZ #17022]
10023 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
10024 from arguments -2 or below.
10025 * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
10026 * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
10027
b3a9f56b
AS
100282014-06-18 Andreas Schwab <schwab@suse.de>
10029
10030 [BZ #17062]
10031 * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
10032 of a bracket expr not to run off the end of the string.
10033 * posix/Makefile (tests): Add tst-fnmatch3.
10034 * posix/tst-fnmatch3.c: New file.
10035
85d89278
JM
100362014-06-18 Joseph Myers <joseph@codesourcery.com>
10037
10038 * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
10039 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
10040 [$(cross-compiling) = no]: Likewise.
10041 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
10042 [$(cross-compiling) = no]: Likewise.
10043
754c5a08
RS
100442014-16-17 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
10045
10046 [BZ #17031]
10047 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
10048 double, adjusted for any remainder from the high double.
10049 * math/libm-test.inc (nearbyint): Add tests.
10050 (rint): Likewise.
10051
556f529d
AZ
100522014-06-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10053
10054 * nptl/sysdeps/powerpc/Makefile: Moved ...
10055 * sysdeps/powerpc/nptl/Makefile: ... here.
10056 * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
10057 * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
10058 * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
10059 * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
10060 * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
10061 * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
10062 * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
10063 * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
10064 * nptl/sysdeps/powerpc/tls.h: Moved ...
10065 * sysdeps/powerpc/nptl/tls.h: ... here.
10066
91c03c53
JM
100672014-06-16 Joseph Myers <joseph@codesourcery.com>
10068
10069 [BZ #16681]
10070 * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
10071 * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
10072 * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
10073 * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
10074 * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
10075 * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
10076 * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
10077 * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
10078 * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
10079
a76e63c5
AS
100802014-06-17 Andreas Schwab <schwab@linux-m68k.org>
10081
10082 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
10083
f2f6d82f
AS
100842014-06-16 Andreas Schwab <schwab@linux-m68k.org>
10085
ea8a15f6
AS
10086 * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
10087 defined operator.
10088
f2f6d82f
AS
10089 * scripts/cross-test-ssh.sh (timeoutfactor): Default to
10090 $TIMEOUTFACTOR.
10091
a7291117
FW
100922014-06-16 Florian Weimer <fweimer@redhat.com>
10093
10094 [BZ #17058]
10095 * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
10096 non-executed part of the test.
10097
3d7c00e3
AS
100982014-06-16 Andreas Schwab <schwab@suse.de>
10099
10100 * string/bits/string2.h (strdup, strndup): Update feature guard.
10101
6957fb31
DM
101022014-06-14 David S. Miller <davem@davemloft.net>
10103
10104 * sysdeps/sparc/fpu/libm-test-ulps: Update.
10105
11b9e55b
AS
101062014-06-14 Andreas Schwab <schwab@linux-m68k.org>
10107
1d2a0492
AS
10108 * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
10109 that was previously under [RESET_PID].
10110 * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
10111
11b9e55b
AS
10112 * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
10113 * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
10114 * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
10115 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10116 (__libc_vfork): New strong alias.
10117 * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
10118
0f6901d0
AK
101192014-06-14 Andi Kleen <ak@linux.intel.com>
10120
10121 * sysdeps/generic/elide.h: New file.
10122
38bbbb9f
SL
101232014-06-13 Stefan Liebler <stli@linux.vnet.ibm.com>
10124
10125 * Makefile (installed-headers): Adjust path of pthread.h header.
10126
45193bb8
RM
101272014-06-13 Roland McGrath <roland@hack.frob.com>
10128
9a25fd1e
RM
10129 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
10130 * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
10131 * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
10132 * sysdeps/s390/nptl/bits/semaphore.h: ... here.
10133
4004f7e4
RM
10134 * nptl/sysdeps/s390/Makefile: Moved ...
10135 * sysdeps/s390/nptl/Makefile: ... here.
10136 * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
10137 * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
10138 * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
10139 * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
10140 * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
10141 * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
10142 * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
10143 * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
10144 * nptl/sysdeps/s390/pthreaddef.h: Moved ...
10145 * sysdeps/s390/nptl/pthreaddef.h: ... here.
10146 * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
10147 * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
10148 * nptl/sysdeps/s390/tls.h: Moved ...
10149 * sysdeps/s390/nptl/tls.h: ... here.
10150
45193bb8
RM
10151 * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
10152 * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
10153
f6fdf533
DM
101542014-06-13 David S. Miller <davem@davemloft.net>
10155
10156 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
10157 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
10158 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
10159 * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
10160 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
10161 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
10162 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
10163 * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
10164 * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
10165 * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
10166 * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
10167 Remove RESET_PID cpp guards.
10168 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
10169 Remove RESET_PID cpp guards.
10170 * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
10171
f5d71e14
AS
101722014-06-13 Andreas Schwab <schwab@linux-m68k.org>
10173
10174 * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
10175 __sp to uintptr_t.
10176
b7aa8caa
AK
101772014-06-13 Andi Kleen <ak@linux.intel.com>
10178
4b266200
AZ
10179 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
10180 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
10181 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
10182 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
10183 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
10184 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
10185 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
10186 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
10187 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
10188 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
10189 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
10190 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
10191 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
10192 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
10193 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
10194 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
10195 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
10196 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
10197 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
10198 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
8491ed6d
AK
10199
10200 * nptl/pthread_rwlock_rdlock.c: Include elide.h.
4b266200
AZ
10201 (pthread_rwlock_rdlock): Add elision.
10202 * nptl/pthread_rwlock_wrlock.c: Include elide.h.
10203 (pthread_rwlock_wrlock): Add elision.
10204 * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
10205 (pthread_rwlock_trywrlock): Add elision.
10206 * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
10207 (pthread_rwlock_tryrdlock): Add elision.
10208 * nptl/pthread_rwlock_unlock.c: Include elide.h.
10209 (pthread_rwlock_tryrdlock): Add elision unlock.
10210 * nptl/sysdeps/pthread/pthread.h:
10211 (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
10212 (PTHREAD_RWLOCK_INITIALIZER,
10213 PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
10214 Handle new elision field.
10215 * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
10216 * sysdeps/arm/nptl/bits/pthreadtypes.h
10217 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10218 * sysdeps/sh/nptl/bits/pthreadtypes.h
10219 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10220 * sysdeps/tile/nptl/bits/pthreadtypes.h
10221 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10222 * sysdeps/a/nptl/bits/pthreadtypes.h
10223 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10224 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
10225 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10226 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
10227 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10228 * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
10229 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10230 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
10231 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10232 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
10233 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10234 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
10235 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10236 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
10237 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10238 * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
10239 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
10240 * sysdeps/unix/sysv/linux/x86/elision-conf.c:
10241 (elision_init): Set try_xbegin to zero when no RTM.
10242 * sysdeps/x86/nptl/bits/pthreadtypes.h
10243 (pthread_rwlock_t): Change __pad1 to __rwelision.
10244 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8491ed6d 10245
a832bdd3
AK
102462014-06-13 Andi Kleen <ak@linux.intel.com>
10247
10248 * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
10249 Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
10250 * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
10251 Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
10252
995a46bb
MI
102532014-06-13 Meador Inge <meadori@codesourcery.com>
10254
10255 [BZ #16996]
03ed7738 10256 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
995a46bb
MI
10257 that the cached result has been set before returning it.
10258
45262aee
RM
102592014-06-12 Roland McGrath <roland@hack.frob.com>
10260
febf6cc5
RM
10261 * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
10262 * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
10263 * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
10264 * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
10265 * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
10266 * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
10267
e2682246
RM
10268 * nptl/sysdeps/sparc/Makefile: Moved ...
10269 * sysdeps/sparc/nptl/Makefile: ... here.
10270 * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
10271 * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
10272 * nptl/sysdeps/sparc/tls.h: Moved ...
10273 * sysdeps/sparc/nptl/tls.h: ... here.
10274 * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
10275 * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
10276 * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
10277 * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
10278 * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
10279 * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
10280 * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
10281 * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
10282 * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
10283 * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
10284 * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
10285 * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
10286 * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
10287 * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
10288 * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
10289 * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
10290 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
10291 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
10292 Update #include.
10293 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
10294 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
10295 Update #include.
10296 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
10297 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
10298 Update #include.
10299 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
10300 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
10301 Update #include.
10302
b0725f43
RM
10303 * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
10304
b14368b8
RM
10305 * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
10306 * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
10307
c5620eb3
RM
10308 * sysdeps/pthread/posix-timer.h: Include <list.h>.
10309 (struct list_links): Type removed.
10310 (struct thread_node, struct timer_node): Replace struct list_links
10311 with struct list_head.
10312 (list_unlink_ip): Likewise.
10313 * sysdeps/pthread/timer_routines.c
10314 (timer_free_list, thread_free_list, thread_active_list): Likewise.
10315 (list_append, list_insbefore): Likewise.
10316 (list_init): Function removed.
10317 (thread_init, init_module): Use INIT_LIST_HEAD instead.
463dc947
RM
10318 * sysdeps/nptl/Makefile: Move tst-timer bits to ...
10319 * sysdeps/pthread/Makefile: ... here, new file.
10320
10321 * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
10322 * sysdeps/nptl/Implies: ... here.
10323 * sysdeps/unix/sysv/linux/Implies: Add nptl.
10324 * nptl/sysdeps/pthread/list.h: Moved ...
10325 * include/list.h: ... here.
10326 * nptl/sysdeps/pthread/createthread.c: Moved ...
10327 * nptl/createthread.c: ... here.
10328 * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
10329 * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
10330 * nptl/pt-longjmp.c: ... here.
10331 * nptl/sysdeps/pthread/Makefile: Moved ...
10332 * sysdeps/nptl/Makefile: ... here.
10333 * nptl/sysdeps/pthread/Subdirs: Moved ...
10334 * sysdeps/nptl/Subdirs: ... here.
10335 * nptl/sysdeps/pthread/aio_misc.h: Moved ...
10336 * sysdeps/nptl/aio_misc.h: ... here.
10337 * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
10338 * sysdeps/nptl/bits/libc-lock.h: ... here.
10339 * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
10340 * sysdeps/nptl/bits/libc-lockP.h: ... here.
10341 * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
10342 * sysdeps/nptl/bits/stdio-lock.h: ... here.
10343 * nptl/sysdeps/pthread/configure: Moved ...
10344 * sysdeps/nptl/configure: ... here.
10345 * nptl/sysdeps/pthread/configure.ac: Moved ...
10346 * sysdeps/nptl/configure.ac: ... here.
10347 * nptl/sysdeps/pthread/gai_misc.h: Moved ...
10348 * sysdeps/nptl/gai_misc.h: ... here.
10349 * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
10350 * sysdeps/nptl/librt-cancellation.c: ... here.
10351 * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
10352 * sysdeps/nptl/malloc-machine.h: ... here.
10353 * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
10354 * sysdeps/nptl/pthread-functions.h: ... here.
10355 * nptl/sysdeps/pthread/pthread.h: Moved ...
10356 * sysdeps/nptl/pthread.h: ... here.
10357 * nptl/sysdeps/pthread/setxid.h: Moved ...
10358 * sysdeps/nptl/setxid.h: ... here.
10359 * nptl/sysdeps/pthread/sigfillset.c: Moved ...
10360 * sysdeps/nptl/sigfillset.c: ... here.
10361 * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
10362 * sysdeps/nptl/tcb-offsets.h: ... here.
10363 * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
10364 * sysdeps/nptl/tst-mqueue8x.c: ... here.
10365 * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
10366 * sysdeps/nptl/unwind-forcedunwind.c: ... here.
10367 * nptl/sysdeps/pthread/allocalim.h: Moved ...
10368 * sysdeps/pthread/allocalim.h: ... here.
10369 * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
10370 * sysdeps/pthread/bits/sigthread.h: ... here.
10371 * nptl/sysdeps/pthread/flockfile.c: Moved ...
10372 * sysdeps/pthread/flockfile.c: ... here.
10373 * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
10374 * sysdeps/pthread/ftrylockfile.c: ... here.
10375 * nptl/sysdeps/pthread/funlockfile.c: Moved ...
10376 * sysdeps/pthread/funlockfile.c: ... here.
10377 * nptl/sysdeps/pthread/posix-timer.h: Moved ...
10378 * sysdeps/pthread/posix-timer.h: ... here.
10379 * nptl/sysdeps/pthread/timer_create.c: Moved ...
10380 * sysdeps/pthread/timer_create.c: ... here.
10381 * nptl/sysdeps/pthread/timer_delete.c: Moved ...
10382 * sysdeps/pthread/timer_delete.c: ... here.
10383 * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
10384 * sysdeps/pthread/timer_getoverr.c: ... here.
10385 * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
10386 * sysdeps/pthread/timer_gettime.c: ... here.
10387 * nptl/sysdeps/pthread/timer_routines.c: Moved ...
10388 * sysdeps/pthread/timer_routines.c: ... here.
10389 * nptl/sysdeps/pthread/timer_settime.c: Moved ...
10390 * sysdeps/pthread/timer_settime.c: ... here.
10391 * nptl/sysdeps/pthread/tst-timer.c: Moved ...
10392 * sysdeps/pthread/tst-timer.c: ... here.
10393 * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
10394 * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
10395
e876b090
RM
10396 * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
10397 * nptl/sysdeps/pthread/sigprocmask.c: File removed.
10398
f6b07b3d
RM
10399 * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
10400 * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
10401 * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
10402 * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
10403 Update #include target.
10404 * nptl/sysdeps/i386/i686/Makefile: Moved ...
10405 * sysdeps/i386/i686/nptl/Makefile: ... here.
10406 * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
10407 * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
10408 Update #include target.
10409 * nptl/sysdeps/i386/i686/tls.h: Moved ...
10410 * sysdeps/i386/i686/nptl/tls.h: ... here. Use #include_next.
10411 * nptl/sysdeps/i386/Makefile: Moved ...
10412 * sysdeps/i386/nptl/Makefile: ... here.
10413 * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
10414 * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
10415 * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
10416 * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
10417 * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
10418 * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
10419 * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
10420 * nptl/sysdeps/i386/pthreaddef.h: Moved ...
10421 * sysdeps/i386/nptl/pthreaddef.h: ... here.
10422 * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
10423 * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
10424 * nptl/sysdeps/i386/tls.h: Moved ...
10425 * sysdeps/i386/nptl/tls.h: ... here.
10426
45262aee
RM
10427 * sysdeps/sh/Makefile [$(subdir) = csu]
10428 (gen-as-const-headers): Add tcb-offsets.sym.
10429 * nptl/sysdeps/sh/Makefile: File removed.
10430 * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
10431 * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
10432 * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
10433 * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
10434 * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
10435 * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
10436 * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
10437 * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
10438 * nptl/sysdeps/sh/pthreaddef.h: Moved ...
10439 * sysdeps/sh/nptl/pthreaddef.h: ... here.
10440 * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
10441 * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
10442 * nptl/sysdeps/sh/tls.h: Moved ...
10443 * sysdeps/sh/nptl/tls.h: ... here.
10444 * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
10445 * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
10446 * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
10447 * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
10448 * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
10449 * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
10450 * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
10451 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
10452 * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
10453 * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
10454 * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
10455 * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
10456 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
10457 * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
10458 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
10459 * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
10460 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
10461 * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
10462 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
10463 * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
10464 * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
10465 * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
10466 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
10467 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
10468 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
10469 Moved ...
10470 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
10471 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
10472 Moved ...
10473 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
10474 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
10475 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
10476 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
10477 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
10478 * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
10479 * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
10480 * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
10481 * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
10482 * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
10483 * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
10484 * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
10485 * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
10486 * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
10487 * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
10488 * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
10489 * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
10490 * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
10491 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
10492
35a5e3e3
SL
104932014-06-12 Stefan Liebler <stli@linux.vnet.ibm.com>
10494
10495 * posix/spawn_faction_addopen.c: Include string.h.
10496
14642b85
RM
104972014-06-11 Roland McGrath <roland@hack.frob.com>
10498
10499 * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
10500 * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
10501 * nptl/sysdeps/x86_64/Makefile: Moved ...
10502 * sysdeps/x86_64/nptl/Makefile: ... here.
10503 * nptl/sysdeps/x86_64/configure: Moved ...
10504 * sysdeps/x86_64/nptl/configure: ... here.
10505 * nptl/sysdeps/x86_64/configure.ac: Moved ...
10506 * sysdeps/x86_64/nptl/configure.ac: ... here.
10507 * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
10508 * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
10509 * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
10510 * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
10511 * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
10512 * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
10513 * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
10514 * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
10515 * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
10516 * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
10517 * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
10518 * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
10519 * nptl/sysdeps/x86_64/tls.h: Moved ...
10520 * sysdeps/x86_64/nptl/tls.h: ... here.
10521 * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
10522 * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
10523 * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
10524 * sysdeps/x86_64/x32/nptl/tls.h: ... here.
10525
10526 * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
10527
31c44fea
AZ
105282014-06-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10529
10530 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10531
e81a4f9a
JM
105322014-06-11 Joseph Myers <joseph@codesourcery.com>
10533
10534 * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
10535 type.
10536 [POSIX] (off_t): Likewise.
10537 * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
10538 [POSIX] (S_ISBLK): Require macro.
10539 [POSIX] (S_ISCHR): Likewise.
10540 [POSIX] (S_ISDIR): Likewise.
10541 [POSIX] (S_ISFIFO): Likewise.
10542 [POSIX] (S_ISREG): Likewise.
10543 [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
10544 optional-macro.
10545 * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
10546 type.
10547 [POSIX] (time_t): Likewise.
10548 [POSIX] (timer_t): Likewise.
10549
89e435f3
FW
105502014-06-11 Florian Weimer <fweimer@redhat.com>
10551
10552 [BZ #17048]
10553 * posix/spawn_int.h (struct __spawn_action): Make the path string
10554 non-const to support deallocation.
10555 * posix/spawn_faction_addopen.c
10556 (posix_spawn_file_actions_addopen): Make a copy of the pathname.
10557 * posix/spawn_faction_destroy.c
10558 (posix_spawn_file_actions_destroy): Adjust comment. Deallocate
10559 path in all spawn_do_open actions.
10560 * posix/tst-spawn.c (do_test): Exercise the copy operation in
10561 posix_spawn_file_actions_addopen.
10562
c3a2ebe1
CM
105632014-06-11 Chris Metcalf <cmetcalf@tilera.com>
10564
10565 * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
10566 * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
10567 * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
10568 conditional code always true.
10569 (__libc_vfork): New alias.
10570
9503784a
RM
105712014-06-11 Roland McGrath <roland@hack.frob.com>
10572
c9cab3d2
RM
10573 * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10574 * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
10575
d3996c79
RM
10576 * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
10577
ba5ec611
RM
10578 * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10579 * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
10580
f12b4814
RM
10581 * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
10582 * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
10583
9503784a
RM
10584 * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10585 * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
10586
e23d3d26
VR
105872014-06-11 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
10588
10589 * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
10590 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
10591 multiarch strcmp for PPC64.
10592 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
10593 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
10594 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
10595 multiarch optimizations.
10596 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
10597 (__libc_ifunc_impl_list): Likewise.
10598
42b1161e
SP
105992014-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
10600
10601 * benchtests/scripts/validate_benchout.py: New script.
10602 * benchtests/Makefile (bench-func): Call it.
10603 * benchtests/scripts/benchout.schema.json: New file.
10604
2d0fc4dc
CM
106052014-06-10 Chris Metcalf <cmetcalf@tilera.com>
10606
4a594c34
AZ
10607 * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
10608 * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
10609 * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
10610 * sysdeps/tile/nptl/bits/semaphore.h: ... here.
10611 * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
10612 * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
10613 * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
10614 * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
10615 * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
10616 * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
10617 * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
10618 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
10619 * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
10620 * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
10621 * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
10622 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
10623 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
2d0fc4dc 10624 Moved ...
4a594c34 10625 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
2d0fc4dc 10626 ... here.
4a594c34 10627 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
2d0fc4dc 10628 Moved ...
4a594c34
AZ
10629 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
10630 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
2d0fc4dc 10631 Moved ...
4a594c34 10632 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
2d0fc4dc 10633 ... here.
4a594c34 10634 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
2d0fc4dc 10635 Moved ...
4a594c34 10636 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
2d0fc4dc 10637 ... here.
4a594c34 10638 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
2d0fc4dc 10639 Moved ...
4a594c34
AZ
10640 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
10641 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
2d0fc4dc 10642 Moved ...
4a594c34 10643 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
2d0fc4dc 10644 ... here.
4a594c34 10645 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
2d0fc4dc 10646 Moved ...
4a594c34 10647 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
2d0fc4dc 10648 ... here.
4a594c34 10649 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
2d0fc4dc 10650 Moved ...
4a594c34
AZ
10651 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
10652 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
2d0fc4dc 10653 Moved ...
4a594c34 10654 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
2d0fc4dc 10655 ... here.
4a594c34 10656 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
2d0fc4dc 10657 Moved ...
4a594c34 10658 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
2d0fc4dc 10659 ... here.
4a594c34 10660 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
2d0fc4dc 10661 Moved ...
4a594c34 10662 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
2d0fc4dc 10663 ... here.
4a594c34 10664 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
2d0fc4dc 10665 Moved ...
4a594c34
AZ
10666 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
10667 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
2d0fc4dc 10668 Moved ...
4a594c34 10669 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
2d0fc4dc 10670 ... here.
4a594c34 10671 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
2d0fc4dc 10672 Moved ...
4a594c34 10673 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
2d0fc4dc 10674 ... here.
4a594c34 10675 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
2d0fc4dc 10676 Moved ...
4a594c34 10677 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
2d0fc4dc 10678 ... here.
4a594c34 10679 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
2d0fc4dc 10680 Moved ...
4a594c34
AZ
10681 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
10682 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
2d0fc4dc 10683 Moved ...
4a594c34 10684 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
2d0fc4dc 10685 ... here.
4a594c34 10686 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
2d0fc4dc 10687 Moved ...
4a594c34 10688 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
2d0fc4dc 10689 ... here.
4a594c34 10690 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
2d0fc4dc 10691 Moved ...
4a594c34
AZ
10692 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
10693 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
2d0fc4dc 10694 Moved ...
4a594c34 10695 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
2d0fc4dc 10696 ... here.
4a594c34 10697 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
2d0fc4dc 10698 Moved ...
4a594c34
AZ
10699 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
10700 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
2d0fc4dc 10701 Moved ...
4a594c34
AZ
10702 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
10703 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
2d0fc4dc 10704 Moved ...
4a594c34 10705 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
2d0fc4dc 10706 ... here.
4a594c34 10707 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
2d0fc4dc 10708 Moved ...
4a594c34 10709 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
2d0fc4dc 10710 ... here.
4a594c34 10711 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
2d0fc4dc 10712 Moved ...
4a594c34 10713 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
2d0fc4dc 10714 ... here.
4a594c34 10715 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
2d0fc4dc 10716 Moved ...
4a594c34
AZ
10717 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
10718 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
2d0fc4dc 10719 Moved ...
4a594c34 10720 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
2d0fc4dc 10721 ... here.
4a594c34 10722 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
2d0fc4dc 10723 Moved ...
4a594c34 10724 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
2d0fc4dc 10725 ... here.
4a594c34
AZ
10726 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
10727 * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
10728 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
10729 * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
10730 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
2d0fc4dc 10731 Moved ...
4a594c34 10732 * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
2d0fc4dc 10733 ... here.
4a594c34
AZ
10734 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
10735 * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
10736 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
10737 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
10738 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
10739 * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
10740 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
10741 * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
10742 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
10743 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
10744 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
10745 * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
10746 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
2d0fc4dc 10747 Moved ...
4a594c34
AZ
10748 * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
10749 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
2d0fc4dc 10750 Moved ...
4a594c34
AZ
10751 * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
10752 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
10753 * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
10754 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
2d0fc4dc 10755 Moved ...
4a594c34
AZ
10756 * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
10757 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
10758 * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
10759 * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
10760 * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
10761 * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
10762 * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
2d0fc4dc 10763
0570cfed
W
107642014-06-10 Wilco <wdijkstr@arm.com>
10765
10766 * math/test-fenv-return.c: New file.
10767 * math/Makefile: Add new test test-fenv-return.
10768
f8ba1b56
JM
107692014-06-10 Joseph Myers <joseph@codesourcery.com>
10770
10771 [BZ #17042]
10772 * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
10773 when x - 1 is zero.
10774 * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
10775 * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
10776 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
10777 0.0L for an argument of 1.0L.
10778 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
10779 Likewise.
10780 * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
10781 value when x - 1 is zero.
10782 * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
10783 * sysdeps/i386/fpu/libm-test-ulps: Update.
10784 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10785
2c3520d9
BO
107862014-06-09 Bernard Ogden <bernie.ogden@linaro.org>
10787
10788 [BZ #15119]
10789 * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
10790
acaa4d24
RM
107912014-06-09 Roland McGrath <roland@hack.frob.com>
10792
10793 * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
10794 * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
10795
962b744d
RM
107962014-06-09 Roland McGrath <roland@hack.frob.com>
10797
d752f0cc
RM
10798 * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10799 * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
10800
34eda6d1
RM
10801 * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10802 * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
10803
50f0a637
RM
10804 * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10805 * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
10806
08f41f04
RM
10807 * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
10808 * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
10809
962b744d
RM
10810 * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
10811 if not already defined.
10812 (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
10813 * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
10814 * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
10815 (TLS_INIT_TP): Use it.
10816 (TLS_DEFINE_INIT_TP): New macro.
10817 * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
10818
09f19b05
JM
108192014-06-09 Joseph Myers <joseph@codesourcery.com>
10820
10821 * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
10822 constant.
10823 [POSIX] (IXANY): Likewise.
10824 [POSIX] (OLCUC): Likewise.
10825 [POSIX || POSIX2008] (CBAUD): Do not allow.
10826 [POSIX || POSIX2008] (DEFECHO): Likewise.
10827 [POSIX || POSIX2008] (ECHOCTL): Likewise.
10828 [POSIX || POSIX2008] (ECHOKE): Likewise.
10829 [POSIX || POSIX2008] (ECHOPRT): Likewise.
10830 [POSIX || POSIX2008] (EXTA): Likewise.
10831 [POSIX || POSIX2008] (EXTB): Likewise.
10832 [POSIX || POSIX2008] (FLUSHO): Likewise.
10833 [POSIX || POSIX2008] (LOBLK): Likewise.
10834 [POSIX || POSIX2008] (PENDIN): Likewise.
10835 [POSIX || POSIX2008] (SWTCH): Likewise.
10836 [POSIX || POSIX2008] (VDISCARD): Likewise.
10837 [POSIX || POSIX2008] (VDSUSP): Likewise.
10838 [POSIX || POSIX2008] (VLNEXT): Likewise.
10839 [POSIX || POSIX2008] (VREPRINT): Likewise.
10840 [POSIX || POSIX2008] (VSTATUS): Likewise.
10841 [POSIX || POSIX2008] (VWERASE): Likewise.
10842 (B*): Change to B[0123456789]*.
10843 * conform/data/time.h-data [POSIX || UNIX98]
10844 (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
10845 [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
10846 [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
10847 [POSIX] (tm_*): Do not allow.
10848
686554bf
JM
108492014-06-07 Joseph Myers <joseph@codesourcery.com>
10850
10851 * Makefile (install): Don't set LANGUAGE.
10852 * Makefile.in (install): Likewise.
10853 * assert/Makefile (test-assert-ENV): Remove variable.
10854 (test-assert-perr-ENV): Likewise.
10855 * elf/Makefile (neededtest4-ENV): Likewise.
10856 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
10857 [$(cross-compiling) = no]: Don't set LANGUAGE.
10858 * io/ftwtest-sh (LANG): Remove variable.
10859 * libio/Makefile (tst-widetext-ENV): Likewise.
10860 * manual/install.texi (Running make install): Don't refer to
10861 environment settings for make install.
10862 * INSTALL: Regenerated.
10863 * nptl/tst-tls6.sh: Don't set LANG.
10864 * posix/globtest.sh (LANG): Remove variable.
10865 * string/Makefile (tester-ENV): Likewise.
10866 (inl-tester-ENV): Likewise.
10867 (noinl-tester-ENV): Likewise.
10868 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
10869 [$(cross-compiling) = no]: Don't set LANGUAGE.
10870 * timezone/Makefile (build-testdata): Use $(built-program-cmd)
10871 without explicit environment settings.
10872
68e6b6b1
RM
108732014-06-06 Roland McGrath <roland@hack.frob.com>
10874
10875 * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
10876 * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
10877 * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
10878 * sysdeps/sh/nptl/bits/semaphore.h: ... here.
10879
4d3ae034
CM
108802014-06-06 Chris Metcalf <cmetcalf@tilera.com>
10881
10882 * crypt/crypt-private.h [DOS]: Add some includes taken from the
10883 other files in the crypt directory.
10884 * crypt/crypt.c: Remove duplicate includes.
10885 * crypt/crypt-entry.c: Likewise.
10886 * crypt/crypt_util.c: Likewise.
10887
8540f6d2
JM
108882014-06-06 Joseph Myers <joseph@codesourcery.com>
10889
10890 * Makeconfig (run-program-env): New variable.
10891 (run-program-prefix-before-env): Likewise.
10892 (run-program-prefix-after-env): Likewise.
10893 (run-program-prefix): Define in terms of new variables.
10894 (built-program-cmd-before-env): New variable.
10895 (built-program-cmd-after-env): Likewise.
10896 (built-program-cmd): Define in terms of new variables.
10897 (test-program-prefix-before-env): New variable.
10898 (test-program-prefix-after-env): Likewise.
10899 (test-program-prefix): Define in terms of new variables.
10900 (test-program-cmd-before-env): New variable.
10901 (test-program-cmd-after-env): Likewise.
10902 (test-program-cmd): Define in terms of new variables.
10903 * Rules (make-test-out): Use $(run-program-env).
10904 * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
10905 (help): Do not mention environment variables. Mention
10906 --timeoutfactor option.
10907 (timeoutfactor): New variable.
10908 (blacklist_exports): Remove function.
10909 (exports): Remove variable.
10910 (command): Do not include ${exports}.
10911 * manual/install.texi (Configuring and compiling): Do not mention
10912 test wrappers preserving environment variables. Mention that last
10913 assignment to a variable must take precedence.
10914 * INSTALL: Regenerated.
10915 * benchtests/Makefile (run-bench): Use $(run-program-env).
10916 * catgets/Makefile ($(objpfx)test1.cat): Use
10917 $(built-program-cmd-before-env), $(run-program-env) and
10918 $(built-program-cmd-after-env).
10919 ($(objpfx)test2.cat): Do not specify environment variables
10920 explicitly.
10921 ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
10922 $(run-program-env) and $(built-program-cmd-after-env).
10923 ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
10924 $(run-program-env) and $(test-program-cmd-after-env).
10925 ($(objpfx)sample.SJIS.cat): Do not specify environment variables
10926 explicitly.
10927 * catgets/test-gencat.sh: Use test_program_cmd_before_env,
10928 run_program_env and test_program_cmd_after_env arguments.
10929 * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
10930 * elf/tst-pathopt.sh: Use run_program_env argument.
10931 * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
10932 $(test-wrapper-env) and $(run-program-env).
10933 * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
10934 run_program_env arguments.
10935 * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
10936 * intl/Makefile ($(objpfx)tst-gettext.out): Use
10937 $(test-program-prefix-before-env), $(run-program-env) and
10938 $(test-program-prefix-after-env).
10939 ($(objpfx)tst-gettext2.out): Likewise.
10940 * intl/tst-gettext.sh: Use test_program_prefix_before_env,
10941 run_program_env and test_program_prefix_after_env arguments.
10942 * intl/tst-gettext2.sh: Likewise.
10943 * intl/tst-gettext4.sh: Do not set environment variables
10944 explicitly.
10945 * intl/tst-gettext6.sh: Likewise.
10946 * intl/tst-translit.sh: Likewise.
10947 * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
10948 $(test-program-prefix-before-env), $(run-program-env) and
10949 $(test-program-prefix-after-env).
10950 * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
10951 run_program_env and test_program_prefix_after_env arguments.
10952 * math/Makefile (run-regen-ulps): Use $(run-program-env).
10953 * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
10954 * nptl/tst-tls6.sh: Use run_program_env argument. Set LANG=C
10955 explicitly with each use of ${test_wrapper_env}.
10956 * posix/Makefile ($(objpfx)wordexp-tst.out): Use
10957 $(test-program-prefix-before-env), $(run-program-env) and
10958 $(test-program-prefix-after-env).
10959 * posix/tst-getconf.sh: Do not set environment variables
10960 explicitly.
10961 * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
10962 run_program_env and test_program_prefix_after_env arguments.
10963 * stdio-common/tst-printf.sh: Do not set environment variables
10964 explicitly.
10965 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
10966 $(test-program-prefix-before-env), $(run-program-env) and
10967 $(test-program-prefix-after-env).
10968 * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
10969 run_program_env and test_program_prefix_after_env arguments.
10970 Split $test calls into $test_pre and $test.
10971 * timezone/Makefile (build-testdata): Use
10972 $(built-program-cmd-before-env), $(run-program-env) and
10973 $(built-program-cmd-after-env).
10974
ed36bfa1
AZ
109752014-06-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10976
10977 * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
10978 strlen for non SHARED builds.
10979
fc75bf46
SP
109802014-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
10981
10982 * nptl/allocatestack.c (check_list): Inlined function...
10983 (__reclaim_stacks): ... here.
10984
d89b3d80
OB
109852014-06-05 Ondřej Bílka <neleai@seznam.cz>
10986
10987 [BZ #15698]
10988 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
10989 memory overrun.
10990
2bf18041
JM
109912014-06-05 Joseph Myers <joseph@codesourcery.com>
10992
10993 * Rules (make-test-out): Include
10994 LOCPATH=$(common-objpfx)localedata in default environment.
10995 * debug/Makefile (tst-chk1-ENV): Remove variable.
10996 (tst-chk2-ENV): Likewise.
10997 (tst-chk3-ENV): Likewise.
10998 (tst-chk4-ENV): Likewise.
10999 (tst-chk5-ENV): Likewise.
11000 (tst-chk6-ENV): Likewise.
11001 (tst-lfschk1-ENV): Likewise.
11002 (tst-lfschk2-ENV): Likewise.
11003 (tst-lfschk3-ENV): Likewise.
11004 (tst-lfschk4-ENV): Likewise.
11005 (tst-lfschk5-ENV): Likewise.
11006 (tst-lfschk6-ENV): Likewise.
11007 * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
11008 (tst-iconv7-ENV): Likewise.
11009 * intl/Makefile (LOCPATH-ENV): Likewise.
11010 (tst-codeset-ENV): Likewise.
11011 (tst-gettext3-ENV): Likewise.
11012 (tst-gettext5-ENV): Likewise.
11013 * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
11014 (tst-fopenloc-ENV): Likewise.
11015 (tst-fgetws-ENV): Remove variable.
11016 (tst-ungetwc1-ENV): Likewise.
11017 (tst-ungetwc2-ENV): Likewise.
11018 (bug-ungetwc2-ENV): Likewise.
11019 (tst-swscanf-ENV): Likewise.
11020 (bug-ftell-ENV): Likewise.
11021 (tst-fgetwc-ENV): Likewise.
11022 (tst-fseek-ENV): Likewise.
11023 (tst-ftell-partial-wide-ENV): Likewise.
11024 (tst-ftell-active-handler-ENV): Likewise.
11025 (tst-ftell-append-ENV): Likewise.
11026 * posix/Makefile (tst-fnmatch-ENV): Likewise.
11027 (tst-regexloc-ENV): Likewise.
11028 (bug-regex1-ENV): Likewise.
11029 (tst-regex-ENV): Likewise.
11030 (tst-regex2-ENV): Likewise.
11031 (bug-regex5-ENV): Likewise.
11032 (bug-regex6-ENV): Likewise.
11033 (bug-regex17-ENV): Likewise.
11034 (bug-regex18-ENV): Likewise.
11035 (bug-regex19-ENV): Likewise.
11036 (bug-regex20-ENV): Likewise.
11037 (bug-regex22-ENV): Likewise.
11038 (bug-regex23-ENV): Likewise.
11039 (bug-regex25-ENV): Likewise.
11040 (bug-regex26-ENV): Likewise.
11041 (bug-regex30-ENV): Likewise.
11042 (bug-regex32-ENV): Likewise.
11043 (bug-regex33-ENV): Likewise.
11044 (bug-regex34-ENV): Likewise.
11045 (bug-regex35-ENV): Likewise.
11046 (tst-rxspencer-ENV): Likewise.
11047 (tst-rxspencer-no-utf8-ENV): Likewise.
11048 * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
11049 (tst-sscanf-ENV): Likewise.
11050 (tst-swprintf-ENV): Likewise.
11051 (tst-swscanf-ENV): Likewise.
11052 (test-vfprintf-ENV): Likewise.
11053 (scanf13-ENV): Likewise.
11054 (bug14-ENV): Likewise.
11055 (tst-grouping-ENV): Likewise.
11056 * stdlib/Makefile (tst-strtod-ENV): Likewise.
11057 (tst-strtod3-ENV): Likewise.
11058 (tst-strtod4-ENV): Likewise.
11059 (tst-strtod5-ENV): Likewise.
11060 (testmb2-ENV): Likewise./
11061 * string/Makefile (tst-strxfrm-ENV): Likewise.
11062 (tst-strxfrm2-ENV): Likewise.
11063 (bug-strcoll1-ENV): Likewise.
11064 (test-strcasecmp-ENV): Likewise.
11065 (test-strncasecmp-ENV): Likewise.
11066 * time/Makefile (tst-strptime-ENV): Likewise.
11067 (tst-ftime_l-ENV): Likewise.
11068 * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
11069 (tst-mbrtowc-ENV): Likewise.
11070 (tst-wcrtomb-ENV): Likewise.
11071 (tst-mbrtowc2-ENV): Likewise.
11072 (tst-c16c32-1-ENV): Likewise.
11073 (tst-mbsnrtowcs-ENV): Likewise.
11074
cd1fb604
OB
110752014-06-05 Ondřej Bílka <neleai@seznam.cz>
11076
11077 * manual/resource.texi (How to get information about the memory
11078 subsystem?): Fix typo.
11079 Reported by Peon de la Parra Ivan <peon@keba.com>
11080
b42eca7d
GY
110812014-06-03 Guo Yixuan <culu.gyx@gmail.com>
11082
11083 [BZ #16882]
11084 * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
11085 (pthread_spin_lock): Branch out of spin loop to proper location.
11086 * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
11087 (pthread_spin_lock): Likewise.
11088
902b71f9
DM
11089 * nptl/tst-spin4.c: New test.
11090 * nptl/Makefile (tests): Add tst-spin4.
11091
f9d2d032
AS
110922014-06-03 Andreas Schwab <schwab@suse.de>
11093
11094 [BZ #15946]
11095 * resolv/res_send.c (send_dg): Reload file descriptor after
11096 calling reopen.
11097
cf7bfd28
SL
110982014-06-03 Stefan Liebler <stli@linux.vnet.ibm.com>
11099
11100 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
11101
111cc714
RH
111022014-06-03 Richard Henderson <rth@redhat.com>
11103
89b4bd6b
RH
11104 * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
11105 * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
11106 * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
11107 SAVE_PID and RESTORE_PID blocks from pt-vfork.S. Map 0 to INT_MIN
11108 in the SAVE_PID block.
11109 (__libc_vfork): New alias.
71840409 11110 * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
89b4bd6b 11111
111cc714
RH
11112 * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
11113 child in registers, not on the stack. Remove RESET_PID conditionals.
11114 * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
11115
ccc39911
MS
111162014-06-03 Marcus Shawcroft <marcus.shawcroft@arm.com>
11117
11118 * sysdeps/aarch64/libm-test-ulps: Regenerate.
11119
693096cc
W
111202014-06-03 Wilco <wdijkstr@arm.com>
11121
11122 * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
11123 (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
11124 (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
11125 Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
11126 * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
11127 Likewise.
11128
0b4366bc
W
111292014-06-03 Wilco <wdijkstr@arm.com>
11130
11131 * sysdeps/aarch64/fpu/math_private.h
11132 (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
11133 (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
11134 (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
11135 (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
11136 Fix declarations.
11137
8747cd03
KS
111382014-06-03 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
11139
11140 * crypt/crypt-private.h: Include ufc-crypt.h.
11141 (__b64_from_24bit): Declare extern.
11142 * crypt/crypt_util.c(__b64_from_24bit): New function.
11143 (b64t): New static const variable.
11144 * crypt/md5-crypt.c (b64_from_24bit): Remove function.
11145 (b64t): Remove variable.
11146 (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
11147 * crypt/sha256-crypt.c: Include crypt-private.h.
11148 (b64t): Remove variable.
11149 (__sha256_crypt_r): Remove b64_from_24bit and replace
11150 with __b64_from_24bit.
11151 * crypt/sha512-crypt.c: Likewise.
11152
d936d379
RM
111532014-06-02 Roland McGrath <roland@hack.frob.com>
11154
11155 * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
11156 * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
11157 Label the code __libc_vfork rather than __vfork.
11158 [!NOT_IN_libc] (vfork): Define as weak alias.
11159 [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
11160 * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
11161 * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
11162
9fa76613
SP
111632014-06-02 Siddhesh Poyarekar <siddhesh@redhat.com>
11164
11165 * malloc/malloc.c (malloc_info): Fix format specifier for
11166 n_mmaps.
11167
a88dadbe
W
111682014-06-02 Wilco <wdijkstr@arm.com>
11169
11170 * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
11171 FPCR write.
11172
c95b3011
W
111732014-06-02 Wilco <wdijkstr@arm.com>
11174
11175 [BZ #17009]
11176 * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
11177 Rewrite to reduce FPCR/FPSR accesses.
11178
6b4d7a90
DM
111792014-06-01 David S. Miller <davem@davemloft.net>
11180
11181 * sysdeps/sparc/fpu/libm-test-ulps: Update.
11182
30f3d07c
DM
111832014-05-31 David S. Miller <davem@davemloft.net>
11184
11185 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
11186 to occur in round to nearest mode when |x| >= 2.0
11187
74f31c18
RH
111882014-05-30 Richard Henderson <rth@twiddle.net>
11189
f0712b54
RH
11190 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
11191 (PSEUDO_RET_NOERRNO): Remove.
11192 (ret): Don't redefine.
11193 (ret_NOERRNO): Define in terms of ret.
11194 (ret_ERRVAL): Likewise.
11195
74f31c18
RH
11196 * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
11197 use of PSEUDO_RET; perform the error check directly.
11198
30477995
MM
111992014-05-30 Marko Myllynen <myllynen@redhat.com>
11200
11201 * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
11202 with __int128_t.
11203
62a58816
SP
112042014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
11205
11206 * malloc/malloc (malloc_info): Fix formatting.
11207
4d653a59
SP
112082014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
11209 Roland McGrath <roland@hack.frob.com>
11210
11211 * malloc/malloc (malloc_info): Also print mmapped statistics.
11212
5190c17f
RM
112132014-05-30 Roland McGrath <roland@hack.frob.com>
11214
11215 * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
11216 * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
11217
987c0269
OB
112182014-05-30 Ondřej Bílka <neleai@seznam.cz>
11219
11220 * malloc/malloc.c (malloc_info): Inline mi_arena.
11221
af4e8ef9
RH
112222014-05-29 Richard Henderson <rth@twiddle.net>
11223
1670e207
RH
11224 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
11225 Remove comma before expanding ASM_ARGS_##nr.
11226 (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
11227 Make _x0 a strict output; make _x8 a strict input; adjust expansion
11228 of ASM_ARGS_##nr.
11229 (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
11230 (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
11231 (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
11232 (ASM_ARGS_1): Add leading comma.
11233
11a28aee
RH
11234 * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
11235 (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
11236 to __errno_location.
11237 * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
11238 Remove the expected plt for __errno_location.
11239
a17e5ffb 11240 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11a28aee 11241 [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
a17e5ffb
RH
11242 call to __read_tp.
11243
b5be4597
RH
11244 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11245 Always allocate 64 bytes of stack frame. Use ldp/stp to create
11246 it and break it down.
11247 (DOCARGS_0, DOCARGS_1): Do nothing.
11248 (DOCARGS_2): Update to store into the new stack frame.
11249 (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
11250 (UNDOCARGS_1): Update to restore from the new stack frame.
11251 (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
11252 (UNDOCARGS_5, UNDOCARGS_6): Likewise.
11253
645d44ab
RH
11254 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11255 (SINGLE_THREAD_P): New parameter for result regno.
11256 (PSEUDO): Update to match; use cbz instead of beq.
11257
a8b4f04a
RH
11258 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11259 Use ENTRY to define the _nocancel entry point. Share the syscall
11260 and syscall error check paths with the cancel path.
11261 (PSEUDO_END): New.
11262
af4e8ef9
RH
11263 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
11264 whitespace; tabs before and after asm mnemonics.
11265
26b0d2e1
EW
112662014-05-29 Eric Wong <normalperson@yhbt.net>
11267
11268 [BZ #15132]
11269 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
11270 Call fstat64 or stat64 internally, depending on arguments passed.
11271 Replace stat buffer argument with file descriptor argument.
11272 (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
11273 * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
11274 Pass fd to __internal_statvfs instead of calling fstat64.
11275 * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
11276 Pass fd to __internal_statvfs64 instead of calling fstat64.
11277 * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
11278 Pass -1 to __internal_statvfs instead of calling stat64.
11279 * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
11280 Pass -1 to __internal_statvfs64 instead of calling stat64.
11281
1efe2bd9
RM
112822014-05-28 Roland McGrath <roland@hack.frob.com>
11283
0d3b7a19
RM
11284 * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
11285 that was previously under [RESET_PID].
11286 * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
11287
1efe2bd9
RM
11288 * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
11289 * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
11290
a6bea3ca
RM
112912014-05-27 Roland McGrath <roland@hack.frob.com>
11292
30b6629e
RM
11293 * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
11294
a6bea3ca
RM
11295 * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
11296 * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
11297
3dfb9a5c
OB
112982014-05-27 Ondřej Bílka <neleai@seznam.cz>
11299
11300 * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
11301
774f9285
AS
113022014-05-27 Andreas Schwab <schwab@suse.de>
11303
11304 * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
11305 TLS_INIT_TP macro.
11306 * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
11307 * elf/rtld.c (init_tls, dl_main): Likewise.
11308 * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
11309 * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
11310 * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
11311 * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
11312 * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
11313 * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
11314 * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
11315 * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
11316 * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
11317 * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
11318 * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
11319 * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
11320 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
11321 * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
11322 * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
11323 * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
11324 * sysdeps/generic/tls.h: Update description.
11325
36ffe739
WN
113262014-05-27 Will Newton <will.newton@linaro.org>
11327
11328 [BZ #16990]
11329 * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
11330 and restore r2 rather than just restoring.
11331
2482ae43
SP
113322014-05-27 Siddhesh Poyarekar <siddhesh@redhat.com>
11333
11334 [BZ #16724]
11335 * libio/tst-ftell-append.c: New test case.
11336 * libio/Makefile (tests): Add test case.
11337 * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
11338 append mode.
11339 * libio/wfileops.c (do_ftell_wide): Likewise.
11340
3d1024e8
AZ
113412014-05-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11342
bab90016
AZ
11343 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11344
c7a8d667
AZ
11345 * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
11346 ...
11347 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
11348 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
11349 * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
11350 * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
11351 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
11352 * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
11353 * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
11354 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
11355 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
11356 Moved ...
11357 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
11358 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
11359 Moved ...
11360 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
11361 * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
11362 * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
11363 * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
11364 * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
11365 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
11366 ...
11367 * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
11368 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
11369 Moved ...
11370 * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
11371 here.
11372 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
11373 ...
11374 * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
11375 * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
11376 * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
11377
daee7851
AZ
11378 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
11379 * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
11380 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
11381 * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
11382
50a40819
AZ
11383 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
11384 merge into ...
11385 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
11386 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
11387 ...
11388 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
11389 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
11390 ...
11391 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
11392 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
11393 Moved ...
11394 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
11395 here.
11396 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
11397 Moved ...
11398 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
11399 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
11400 Moved ...
11401 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
11402
8464c2a1
AZ
11403 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
11404 conditional [RESET_PID].
11405 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
11406 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
11407 removed.
11408 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
11409 removed.
11410
3d1024e8
AZ
11411 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
11412 <tcb-offsets.h>.
11413 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
11414 (__libc_vfork): New strong alias.
11415 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
11416 removed.
11417 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
11418 Removed.
11419
11420 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
11421 <tcb-offsets.h>.
11422 (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
11423 (__libc_vfork): New strong alias.
11424 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
11425 removed.
11426 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
11427 removed.
11428
fdfd175d
CD
114292014-05-26 Carlos O'Donell <carlos@redhat.com>
11430
11431 * malloc/malloc.c (mi_arena): New function.
11432 (malloc_info): Remove nested function mi_arena. Call non-nosted
11433 function mi_arena.
11434
d298c416
AZ
114352014-05-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11436
11437 * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
11438 by insrwi.
11439 * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
11440 * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
11441 * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
11442 * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
11443 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
11444 * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
11445 * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
11446
b60ea6ff
AS
114472014-05-26 Andreas Schwab <schwab@suse.de>
11448
11449 [BZ #16984]
11450 * locale/programs/repertoire.c (repertoire_read): Add slash
11451 between I18NPATH element and file name.
11452 * locale/programs/locfile.c (locfile_read): Likewise.
11453
67365926
SL
114542014-05-26 Stefan Liebler <stli@linux.vnet.ibm.com>
11455
11456 * nptl/pthread_mutexattr_settype.c
11457 (__pthread_mutexattr_settype):
11458 Disable lock elision for PTHREAD_MUTEX_NORMAL.
11459
f8bdf1f0
SL
114602014-05-26 Stefan Liebler <stli@linux.vnet.ibm.com>
11461
11462 * nptl/tst-mutex5 (do_test):
11463 Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
11464
15eaf6ff
SP
114652014-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
11466
11467 * benchtests/README: Document 'init' directive.
11468 * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
11469 BENCH_INIT.
11470 * scripts/bench.py (gen_source): Define BENCH_INIT macro.
11471 (parse_file): Recognize 'init' directive.
11472
75f11331
KM
114732014-05-26 Kyle McMartin <kyle@redhat.com>
11474
11475 [BZ #16796]
11476 * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
11477 alignment of struct pthread.
11478
c3ec475c
SP
114792014-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
11480
11481 [BZ #16878]
11482 * nscd/netgroupcache.c (addgetnetgrentX): Look for
11483 NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
11484 * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
11485 NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
11486
82aab97c
RH
114872014-05-25 Richard Henderson <rth@twiddle.net>
11488
aa2f176d
RH
11489 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11490 (SINGLE_THREAD_P_PIC): Remove.
11491 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
11492 (SINGLE_THREAD_P_PIC): Remove.
11493
ca3cfa40
RH
11494 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
11495 branch to syscall error ...
11496 (PSEUDO): ... here.
11497 [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
11498 from __local_syscall_error to .Lsyscall_error.
11499 [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
11500 (SYSCALL_ERROR): Update label name.
11501
6e6c2d01
RH
11502 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11503 Do not use DOARGS/UNDOARGS.
11504 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
11505 (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
11506 (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
11507 (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
11508 (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
11509
c69abcee
RH
11510 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
11511 block comment.
11512
82aab97c
RH
11513 * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
11514 define if !NOT_IN_libc.
11515 * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
11516 define with non-default symbol versions.
11517
8820e3ac
RH
115182014-05-23 Richard Henderson <rth@twiddle.net>
11519
900e445f
RH
11520 * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
11521 (vfork, __vfork): Define via compat_symbol.
11522
8820e3ac
RH
11523 * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
11524 [!HAVE_IFUNC] (vfork_compat): Remove.
11525 [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
11526
e59252a5
JM
115272014-05-23 Joseph Myers <joseph@codesourcery.com>
11528
11529 [BZ #16978]
11530 * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
11531 * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
11532 variable.
11533
132c7f5f
RH
115342014-05-23 Richard Henderson <rth@twiddle.net>
11535
bc89e962
RH
11536 * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
11537 * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
11538 * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
11539 * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
11540
11541 * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
11542 * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
11543 * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
11544 * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
11545 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
11546 * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
11547 * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
11548 * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
11549 * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
11550 * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
11551 * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
11552 * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
11553 * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
11554 * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
11555 * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
11556 * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
11557 * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
11558 * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
11559 * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
11560 * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
11561 * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
11562 * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
11563 * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
11564 * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
11565 * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
11566 * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
11567 * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
11568 * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
11569 * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
11570 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
11571 * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
11572 * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
11573 * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
11574 * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
11575 * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
11576 * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
11577 * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
11578 * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
11579 * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
11580 * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
11581 * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
11582 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
11583 * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
11584 * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
11585 * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
11586 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
11587 * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
11588 * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
11589 * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
11590 * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
11591 * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
11592 * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
11593 * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
11594 * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
11595 * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
11596 * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
11597
e2fa4bc2
RH
11598 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
11599 * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
11600 * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here. Restore PID
11601 before exiting on error.
11602 (__libc_vfork): New strong alias.
11603 * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
11604 * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
11605
279b24e2
RH
11606 * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
11607 that was previously under [RESET_PID].
11608 * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
11609
132c7f5f
RH
11610 * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
11611
b72592e7
JM
116122014-05-23 Joseph Myers <joseph@codesourcery.com>
11613
11614 [BZ #16977]
11615 * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
11616 value when x - 1 is zero.
11617 * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
11618 * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
11619 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
11620 0.0L for an argument of 1.0L.
11621 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
11622 Likewise.
11623 * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
11624 value when x - 1 is zero.
11625 * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
11626 * sysdeps/i386/fpu/libm-test-ulps: Update.
11627 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11628
2302d679
RV
116292014-05-23 Rasmus Villemoes <rv@rasmusvillemoes.dk>
11630
11631 * manual/filesys.texi (Scanning Directory Content): Fix prototype of
11632 alphasort and versionsort.
11633
32999d63
AZ
116342014-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11635
11636 * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
11637 macro.
11638 [copysignf]: Likewise.
11639
019324d0
SP
116402014-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
11641
11642 * crypt/md5-crypt.c: Fix formatting.
11643
34fff5c2
KS
116442014-05-22 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
11645
11646 * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
11647 (b64_from_24bit): New function.
11648
3d2badac
AZ
116492014-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11650
11651 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
11652 libc_hidden_builtin_def to ifunc.
11653 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
11654 [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
11655
f7bb179f 116562014-05-21 Roland McGrath <roland@hack.frob.com>
df54acbb
RM
11657
11658 * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
11659 * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
11660
4134b50d
JM
116612014-05-21 Joseph Myers <joseph@codesourcery.com>
11662
bb7d0337
JM
11663 * nscd/Depend (linuxthreads): Remove.
11664 (nptl): Add.
11665 * resolv/Depend (linuxthreads): Remove.
11666 * rt/Depend (linuxthreads): Remove.
11667
4134b50d
JM
11668 * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
11669 (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
11670 $(common-objpfx)elf/.
11671 (link-libc-before-gnulib): Likewise.
11672 (elfobjdir): Remove variable.
11673 * Makefile (install): Use $(elf-objpfx) instead of
11674 $(common-objpfx)elf/.
11675 * Makerules (link-libc-args): Use $(elf-objpfx) instead of
11676 $(elfobjdir)/.
11677 (link-libc-deps): Likewise.
11678 ($(common-objpfx)libc.so): Likewise.
11679 ($(common-objpfx)linkobj/libc.so): Likewise.
11680 [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
11681 instead of $(common-objpfx)elf/.
11682 (symbolic-link-list): Likewise.
11683 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
11684 [$(cross-compiling) = no]: Likewise.
11685 * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
11686 $(elfobjdir)/.
11687 (static-gnulib-arch): Likewise.
11688 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
11689 [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
11690 $(common-objpfx)elf/.
11691
3612eb8f
RH
116922014-05-21 Richard Henderson <rth@redhat.com>
11693
a6b3657b
RH
11694 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
11695 (SINGLE_THREAD_P): Use the correct width load. Fold
11696 into the ldr offset.
11697
3612eb8f
RH
11698 * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
11699 (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
11700
175cef41
JM
117012014-05-20 Joseph Myers <joseph@codesourcery.com>
11702
11703 * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
11704 (libgcc_s_resume): Use __attribute_used__.
11705 * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
11706 Likewise.
11707
e13bccd3
AZ
117082014-05-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11709
11710 * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
11711 optimization when used with float constants.
11712
7c112a38
AZ
11713 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11714
ae75a883
AJ
117152014-05-20 Aurelien Jarno <aurelien@aurel32.net>
11716
11717 [BZ #16915]
11718 * locale/nl_langinfo_l.c: Make direct reference to every
11719 _nl_current_CATEGORY symbol.
11720 * localedata/Makefile (test-srcs): Add tst-langinfo-static.
11721 (tests-static): Add tst-langinfo-static.
11722 (tests-special): Add tst-langinfo-static.out.
11723 ($(objpfx)tst-langinfo.out): Redirect output.
11724 ($(objpfx)tst-langinfo-static.out): New.
11725 * localedata/tst-langinfo.sh: Send output to stdout.
11726 * localedata/tst-langinfo-static.c: New file.
11727
4406c41c
AJ
11728 [BZ #16965]
11729 * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
11730 when the shift amount is modulo the limb size.
11731
4c0a1e63
RH
117322014-05-20 Richard Henderson <rth@redhat.com>
11733
de9d8f20
RH
11734 [BZ #16967]
11735 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
11736 Change type of sa_flags from unsigned int to int.
11737
4c0a1e63
RH
11738 [BZ #16966]
11739 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
57cce706
RH
11740
11741 * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
11742
a60339aa
WN
117432014-05-20 Will Newton <will.newton@linaro.org>
11744
11745 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
11746 Test the return value of the system call in the nocancel case.
11747
7d05a816
YR
117482014-05-20 Will Newton <will.newton@linaro.org>
11749 Yvan Roux <yvan.roux@linaro.org>
11750
11751 * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
11752 #include of asm/ptrace.h.
11753 (PTRACE_GET_THREAD_AREA): Remove #undef.
11754 (PTRACE_GETHBPREGS): Likewise.
11755 (PTRACE_SETHBPREGS): Likewise.
11756 (struct user_regs_struct): New structure.
11757 (struct user_fpsimd_struct): New structure.
11758 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
11759 #include of asm/ptrace.h and second #include of sys/user.h.
11760 (PTRACE_GET_THREAD_AREA): Remove #undef.
11761 (PTRACE_GETHBPREGS): Likewise.
11762 (PTRACE_SETHBPREGS): Likewise.
11763 (ELF_NGREG): Use new struct user_regs_struct.
11764 (elf_fpregset_t): Use new struct user_fpsimd_struct.
11765
af121e37
AZ
117662014-05-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11767
11768 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
11769 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
11770
834caf06
JM
117712014-05-17 Jose E. Marchesi <jose.marchesi@oracle.com>
11772
11773 [BZ #16958]
11774 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
11775 membar to avoid block loads/stores to overlap previous stores.
11776
e184a918
RH
117772014-05-17 Richard Henderson <rth@redhat.com>
11778
11779 * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
11780 Create the __##syscall_name##_nocancel entry point.
11781 * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
11782 Remove; let the sysdep-cancel.h code create it.
11783
f56c7a6a
DM
117842014-05-17 David S. Miller <davem@davemloft.net>
11785
11786 * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
11787 Protect with __USE_GNU.
11788 (TIOCSET_TEMPT): Likewise.
11789 (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
11790 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
11791 these are already provided in bits/ioctl-types.h
11792
f75616b2
RM
117932014-05-16 Roland McGrath <roland@hack.frob.com>
11794
3edeca86
RM
11795 * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
11796 * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
11797
f75616b2
RM
11798 * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
11799 Use wait4 regardless of [__NR_waitpid].
11800
deb0f7f6
MR
118012014-05-16 Maciej W. Rozycki <macro@codesourcery.com>
11802
11803 PR libgcc/60166
11804 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
11805 (_FP_NANSIGN_Q): Set the quiet bit.
11806
79520f4b
JM
118072014-05-16 Joseph Myers <joseph@codesourcery.com>
11808
11809 * benchtests/Makefile
11810 ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
11811 not $(common-objpfx)math/libm.so.
11812 ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
11813 $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
11814 * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
11815 $(common-objpfx)dlfcn/libdl.so.
11816 ($(objpfx)tst-audit8): Depend on $(libm), not
11817 $(common-objpfx)math/libm.so.
11818 * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
11819 not $(common-objpfx)dlfcn/libdl.so.
11820 * math/Makefile
11821 ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
11822 Depend on $(libm), not $(objpfx)libm.so. Do not condition on
11823 [$(build-shared) = yes].
11824 ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
11825 $(common-objpfx)nptl/libpthread.so.
11826 * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
11827 $(common-objpfx)math/libm.so$(libm.so-version) or
11828 $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
11829 * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
11830 $(common-objpfx)dlfcn/libdl.so.
11831 * setjmp/Makefile (link-libm): Remove variable.
11832 ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
11833 * stdio-common/Makefile (link-libm): Remove variable.
11834 ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
11835 * stdlib/Makefile (link-libm): Remove variable.
11836 ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
11837 ($(objpfx)tst-strtod-round): Likewise.
11838 ($(objpfx)tst-tininess): Likewise.
11839 ($(objpfx)tst-strtod-underflow): Likewise.
11840 ($(objpfx)tst-strtod6): Likewise.
11841 ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
11842 $(libdl), not $(common-objpfx)nptl/libpthread.so and
11843 $(common-objpfx)dlfcn/libdl.so.
11844
026b0fe4
AZ
118452014-05-16 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11846
11847 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
11848 BSD terminal modes definitions.
11849
def4bcb2
RM
118502014-05-16 Roland McGrath <roland@hack.frob.com>
11851
fe39b021
RM
11852 * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
11853 * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
11854
1d1fc46e 11855 * sysdeps/unix/sysv/linux/arch-fork.h: New file.
def4bcb2
RM
11856 * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
11857 * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
11858 Don't do #include_next.
11859 * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
11860 * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
11861 Don't do #include_next.
11862 * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
11863 * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
11864 * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
11865 * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
11866
c72399fb
AM
118672014-05-16 Allan McRae <allan@archlinux.org>
11868
d51d659d
AM
11869 * po/sv.po: Update Swedish translation from translation project.
11870
c72399fb
AM
11871 * timezone/Makefile ($(objpfx)tzselect): Use correct variable
11872 in sed expression.
11873
d0583c40
AJ
118742014-05-16 Aurelien Jarno <aurelien@aurel32.net>
11875
11876 [BZ #16917]
11877 * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
11878 errno if the TIOCGPTN ioctl fails with an error different than
11879 EINVAL.
11880 * login/tst-ptsname.c: New file.
11881 * login/Makefile (tests): Add tst-ptsname.
11882
d16e6ec7
AJ
11883 [BZ #16943]
11884 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
11885 and prlimit64.
11886
cf26a0cb
SP
118872014-05-15 Siddhesh Poyarekar <siddhesh@redhat.com>
11888
11889 [BZ #16849]
11890 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
11891 herrno to return EAI_AGAIN.
11892
5675da1e
RM
118932014-05-14 Roland McGrath <roland@hack.frob.com>
11894
a5d87b3d
RM
11895 * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
11896 * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
11897 * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
11898 * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
11899 * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
11900 * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
11901 * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
11902 * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
11903 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
11904 * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
11905 * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
11906 * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
11907 * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
11908 * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
11909 * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
11910 * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
11911 * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
11912 * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
11913 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
11914 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
11915 * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
11916 * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
11917 * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
11918 * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
11919 * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
11920 * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
11921 * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
11922 * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
11923 * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
11924 * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
11925 * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
11926 * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
11927 * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
11928 * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
11929 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
11930 Moved ...
11931 * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
11932 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
11933 * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
11934 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
11935 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
11936 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
11937 * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
11938 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
11939 * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
11940 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
11941 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
11942 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
11943 * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
11944 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
11945 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
11946 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
11947 * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
11948 * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
11949 * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
11950 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
11951 * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
11952 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
11953 * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
11954 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
11955 * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
11956 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
11957 * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
11958 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
11959 Moved ...
11960 * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
11961 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
11962 * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
11963 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
11964 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
11965 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
11966 * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
11967 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
11968 * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
11969 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
11970 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
11971 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
11972 * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
11973 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
11974 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
11975 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
11976 * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
11977 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
11978 * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
11979 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
11980 Moved ...
11981 * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
11982 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
11983 * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
11984
039890a6
RM
11985 * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
11986 * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
11987 (libpthread-sysdep_routines): Add elision-related stuff here instead.
11988 * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
11989 * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
11990 * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
11991 * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
11992 * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
11993 * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
11994 * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
11995 * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
11996 * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
11997 * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
11998 * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
11999 * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
12000 * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
12001 * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
12002 * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
12003 * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
12004 * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
12005 * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
12006 * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
12007 * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
12008 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
12009 * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
12010 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
12011 * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
12012 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
12013 * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
12014 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
12015 * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
12016
65c89320
RM
12017 * sysdeps/unix/sysv/linux/mips/fork.h: New file.
12018 * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
12019
348f8e8c
RM
12020 * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
12021 * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
12022 * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
12023 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
12024 * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
12025 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
12026 Moved ...
12027 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
12028 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
12029 Moved ...
12030 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
12031 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
12032 Moved ...
12033 * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
12034 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
12035 Moved ...
12036 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
12037 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
12038 * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
12039 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
12040 Moved ...
12041 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
12042 * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
12043 * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
12044 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
12045 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
12046 * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
12047 * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
12048 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
12049 Moved ...
12050 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
12051 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
12052 Moved ...
12053 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
12054 ... here.
12055 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
12056 * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
12057 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
12058 * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
12059 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
12060 Moved ...
12061 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
12062 ... here.
12063 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
12064 Moved ...
12065 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
12066 * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
12067 * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
12068 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
12069 * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
12070 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
12071 Moved ...
12072 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
12073 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
12074 Moved ...
12075 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
12076 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
12077 Moved ...
12078 * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
12079 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
12080 Moved ...
12081 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
12082 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
12083 * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
12084 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
12085 Moved ...
12086 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
12087 * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
12088 * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
12089 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
12090 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
12091 * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
12092 * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
12093 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
12094 Moved ...
12095 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
12096 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
12097 Moved ...
12098 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
12099 ... here.
12100 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
12101 * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
12102 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
12103 * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
12104 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
12105 Moved ...
12106 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
12107 ... here.
12108 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
12109 Moved ...
12110 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
12111 * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
12112 * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
12113 * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
12114 * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
12115 * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
12116 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
12117 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
12118 * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
12119 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
12120 Moved ...
12121 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
12122 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
12123 Moved ...
12124 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
12125 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
12126 Moved ...
12127 * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
12128 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
12129 Moved ...
12130 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
12131 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
12132 * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
12133 * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
12134 * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
12135 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
12136 Moved ...
12137 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
12138 * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
12139 * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
12140 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
12141 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
12142 * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
12143 * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
12144 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
12145 Moved ...
12146 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
12147 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
12148 Moved ...
12149 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
12150 ... here.
12151 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
12152 * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
12153 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
12154 * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
12155 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
12156 Moved ...
12157 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
12158 ... here.
12159 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
12160 Moved ...
12161 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
12162 * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
12163 * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
12164 * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
12165 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
12166 * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
12167 * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
12168 * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
12169 * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
12170 * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
12171 * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
12172
5085af05
RM
12173 * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
12174 * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
12175
708f0813
RM
12176 * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
12177 * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
12178
c96067bc
RM
12179 * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
12180 * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
12181 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
12182 * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
12183 * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
12184 * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
12185 * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
12186 * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
12187 * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
12188 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
12189 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
12190 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
12191 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
12192 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
12193 * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
12194 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
12195 * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
12196 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
12197 Moved ...
12198 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
12199 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
12200 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
12201 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
12202 Moved ...
12203 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
12204 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
12205 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
12206 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
12207 * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
12208 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
12209 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
12210 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
12211 Moved ...
12212 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
12213 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
12214 Moved ...
12215 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
12216 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
12217 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
12218 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
12219 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
12220 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
12221 * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
12222 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
12223 * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
12224 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
12225 * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
12226 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
12227 * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
12228 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
12229 * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
12230 * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
12231 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
12232
ec136444
RM
12233 * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
12234 * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
12235 * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
12236 * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
12237 * sysdeps/unix/sysv/linux/i386/fork.h: New file.
12238
2fbdf533
RM
12239 * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
12240 * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
12241 * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
12242 * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
12243 * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
12244 * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
12245 * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
12246 * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
12247 * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
12248 * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
12249
4c68138b
RM
12250 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
12251 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
12252
4eaae765
RM
12253 * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
12254 * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
3a51fb60
RM
12255 * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
12256 * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
12257 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
12258 * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
12259 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
12260 * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
12261 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
12262 * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
12263 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
12264 * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
12265 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
12266 * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
12267 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
12268 Update #include.
12269 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
12270 Likewise.
12271 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
12272 Likewise.
12273 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
12274 Likewise.
12275 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
12276 Likewise.
12277 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
12278 Likewise.
12279 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
12280 Likewise.
12281 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
12282 Likewise.
12283 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
12284 Likewise.
12285 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
12286 Likewise.
4ef6befa
RM
12287 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
12288 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
12289 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
12290 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
12291 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
5aa618fb
RM
12292 * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
12293 * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
12294 * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
12295 * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
12296 * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
12297 * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
12298 * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
12299 * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
12300 * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Likewise.
12301 * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Likewise.
3a51fb60 12302
941d7dfd
RM
12303 * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
12304 that was previously under [RESET_PID].
12305 * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
12306 * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
12307 * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
12308
1b731c35
RM
12309 * sysdeps/i386/nptl/Implies: New file.
12310 * sysdeps/x86_64/nptl/Implies: New file.
12311 * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
12312 * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
12313 * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
12314 * sysdeps/x86/nptl/bits/semaphore.h: ... here.
12315
e2787137
RM
12316 * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
12317 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12318 (__libc_vfork): New strong alias.
12319 * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
12320 * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
12321
12322 * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
12323 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12324 (__libc_vfork): New strong alias.
12325 * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
12326 * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
12327
5675da1e
RM
12328 * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
12329 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
12330 (__libc_vfork): New strong alias.
12331 * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
12332 * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
12333 * nptl/pt-vfork.c: New file.
12334 * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
12335 (libpthread: GLIBC_2.20): New version set (empty).
12336
4f02e2b8
WN
123372014-05-14 Will Newton <will.newton@linaro.org>
12338
12339 * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
12340 rather than #if.
12341
0bf061d3
JM
123422014-05-14 Joseph Myers <joseph@codesourcery.com>
12343
1a84c3d6
JM
12344 [BZ #16564]
12345 * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
12346 arguments with exponent 65 or above.
12347 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
12348 arguments 0x1p113L or above.
12349 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
12350 to arguments 0x1p107L or above.
12351 * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
12352 positive arguments with exponent 65 or above.
12353 * math/auto-libm-test-in: Add more tests of log1p.
12354 * math/auto-libm-test-out: Regenerated.
12355
01dbacd2
JM
12356 [BZ #16928]
12357 * math/s_cacos.c (__cacos): Ensure zero real part of result from
12358 non-finite arguments is +0.
12359 * math/s_cacosf.c (__cacosf): Likewise.
12360 * math/s_cacosl.c (__cacosl): Likewise.
12361 * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
12362 * sysdeps/i386/fpu/libm-test-ulps: Update.
12363 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12364
913d03c8
JM
12365 [BZ #16927]
12366 * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
12367 value.
12368 * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
12369 * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
12370 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
12371 for explicit high bit of mantissa when testing for argument equal
12372 to 1.
12373 * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
12374 * sysdeps/i386/fpu/libm-test-ulps: Update.
12375 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12376
0bf061d3
JM
12377 [BZ #16516]
12378 * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
12379 (__erf): Scale by 16 instead of 8 in potentially underflowing
12380 case. Ensure exception if result actually underflows.
12381 * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
12382 (__erff): Scale by 16 instead of 8 in potentially underflowing
12383 case. Ensure exception if result actually underflows.
12384 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
12385 (efx8): Remove variable.
12386 (__erfl): Scale by 16 instead of 8 in potentially underflowing
12387 case. Ensure exception if result actually underflows.
12388 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
12389 (efx8): Remove variable.
12390 (__erfl): Scale by 16 instead of 8 in potentially underflowing
12391 case. Ensure exception if result actually underflows.
12392 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
12393 (efx8): Remove variable.
12394 (__erfl): Scale by 16 instead of 8 in potentially underflowing
12395 case. Ensure exception if result actually underflows.
12396 * math/auto-libm-test-in: Add more tests of erf.
12397 * math/auto-libm-test-out: Regenerated.
12398
73ba67cb
AS
123992014-05-14 Andreas Schwab <schwab@suse.de>
12400
3d8c8bff
AS
12401 * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
12402 Remove code conditionalized on USE___THREAD.
12403
73ba67cb
AS
12404 * config.h.in (HAVE_PT_CHOWN): Define as 0.
12405 * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
12406 not definedness.
12407
5c521ecd
JM
124082014-05-14 Joseph Myers <joseph@codesourcery.com>
12409
5e7698c6
JM
12410 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
12411 Define unconditionally.
12412 (__ASSUME_O_CLOEXEC): Likewise.
12413 (__ASSUME_SOCK_CLOEXEC): Likewise.
12414 (__ASSUME_IN_NONBLOCK): Likewise.
12415 (__ASSUME_PIPE2): Likewise.
12416 (__ASSUME_EVENTFD2): Likewise.
12417 (__ASSUME_SIGNALFD4): Likewise.
12418 (__ASSUME_DUP3): Likewise.
12419 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
12420 (__ASSUME_DUP3): Do not define.
12421 (__ASSUME_EVENTFD2): Likewise.
12422 (__ASSUME_IN_NONBLOCK): Likewise.
12423 (__ASSUME_O_CLOEXEC): Likewise.
12424 (__ASSUME_PIPE2): Likewise.
12425 (__ASSUME_SIGNALFD4): Likewise.
12426 (__ASSUME_SOCK_CLOEXEC): Likewise.
12427 (__ASSUME_UTIMES): Undefine.
12428 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12429 (__ASSUME_UTIMES): Do not define.
12430 (__ASSUME_O_CLOEXEC): Likewise.
12431 (__ASSUME_SOCK_CLOEXEC): Likewise.
12432 (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
12433 0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
12434 0x020621].
12435 (__ASSUME_PIPE2): Likewise.
12436 (__ASSUME_EVENTFD2): Likewise.
12437 (__ASSUME_SIGNALFD4): Likewise.
12438 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
12439 * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
12440 Do not define.
12441 (__ASSUME_EVENTFD2): Likewise.
12442 (__ASSUME_SIGNALFD4): Likewise.
12443 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
12444 (__ASSUME_32BITUIDS): Likewise.
12445 (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
12446 (__ASSUME_IPC64): Likewise.
12447 (__ASSUME_ST_INO_64_BIT): Likewise.
12448 (__ASSUME_GETDENTS64_SYSCALL): Likewise.
12449 [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
12450 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
12451 (__ASSUME_UTIMES): Do not define.
12452 (__ASSUME_PSELECT): Likewise.
12453 (__ASSUME_PPOLL): Likewise.
12454 (__ASSUME_O_CLOEXEC): Likewise.
12455 (__ASSUME_SOCK_CLOEXEC): Likewise.
12456 (__ASSUME_IN_NONBLOCK): Likewise.
12457 (__ASSUME_PIPE2): Likewise.
12458 (__ASSUME_EVENTFD2): Likewise.
12459 (__ASSUME_SIGNALFD4): Likewise.
12460 (__ASSUME_DUP3): Likewise.
12461 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12462 (__ASSUME_UTIMES): Likewise.
12463 (__ASSUME_O_CLOEXEC): Likewise.
12464 (__ASSUME_SOCK_CLOEXEC): Likewise.
12465 (__ASSUME_IN_NONBLOCK): Likewise.
12466 (__ASSUME_PIPE2): Likewise.
12467 (__ASSUME_EVENTFD2): Likewise.
12468 (__ASSUME_SIGNALFD4): Likewise.
12469 (__ASSUME_DUP3): Likewise.
12470 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12471 (__ASSUME_UTIMES): Likewise.
12472 (__ASSUME_O_CLOEXEC): Likewise.
12473 (__ASSUME_SOCK_CLOEXEC): Likewise.
12474 (__ASSUME_IN_NONBLOCK): Likewise.
12475 (__ASSUME_PIPE2): Likewise.
12476 (__ASSUME_EVENTFD2): Likewise.
12477 (__ASSUME_SIGNALFD4): Likewise.
12478 (__ASSUME_DUP3): Likewise.
12479 * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
12480 Likewise.
12481 (__ASSUME_UTIMES): Likewise.
12482 (__ASSUME_EVENTFD2): Likewise.
12483 (__ASSUME_SIGNALFD4): Likewise.
12484 * sysdeps/unix/sysv/linux/tile/kernel-features.h
12485 (__ASSUME_O_CLOEXEC): Likewise.
12486 (__ASSUME_SOCK_CLOEXEC): Likewise.
12487 (__ASSUME_IN_NONBLOCK): Likewise.
12488 (__ASSUME_PIPE2): Likewise.
12489 (__ASSUME_EVENTFD2): Likewise.
12490 (__ASSUME_SIGNALFD4): Likewise.
12491 (__ASSUME_DUP3): Likewise.
12492 (__ASSUME_UTIMES): Undefine.
12493
5c521ecd
JM
12494 * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
12495 feclearexcept. Remove symbol versioning code.
12496 * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv. Remove
12497 symbol versioning code.
12498 * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv. Remove
12499 symbol versioning code.
12500 * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
12501 feupdateenv. Remove symbol versioning code.
12502 * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
12503 fegetexceptflag. Remove symbol versioning code.
12504 * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
12505 fesetexceptflag. Remove symbol versioning code.
12506 * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
12507 GLIBC_2.2 and GLIBC_2.3.3 entries. Change GLIBC_2.1 to GLIBC_2.4.
12508 * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
12509 (__posix_fadvise64_l32): Remove prototype.
12510 [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
12511 code.
12512
5da9dfad
RM
125132014-05-13 Roland McGrath <roland@hack.frob.com>
12514
12515 * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
12516 * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
12517 * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
12518 * sysdeps/arm/nptl/bits/semaphore.h: ... here.
12519
893b4f37
SK
125202014-05-13 Sami Kerola <kerolasa@iki.fi>
12521
12522 * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
12523 current working directory
12524
e0db6517
RM
125252014-05-13 Roland McGrath <roland@hack.frob.com>
12526
58aa195d
RM
12527 * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
12528 * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
12529 * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
12530 * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
12531 * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
12532 * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
12533 * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
12534 * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
12535 * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
12536 * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
12537 * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
12538 * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
12539 * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
12540 * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
12541 * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
12542 * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
12543 * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
12544 * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
12545 * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
12546 * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
12547 * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
12548 * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
12549 * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
12550 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
12551 * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
12552 * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
12553 * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
12554 * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
12555 * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
12556 * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
12557 * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
12558 * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
12559 * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
12560 * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
12561 * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
12562 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
12563 * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
12564 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
12565 * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
12566 * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
12567 * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
12568 * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
12569
8c6d01f0
RM
12570 * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
12571 * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
12572
12573 * sysdeps/unix/sysv/linux/arm/Makefile
12574 [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
12575 Add rt-aeabi_unwind_cpp_pr1.
12576 [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
12577 Add nptl-aeabi_unwind_cpp_pr1.
12578 [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
12579 * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
12580 * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
12581 * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
12582 * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
12583 * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
12584
12585 * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
12586 * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
12587 * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
12588 * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
12589
bba6da4e
RM
12590 * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
12591 Deconditionalize the code that was previously under [RESET_PID].
12592 * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
12593
e0db6517
RM
12594 * sysdeps/generic/exit-thread.h: New file.
12595 * sysdeps/unix/sysv/linux/exit-thread.h: New file.
12596 * include/unistd.h (__exit_thread): Remove declaration.
12597 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
12598 * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
12599 * csu/libc-start.c: Include <exit-thread.h>.
12600 (LIBC_START_MAIN): Pass no argument to __exit_thread.
12601 * nptl/pthread_create.c: Include <exit-thread.h>.
12602 (start_thread): Call __exit_thread in place of __exit_thread_inline.
12603 * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
12604 * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
12605 * nptl/sysdeps/s390/pthreaddef.h: Likewise.
12606 * nptl/sysdeps/sh/pthreaddef.h: Likewise.
12607 * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
12608 * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
12609 * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
12610 * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
12611 * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
12612 * sysdeps/arm/nptl/pthreaddef.h: Likewise.
12613 * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
12614 * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
12615 * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
12616 * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
12617 * sysdeps/mips/nptl/pthreaddef.h: Likewise.
12618 * sysdeps/tile/nptl/pthreaddef.h: Likewise.
12619
01eb16fd
AS
126202014-05-13 Andreas Schwab <schwab@suse.de>
12621
12622 * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
12623
637461d9
JM
126242014-05-12 Joseph Myers <joseph@codesourcery.com>
12625
12626 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
12627 (__ASSUME_UTIMES): Do not condition on kernel version.
12628 (__ASSUME_PSELECT): Define unconditionally.
12629 (__ASSUME_PPOLL): Likewise.
12630 (__ASSUME_ATFCTS): Likewise.
12631 (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
12632 (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
12633 (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
12634 (__ASSUME_UTIMENSAT): Define unconditionally.
12635 (__ASSUME_PRIVATE_FUTEX): Likewise.
12636 (__ASSUME_FALLOCATE): Likewise.
12637 (__ASSUME_O_CLOEXEC): Likewise.
12638 (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
12639 (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
12640 (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
12641 (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
12642 (__ASSUME_IN_NONBLOCK): Likewise.
12643 (__ASSUME_PIPE2): Likewise.
12644 (__ASSUME_EVENTFD2): Likewise.
12645 (__ASSUME_SIGNALFD4): Likewise.
12646 (__ASSUME_DUP3): Likewise.
12647 [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
12648 (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
12649 (__ASSUME_AT_RANDOM): Likewise.
12650 (__ASSUME_PREADV): Likewise.
12651 (__ASSUME_PWRITEV): Likewise.
12652 (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
12653 (__ASSUME_F_GETOWN_EX): Define unconditionally.
12654 (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
12655 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
12656 [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
12657 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12658 (__ASSUME_O_CLOEXEC): Define unconditionally.
12659 (__ASSUME_PSELECT): Do not undefine conditionally.
12660 (__ASSUME_PPOLL): Likewise.
12661 (__ASSUME_ATFCTS): Likewise.
12662 (__ASSUME_SET_ROBUST_LIST): Likewise.
12663 (__ASSUME_UTIMENSAT): Likewise.
12664 (__ASSUME_FDATASYNC): Define unconditionally.
12665 * sysdeps/unix/sysv/linux/arm/kernel-features.h
12666 (__ASSUME_SIGFRAME_V2): Likewise.
12667 )__ASSUME_EVENTFD2): Likewise.
12668 (__ASSUME_SIGNALFD4): Likewise.
12669 (__ASSUME_PSELECT): Do not undefine conditionally.
12670 (__ASSUME_PPOLL): Likewise.
12671 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
12672 (__ASSUME_PSELECT): Define unconditionally.
12673 (__ASSUME_PPOLL): Likewise.
12674 (__ASSUME_O_CLOEXEC): Likewise.
12675 (__ASSUME_SOCK_CLOEXEC): Likewise.
12676 (__ASSUME_IN_NONBLOCK): Likewise.
12677 (__ASSUME_PIPE2): Likewise.
12678 (__ASSUME_EVENTFD2): Likewise.
12679 (__ASSUME_SIGNALFD4): Likewise.
12680 (__ASSUME_DUP3): Likewise.
12681 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12682 (__ASSUME_O_CLOEXEC): Likewise.
12683 (__ASSUME_SOCK_CLOEXEC): Likewise.
12684 (__ASSUME_IN_NONBLOCK): Likewise.
12685 (__ASSUME_PIPE2): Likewise.
12686 (__ASSUME_EVENTFD2): Likewise.
12687 (__ASSUME_SIGNALFD4): Likewise.
12688 (__ASSUME_DUP3): Likewise.
12689 * sysdeps/unix/sysv/linux/mips/kernel-features.h
12690 (__ASSUME_EVENTFD2): Likewise.
12691 (__ASSUME_SIGNALFD4): Likewise.
12692 (__ASSUME_ACCEPT4_SYSCALL): Likewise.
12693
315eb1d8
AS
126942014-05-12 Andreas Schwab <schwab@suse.de>
12695
12696 [BZ #16932]
12697 * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
12698 (_nss_nis_gethostbyname4_r): Return error if item length is larger
12699 than maximum RPC packet size.
12700 * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
12701 * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
12702 * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
12703 (_nss_nis_getservbyport_r): Likewise.
12704
91df99f7
WN
127052014-05-12 Will Newton <will.newton@linaro.org>
12706
12707 * malloc/Makefile (tests): Add tst-mallopt.
12708 * malloc/tst-mallopt.c: New file.
12709
0a982a29
RM
127102014-05-09 Roland McGrath <roland@hack.frob.com>
12711
12712 * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
12713 [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
12714
0ded08a5
AZ
127152014-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
12716
12717 * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
12718 (tst-tlsmod6.so): Likewise.
12719
55d4d550
RM
127202014-05-09 Roland McGrath <roland@hack.frob.com>
12721
12722 * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
12723
77d08aca
JM
127242014-05-09 Joseph Myers <joseph@codesourcery.com>
12725
12726 [BZ #16064]
12727 * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
12728 and <dl-procinfo.h>.
12729 (__fegetenv): Save SSE state in envp->__eip if supported.
12730 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
12731 envp->__eip if supported.
12732 * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
12733 and <dl-procinfo.h>.
12734 (__fesetenv): Always set __eip, __cs_selector, __opcode,
12735 __data_offset and __data_selector in environment to 0. Set SSE
12736 state if supported.
12737 * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
12738 test-fenv-sse.
12739 [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
12740 -mfpmath=sse.
12741 * sysdeps/x86/fpu/test-fenv-sse.c: New file.
12742
28162f4d
WN
127432014-05-09 Will Newton <will.newton@linaro.org>
12744
12745 * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
12746 and libc_relro_required for ARM.
12747 * sysdeps/arm/preconfigure: Regenerate.
12748
5a414ff7
DV
127492014-05-09 Dominik Vogt <vogt@linux.vnet.ibm.com>
12750 Stefan Liebler <stli@linux.vnet.ibm.com>
12751
12752 * config.make.in (enable-lock-elision): New Makefile variable.
12753 * configure.ac: Likewise.
12754 * configure: Regenerate.
12755 * sysdeps/s390/configure.ac:
12756 Add check for gcc transactions support.
12757 * sysdeps/s390/configure: Regenerate.
12758 * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
12759 Build elision files if enabled.
12760 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
12761 Add lock elision support for s390.
12762 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
12763 * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
12764 * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
12765 * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
12766 * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
12767 * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
12768 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
12769 Likewise.
12770 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
12771 Likewise.
12772 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
12773 Likewise.
12774 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
12775 Likewise.
12776 * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
12777 (__lll_timedlock_elision, __lll_lock_elision)
12778 (__lll_unlock_elision, __lll_trylock_elision)
12779 (lll_timedlock_elision, lll_lock_elision)
12780 (lll_unlock_elision, lll_trylock_elision): Add.
12781 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
12782 (pthread_mutex_t): Add lock elision support for s390.
12783
1a2f40e5
W
127842014-05-14 Wilco <wdijkstr@arm.com>
12785
12786 * sysdeps/arm/fclrexcpt.c: Cleanup.
12787 * sysdeps/arm/fedisblxcpt.c: Cleanup.
12788 * sysdeps/arm/feenablxcpt.c: Cleanup.
12789 * sysdeps/arm/fegetenv.c: Cleanup.
12790 * sysdeps/arm/fegetexcept.c: Cleanup.
12791 * sysdeps/arm/fegetround.c: Cleanup.
12792 * sysdeps/arm/feholdexcpt.c: Cleanup.
12793 * sysdeps/arm/fesetenv.c: Cleanup.
12794 * sysdeps/arm/fesetround.c: Cleanup.
12795 * sysdeps/arm/feupdateenv.c: Cleanup.
12796 * sysdeps/arm/fgetexcptflg.c: Cleanup.
12797 * sysdeps/arm/fraiseexcpt.c: Cleanup.
12798 * sysdeps/arm/fsetexcptflg.c: Cleanup.
12799 * sysdeps/arm/ftestexcept.c: Cleanup.
12800 * sysdeps/arm/get-rounding-mode.h: Cleanup.
12801 * sysdeps/arm/setfpucw.c: Cleanup.
12802
f63c86fe
WN
128032014-05-09 Will Newton <will.newton@linaro.org>
12804
12805 * sysdeps/arm/armv7/strcmp.S: New file.
12806 * NEWS: Mention addition of ARMv7 optimized strcmp.
12807
7a1a51b5
RM
128082014-05-08 Roland McGrath <roland@hack.frob.com>
12809
95afbbe5
RM
12810 * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
12811 look for %.ac rather than %.in.
12812
12813 * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
12814 * sysdeps/unix/sysv/linux/configure.ac: Likewise.
12815 * sysdeps/mach/hurd/configure: Regenerated.
12816 * sysdeps/unix/sysv/linux/configure: Regenerated.
12817
7a1a51b5
RM
12818 * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
12819
5057ad3b
SE
128202014-05-07 Steve Ellcey <sellcey@mips.com>
12821
12822 [BZ# 16922]
12823 * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
12824 (LONG_SUB): Ditto.
12825 (PTR_SUB): Ditto.
12826
8dc97517
AS
128272014-05-07 Andreas Schwab <schwab@suse.de>
12828
12829 * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
12830 when skipping over non-matching result from nscd.
12831
ce0c5b8f
OB
128322014-05-07 Ondřej Bílka <neleai@seznam.cz>
12833
12834 [BZ #16876]
12835 * nptl/sockperf.c (client): Check socket return value.
8dc97517 12836
a1189263
OB
12837 [BZ #16877]
12838 * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
12839 nscd security class.
ce0c5b8f 12840
0f58d252
RM
128412014-05-06 Roland McGrath <roland@hack.frob.com>
12842
12843 * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
12844 * sysdeps/arm/unwind.h: ... here.
12845
83df9ad0
AJ
128462014-05-06 Aurelien Jarno <aurelien@aurel32.net>
12847
ce0c5b8f
OB
12848 [BZ# 16916]
12849 * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
12850 Define.
83df9ad0 12851
f360f94a
VR
128522014-05-06 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
12853
12854 * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
12855 * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
12856 multiarch strncpy for PPC64.
12857 * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
12858 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
12859 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
12860 multiarch optimizations.
12861 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
12862 (__libc_ifunc_impl_list): Likewise.
12863 * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
12864 * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
12865 multiarch stpncpy for PPC64.
12866 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
12867 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
12868
978a41c3
AS
128692014-05-06 Andreas Schwab <schwab@suse.de>
12870
12871 [BZ #16912]
12872 * gmon/mcount.c (_MCOUNT_DECL): Use
12873 atomic_compare_and_exchange_bool_acq instead of
12874 catomic_compare_and_exchange_bool_acq.
12875
eb1ed03d
RM
128762014-05-05 Roland McGrath <roland@hack.frob.com>
12877
fe658845
RM
12878 * elf/Makefile (others, install-bin): Remove pldd.
12879 (pldd-modules): Variable removed.
12880 ($(objpfx)pldd): Target removed.
12881 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
12882 (others, install-bin): Append pldd here.
12883 ($(objpfx)pldd): New target.
12884
eb1ed03d
RM
12885 * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
12886 to 0, so the first #if test emitted later doesn't see it undefined.
12887 (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
12888 * sysdeps/gnu/errlist.c: Regenerated.
12889
19c4bec0
AZ
128902014-05-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
12891
12892 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
12893 [libc_hidden_builtin_def]: Define to empty value.
12894 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
12895 [libc_hidden_builtin_def]: Likewise.
12896 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
12897 [libc_hidden_builtin_def]: Likewise.
12898 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
12899 [libc_hidden_builtin_def]: Likewise.
12900 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
12901 __redirect_memcpy and define ifunc as default hidden symbol.
12902 * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
12903 * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
12904
7776e669
AC
129052014-05-04 Adam Conrad <adconrad@0c3.net>
12906
12907 * locale/iso-4217.def: Reintroduce XDR currency.
12908
d69aeb12
AM
129092014-05-04 Allan McRae <allan@archlinux.org>
12910
12911 * po/eo.po: Update Esperanto translation from translation project.
12912
8f1df5cf
CD
129132014-05-02 Carlos O'Donell <carlos@redhat.com>
12914
12915 * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
12916 and FEATURE_INDEX_MAX to 1.
12917 [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
12918
13e402e7
SE
129192014-05-01 Steve Ellcey <sellcey@mips.com>
12920
12921 * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
12922 * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
12923 * iconvdata/big5.c (ONE_DIRECTION): Define.
12924 * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
12925 * iconvdata/cp1255.c (ONE_DIRECTION): Define.
12926 * iconvdata/cp1258.c (ONE_DIRECTION): Define.
12927 * iconvdata/cp932.c (ONE_DIRECTION): Define.
12928 * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
12929 * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
12930 * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
12931 * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
12932 * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
12933 * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
12934 * iconvdata/gb18030.c (ONE_DIRECTION): Define.
12935 * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
12936 * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
12937 * iconvdata/gbk.c (ONE_DIRECTION): Define.
12938 * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
12939 * iconvdata/ibm930.c (ONE_DIRECTION): Define.
12940 * iconvdata/ibm932.c (ONE_DIRECTION): Define.
12941 * iconvdata/ibm933.c (ONE_DIRECTION): Define.
12942 * iconvdata/ibm935.c (ONE_DIRECTION): Define.
12943 * iconvdata/ibm937.c (ONE_DIRECTION): Define.
12944 * iconvdata/ibm939.c (ONE_DIRECTION): Define.
12945 * iconvdata/ibm943.c (ONE_DIRECTION): Define.
12946 * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
12947 * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
12948 * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
12949 * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
12950 * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
12951 * iconvdata/iso646.c (ONE_DIRECTION): Define.
12952 * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
12953 * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
12954 * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
12955 * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
12956 * iconvdata/johab.c (ONE_DIRECTION): Define.
12957 * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
12958 * iconvdata/sjis.c (ONE_DIRECTION): Define.
12959 * iconvdata/t.61.c (ONE_DIRECTION): Define.
12960 * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
12961 * iconvdata/tscii.c (ONE_DIRECTION): Define.
12962 * iconvdata/uhc.c (ONE_DIRECTION): Define.
12963 * iconvdata/unicode.c (ONE_DIRECTION): Define.
12964 * iconvdata/utf-16.c (ONE_DIRECTION): Define.
12965 * iconvdata/utf-32.c (ONE_DIRECTION): Define.
12966 * iconvdata/utf-7.c (ONE_DIRECTION): Define.
12967
c727f032
RM
129682014-05-01 Roland McGrath <roland@hack.frob.com>
12969
8f2f08d0
RM
12970 * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
12971 (_IO_JUMPS_OFFSET): Define to 0.
12972
c727f032
RM
12973 * nptl/sysdeps/pthread/bits/libc-lock.h
12974 [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
12975 (__libc_lock_define_initialized_recursive): Always define using
12976 initializer. Modern compilers treat uninitialized (implicit zero) and
12977 explicit zero initializers the same (i.e. put the datum in bss).
12978
a849e800
AS
129792014-05-01 Andreas Schwab <schwab@linux-m68k.org>
12980
12981 * nscd/nscd-client.h: Include <string.h>.
12982
5331255b
DM
129832014-05-01 David S. Miller <davem@davemloft.net>
12984
12985 [BZ #16885]
12986 * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
12987 multiple zero bytes exist at the end of a string.
12988 Reported by Aurelien Jarno <aurelien@aurel32.net>
12989
12990 * string/test-strcmp.c (check): Add explicit test for situations where
12991 there are multiple zero bytes after the first.
12992
4fdfe821
AS
129932014-05-01 Andreas Schwab <schwab@linux-m68k.org>
12994
12995 [BZ #16890]
12996 * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
12997 when compiling wprintf.
12998 * stdio-common/tstdiomisc.c (t3): New function.
12999 (main): Call it.
13000
0cdddc25
SE
130012014-05-01 Steve Ellcey <sellcey@mips.com>
13002
13003 * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
13004 * iconv/gconv_simple.c (ONE_DIRECTION): Define.
13005 * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
13006 * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
13007
6426d77e
SE
130082014-05-01 Steve Ellcey <sellcey@mips.com>
13009
13010 * stdlib/longlong.h: Updated from GCC.
13011
6d96f5e4
WN
130122014-05-01 Will Newton <will.newton@linaro.org>
13013 Bernard Ogden <bernie.ogden@linaro.org>
13014
7470db0c
WN
13015 * NEWS: Update fixed bug list.
13016
6d96f5e4
WN
13017 [BZ #15119]
13018 * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
13019
211d653c
DM
130202014-04-30 David S. Miller <davem@davemloft.net>
13021
4fa262fa
DM
13022 * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
13023 (libc_feholdexcept_setround_sparc_ctx): New function.
13024 (libc_fesetenv_sparc_ctx): Likewise.
13025 (libc_feupdateenv_sparc_ctx): Likewise.
13026 (libc_feholdsetround_sparc_ctx): Likewise.
13027 (libc_feholdexcept_setround_ctx): Define.
13028 (libc_feholdexcept_setroundf_ctx): Likewise.
13029 (libc_feholdexcept_setroundl_ctx): Likewise.
13030 (libc_fesetenv_ctx): Likewise.
13031 (libc_fesetenvf_ctx): Likewise.
13032 (libc_fesetenvl_ctx): Likewise.
13033 (libc_feupdateenv_ctx): Likewise.
13034 (libc_feupdateenvf_ctx): Likewise.
13035 (libc_feupdateenvl_ctx): Likewise.
13036 (libc_feresetround_ctx): Likewise.
13037 (libc_feresetroundf_ctx): Likewise.
13038 (libc_feresetroundl_ctx): Likewise.
13039 (libc_feholdsetround_ctx): Likewise.
13040 (libc_feholdsetroundf_ctx): Likewise.
13041 (libc_feholdsetroundl_ctx): Likewise.
13042
1d3d93ef
DM
13043 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
13044 with __USE_GNU instead of XOPEN cpp guards.
13045
8aa583c3
DM
13046 * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
13047 0.
13048
211d653c
DM
13049 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
13050 with XOPEN cpp guards.
13051
60c8f1f6
JB
130522014-04-30 Julian Brown <julian@codesourcery.com>
13053
13054 [BZ #16888]
13055 * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
13056 handling.
13057
9a461d46
JM
130582014-04-30 Joseph Myers <joseph@codesourcery.com>
13059
d0f5b3f8
JM
13060 [BZ #9894]
13061 * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
13062 Change to 2.6.32.
13063 (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
13064 * sysdeps/unix/sysv/linux/configure: Regenerated.
13065 * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
13066 * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
13067 * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
13068 * sysdeps/unix/sysv/linux/tile/configure: Likewise.
13069 * README: Update reference to required Linux kernel version.
13070 * manual/install.texi (Linux): Update reference to required Linux
13071 kernel headers version.
13072 * INSTALL: Regenerated.
13073
9a461d46
JM
13074 * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
13075 header inclusion.
13076 [POSIX] (limits.h): Likewise.
13077 [POSIX] (math.h): Likewise.
13078 [POSIX] (sys/wait.h): Likewise.
13079 * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
13080 function.
13081 [POSIX] (stddef.h): Do not allow header inclusion.
13082
1775babf
AZ
130832014-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13084
57f41c40 13085 * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
1775babf 13086
8f630cca
YY
130872014-04-30 Yang Yingliang <yangyingliang@huawei.com>
13088
13089 * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
13090 Return immediately after lll_futex_wake.
13091
1cdeb237
SP
130922014-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
13093
bc8f194c
SP
13094 [BZ #16791]
13095 * nscd/nscd-client.h (datahead_init_common): Initialize entire
13096 structure.
13097 (datahead_init_pos): Call datahead_init_common early.
13098 (datahead_init_neg): Likewise.
13099
1cdeb237
SP
13100 * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
13101 datahead_init_neg): New functions.
13102 * nscd/aicache.c (addhstaiX): Use them.
13103 * nscd/grpcache.c (cache_addgr): Likewise.
13104 * nscd/hstcache.c (cache_addhst): Likewise.
13105 * nscd/initgrcache.c (addinitgroupsX): Likewise.
13106 * nscd/netgroupcache.c (do_notfound): Likewise.
13107 (addgetnetgrentX): Likewise.
13108 (addinnetgrX): Likewise.
13109 * nscd/pwdcache.c (cache_addpw): Likewise.
13110 * nscd/servicescache.c (cache_addserv): Likewise.
13111
16b293a7
SP
131122014-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
13113 Atsushi Onoe <atsushi@onoe.org>
13114
13115 [BZ #14308]
13116 [BZ #12994]
13117 [BZ #13651]
13118 * resolv/res_query.c (__libc_res_nsearch): Return if at least
13119 one response is valid.
13120 * resolv/res_send.c (send_dg): Check for validity of other
13121 response if the current response is a referral.
13122
a28a9b94
SE
131232014-04-29 Steve Ellcey <sellcey@mips.com>
13124
13125 * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
13126
2ca180e9
SL
131272014-04-29 Stefan Liebler <stli@linux.vnet.ibm.com>
13128
13129 [BZ #16823]
13130 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
13131 Always divide by positive zero when computing -Inf result.
13132 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
13133 * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
13134
18f2945a
AZ
131352014-04-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13136
13137 * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
13138 FPSCR if value do not change.
13139 * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
13140 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
13141 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
13142 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
13143 * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
13144 * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
13145 function.
13146
5abebba4
CD
131472014-05-29 Carlos O'Donell <carlos@systemhalted.org>
13148
13149 * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
13150 * sysdeps/unix/sysv/linux/hppa: Move directory from
13151 ports/systeps/unix/sysv/linux/hppa.
13152 * README: Update listing for hppa-*-linux-gnu.
13153
f7ed60c2
OB
131542014-04-28 Ondřej Bílka <neleai@seznam.cz>
13155
fff763a5
OB
13156 [BZ #16754]
13157 * manual/stdio.texi (Hook functions): Fix types of stream hook
13158 functions.
f7ed60c2
OB
13159 [BZ #16854]
13160 * socket/sys/socket.h: Fix typo in comment.
13161
df639d73
WD
131622014-04-28 Wilco <wdijkstr@arm.com>
13163
f7ed60c2 13164 * sysdeps/arm/fenv_private.h: New file.
df639d73
WD
13165 * sysdeps/arm/math_private.h: New file.
13166 * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
13167
48332d82
L
131682014-04-25 H.J. Lu <hongjiu.lu@intel.com>
13169
13170 * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
13171 with __int128_t.
13172 (La_x86_64_retval): Likewise.
13173
e5e0d9a4
IB
131742014-04-24 Ian Bolton <ian.bolton@arm.com>
13175
13176 * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
13177 fpsr if value didn't change.
13178 * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
13179 to fpcr if value didn't change.
13180 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
13181 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
13182 fpsr or fpcr if value didn't change.
13183 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
13184 * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
13185 fpcr if value didn't change.
13186 * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
13187 to fpsr if value didn't change.
13188
bacc75f7
SP
131892014-02-23 Siddhesh Poyarekar <siddhesh@redhat.com>
13190
13191 * nptl/tst-sem3.c: Use test-skeleton.c
13192 (main): Rename to do_test. Use return instead of
13193 exit.
13194 * nptl/tst-sem4.c: Use test-skeleton.c
13195 (main): Rename to do_test.
13196
a059d359
DM
131972014-04-22 David S. Miller <davem@davemloft.net>
13198
13199 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
13200 (struct sigaction): New struct member __glibc_reserved0, change
13201 type of sa_flags to int.
13202
ea6c92f3
YZ
132032014-04-22 Yufeng Zhang <yufeng.zhang@arm.com>
13204
13205 * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
13206 (COUNT_LEADING_ZEROS_0): Define for AArch64.
13207
766c4a36
SP
132082014-04-22 Siddhesh Poyarekar <siddhesh@redhat.com>
13209
13210 * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
13211 * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
13212
140cc7ab
VK
132132014-04-22 Will Newton <will.newton@linaro.org>
13214 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
13215
13216 * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
13217 (__longjmp): Add longjmp and longjmp_target SystemTap
13218 probes.
13219 * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
13220 (__sigsetjmp): Add setjmp SystemTap probe.
13221
c54e5cf7
CD
132222014-04-17 Carlos O'Donell <carlos@redhat.com>
13223
13224 * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
13225 match manual order.
13226
75ffb047
AZ
132272014-04-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13228
13229 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
13230
2cd925f7
AZ
13231 * sysdeps/powerpc/fpu/fenv_private.h
13232 (libc_feholdexcept_setroundl_ctx): Define to
13233 libc_feholdexcept_setround_ppc_ctx.
13234 (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
13235 (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
13236 (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
13237 (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
13238
39e6cd8d
IB
132392014-04-17 Ian Bolton <ian.bolton@arm.com>
13240
13241 * sysdeps/aarch64/math-tests.h: New file.
13242
f9281df9
SY
132432014-04-17 Sihai Yao <sihai.ysh@alibaba-inc.com>
13244
13245 * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
13246 New.
13247 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
13248 Check and set bit_AVX2_Usable.
13249 * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
13250 macro.
13251 (bit_AVX2): Likewise.
13252 (index_AVX2_Usable): Likewise.
13253 (CPUID_AVX2): Likewise.
13254 (HAS_AVX2): Likewise.
13255
37d35007
WN
132562014-04-17 Will Newton <will.newton@linaro.org>
13257
7c677662
WN
13258 * manual/setjmp.texi (System V contexts): Add note that
13259 calling setcontext on a context created by a call to a
13260 signal handler is undefined. Update text to note that
13261 setcontext from a signal handler is possible but not
13262 recommended.
13263
37d35007 13264 [BZ #16629]
e04a4e9d
WN
13265 * stdlib/tst-setcontext.c: Include signal.h.
13266 (main): Check that the signal stack before and
13267 after swapcontext is the same.
13268
37d35007
WN
13269 * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
13270 Re-implement to restore registers in user code and avoid
13271 rt_sigreturn system call.
13272
423a7160
W
132732014-04-17 Wilco <wdijkstr@arm.com>
13274
13275 * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
13276 * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
13277 * math/test-fenv.c: Skip exception trap tests on targets which only
13278 support non-stop mode.
13279
bc93ab29
IB
132802014-04-17 Ian Bolton <ian.bolton@arm.com>
13281 Wilco Dijkstra <wilco.dijkstra@arm.com>
13282
13283 * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
13284 (libc_feholdsetround_aarch64_ctx)
13285 (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
13286 (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
13287 (libc_feresetround_ctx, libc_feresetroundf_ctx)
13288 (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
13289 (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
13290 (libc_feresetround_noexl_ctx): Define.
13291
95fc5fa3
RH
132922014-04-16 Richard Henderson <rth@redhat.com>
13293
ddb04724
RH
13294 * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
13295
d77c0899
RH
13296 * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
13297 unwind tables.
13298
a3df56fc
RH
13299 * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
13300 const from the non-libc, non-ldso copy.
13301
95fc5fa3
RH
13302 * sysdeps/alpha/libm-test-ulps: Regenerate.
13303
7e0b6763
IB
133042014-04-16 Ian Bolton <ian.bolton@arm.com>
13305 Wilco Dijkstra <wilco.dijkstra@arm.com>
13306
13307 * sysdeps/aarch64/fpu/math_private.h: New file.
13308
a9ea2e0c
MS
133092014-04-16 Marcus Shawcroft <marcus.shawcroft@arm.com>
13310
13311 * sysdeps/aarch64/libm-test-ulps: Regenerate.
13312
ea8ba7cd
IZ
133132014-04-16 Igor Zamyatin <igor.zamyatin@intel.com>
13314
7e54fd04 13315 [BZ #16275]
ea8ba7cd
IZ
13316 * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
13317 (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
13318 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
13319 Intel MPX bound registers before _dl_profile_fixup.
13320 * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
13321 registers after _dl_profile_fixup. Save and restore bound
13322 registers bnd0/bnd1 when calling _dl_call_pltexit.
13323 * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
13324 (LR_BND_OFFSET): Likewise.
13325 (LRV_BND0_OFFSET): Likewise.
13326 (LRV_BND1_OFFSET): Likewise.
13327
9f2a4fbc
ST
133282014-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
13329
13330 * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
13331 to...
13332 * sysdeps/mach/hurd/i386/tls.h: ... here.
3c799e91
ST
13333 (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
13334 pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
13335 fields.
9f2a4fbc 13336
fd15a59b
ST
133372014-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
13338
13339 * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
13340
f19dfa0a
SL
133412014-04-16 Stefan Liebler <stli@linux.vnet.ibm.com>
13342
13343 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
13344
4fa8bc3b
SL
133452014-04-16 Stefan Liebler <stli@linux.vnet.ibm.com>
13346
13347 [BZ #14770]
13348 * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
13349 * sysdeps/s390/configure: Regenerate.
13350
8ea587db
SL
13351 [BZ #16824]
13352 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
13353 Set round-to-nearest internally to reduce error accumulation.
13354
aa5f0ff1
AM
133552014-04-16 Alan Modra <amodra@gmail.com>
13356
13357 [BZ #16740]
13358 [BZ #16619]
13359 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
13360 * math/libm-test.inc (frexp_test_data): Add tests.
9860b045 13361 * NEWS: Update fixed bug list.
aa5f0ff1 13362
bb9c256f
SP
133632014-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
13364
13365 * benchtests/Makefile: Depend on libraries in build directory.
13366 (bench-math): Separate out math tests.
13367 (bench-pthread): Separate out pthread tests.
13368 (bench): Include math and pthread tests.
13369
f737dfd0
CD
133702014-04-14 Carlos O'Donell <carlos@redhat.com>
13371
13372 [BZ #16831]
13373 * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
13374 _dl_debug_initialize.
13375
0699f766
CD
13376 * configure.ac: Remove SELinux header check.
13377 * configure: Regenerate.
13378 * nscd/selinux.c (perms): Array of const char* to permission names.
13379 (nscd_request_avc_has_perm): Call security_deny_unknown to find
13380 default policy. Call string_to_security_class and string_to_av_perm to
13381 translate strings. Enforce default policy and call avs_has_perm with
13382 results of translated strings.
13383
809bd45f
DM
133842014-04-13 David S. Miller <davem@davemloft.net>
13385
13386 * sysdeps/sparc/fpu/libm-test-ulps: Update.
13387
89e691f2
AM
133882014-04-12 Allan McRae <allan@archlinux.org>
13389
13390 [BZ #16838]
13391 * manual/string.texi (Collation Functions): Fix qsort argument
13392 order in example.
13393 Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
13394
9c9daaeb
CM
133952014-04-11 Chris Metcalf <cmetcalf@tilera.com>
13396
13397 * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
13398 Make the test a no-op if there are no exceptions defined.
13399
95561fb9
PP
134002014-04-11 Paul Pluzhnikov <ppluzhnikov@google.com>
13401
fe8d072c 13402 * elf/Makefile (tests): make tst-dlopen-aout conditional on
95561fb9
PP
13403 enable-hardcoded-path-in-tests
13404
970c602a
WN
134052014-04-11 Will Newton <will.newton@linaro.org>
13406
13407 * benchtests/Makefile (extra-objs): Add json-lib.o.
13408 (bench-func): Tidy up JSON output.
13409 * benchtests/bench-skeleton.c: Include json-lib.h.
13410 (main): Use JSON library functions to do output of
13411 benchmark results.
13412 * benchtests/bench-timing-type.c (main): Output the
13413 timing type simply, leaving formatting to the user.
13414 * benchtests/json-lib.c: New file.
13415 * benchtests/json-lib.h: Likewise.
13416
36875b06
TR
134172014-04-11 Torvald Riegel <triegel@redhat.com>
13418
13419 [BZ #15215]
13420 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
13421 * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here. Add missing
13422 memory barriers. Add comments.
13423 * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
13424 * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
13425 * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
13426 * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
13427 * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
13428 * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
13429
579db35a
SL
134302014-04-11 Stefan Liebler <stli@linux.vnet.ibm.com>
13431
13432 * sysdeps/s390/s390-32/configure.ac: Unify file with ...
13433 * sysdeps/s390/s390-64/configure.ac: ... this ...
13434 * sysdeps/s390/configure.ac: ... to here.
13435 * sysdeps/s390/s390-32/configure: Delete file.
13436 * sysdeps/s390/s390-64/configure: Delete file.
13437 * sysdeps/s390/configure: Regenerate.
13438
c12e9f37
JAPH
134392014-04-11 Joseph Anthony Pasquale Holsten <joseph@josephholsten.com>
13440
13441 * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
13442
439bda32
WN
134432014-04-11 Will Newton <will.newton@linaro.org>
13444
13445 * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
13446 to zero if it is not defined elsewhere. (mtrim): Test
13447 the value of MALLOC_DEBUG with #if rather than #ifdef.
13448
6a5d6ea1
TR
134492014-04-10 Torvald Riegel <triegel@redhat.com>
13450
13451 * benchtests/pthread_once-inputs: New file.
13452 * benchtests/pthread_once-source.c: New file.
13453 * benchtests/README: Update documentation.
13454
a4c75cfd
IZ
134552014-04-09 Igor Zamyatin <igor.zamyatin@intel.com>
13456 H.J. Lu <hongjiu.lu@intel.com>
13457
7e54fd04 13458 [BZ #16275]
a4c75cfd
IZ
13459 * config.h.in (HAVE_MPX_SUPPORT): New #undef.
13460 * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
13461 * sysdeps/x86_64/configure: Regenerated.
13462 * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
13463 macro.
13464 (REGISTER_SAVE_RAX): Likewise.
13465 (REGISTER_SAVE_RCX): Likewise.
13466 (REGISTER_SAVE_RDX): Likewise.
13467 (REGISTER_SAVE_RSI): Likewise.
13468 (REGISTER_SAVE_RDI): Likewise.
13469 (REGISTER_SAVE_R8): Likewise.
13470 (REGISTER_SAVE_R9): Likewise.
13471 (REGISTER_SAVE_BND0): Likewise.
13472 (REGISTER_SAVE_BND1): Likewise.
13473 (REGISTER_SAVE_BND2): Likewise.
13474 (_dl_runtime_resolve): Use them. Save and restore Intel MPX
13475 bound registers when calling _dl_fixup.
13476
27822ce6
AZ
134772014-04-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13478
13479 * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
57f41c40
AS
13480 * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
13481 of its definition.
27822ce6
AZ
13482 * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
13483 * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
13484 * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
13485 * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
13486 * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
13487 * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
13488 * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
13489
a88ddc90
PTB
134902014-04-09 Peter Brett <peter@peter-b.co.uk>
13491
13492 [BZ #15514]
13493 * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
13494 pathconf(_PC_NAME_MAX).
13495
01f8eac2
AZ
134962014-04-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13497
13498 * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
13499 Remove macro usage.
13500 (__PTHREAD_SPINS): Move definition to ...
13501 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
13502 (__PTHREAD_SPINS): ... here.
13503 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
13504 (__PTHREAD_SPIN): Likewise.
13505 * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
13506 (__PTHREAD_SPIN): Likewise.
13507 * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
13508 (__PTHREAD_SPIN): Likewise.
13509 * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
13510 (__PTHREAD_SPIN): Likewise.
13511 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
13512 (__PTHREAD_SPIN): Likewise.
13513 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
13514 (__PTHREAD_SPIN): Likewise.
13515 * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
13516 (__PTHREAD_SPIN): Likewise.
13517 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
13518 (__PTHREAD_SPIN): Likewise.
13519 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
13520 (__PTHREAD_SPIN): Likewise.
13521 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
13522 (__PTHREAD_SPIN): Likewise.
13523 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
13524 (__PTHREAD_SPIN): Likewise.
13525 * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
13526 (__PTHREAD_SPIN): Likewise.
13527
de21c33c
AZ
13528 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
13529 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
13530 * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
13531 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
13532 imply folder.
13533 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
13534 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
13535 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
13536 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
13537 correct imply path.
13538 * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
13539 strlen symbol for non multi-arch builds.
13540 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
13541 missing hidden_def and weak_alias.
13542
862c472e
CD
135432014-04-08 Carlos O'Donell <carlos@redhat.com>
13544
13545 * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
13546
8667f90e
WN
135472014-04-07 Will Newton <will.newton@linaro.org>
13548
13549 * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
13550 and contents. [!_LIBC] Remove #ifndef and contents.
13551 (basename): Use ANSI prototype. [_LIBC] Remove #idef.
13552 * string/memccpy.c (__memccpy): Use ANSI prototype.
13553 * string/memfrob.c (memfrob): Likewise.
13554 * string/strcoll.c (STRCOLL): Likewise.
13555 * string/strlen.c (strlen): Likewise.
13556 * string/strtok.c (STRTOK): Likewise.
13557 * string/strcat.c: Remove unused #include of memcopy.h.
13558 (strcat): Use ANSI prototype.
13559 * string/strchr.c: Remove unused #include of memcopy.h.
13560 (strchr): Use ANSI prototype.
13561 * string/strcmp.c: Remove unused #include of memcopy.h.
13562 (strcmp): Use ANSI prototype.
13563 * string/strcpy.c: Remove unused #include of memcopy.h.
13564 (strcpy): Use ANSI prototype.
13565
7ffa9423
AZ
135662014-04-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13567
13568 * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
13569 * config.make.in (config-extra-cppflags): Set it from
13570 libc_extra_cppflags.
13571 * configure.ac (libc_extra_cflags): Make it accumulate over
13572 configure fragments.
13573 (libc_extra_cppflags): New flag.
13574 * configure. Regenerate.
13575 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
57f41c40
AS
13576 (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
13577 not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
7ffa9423
AZ
13578 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
13579
8bd70862
AZ
13580 [BZ #16815]
13581 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
13582 result for FE_DOWNWARD rounding mode.
13583 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
13584 Likewise.
13585 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13586
d42f3448
CM
135872014-04-04 Chris Metcalf <cmetcalf@tilera.com>
13588
13589 * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
13590 in function argument name.
13591
1c21d115
DS
135922014-04-03 David Svoboda <svoboda@cert.org>
13593
13594 [BZ #5666]
13595 * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
13596 explicitly.
13597
fcccd512
RM
135982014-04-03 Roland McGrath <roland@hack.frob.com>
13599
13600 * elf/dl-unmap-segments.h: New file.
13601 * sysdeps/generic/ldsodefs.h
13602 (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
13603 * elf/dl-close.c: Include <dl-unmap-segments.h>.
13604 * elf/dl-fptr.c: Likewise.
13605 (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
13606 * sysdeps/aarch64/tlsdesc.c: Likewise.
13607 * sysdeps/arm/tlsdesc.c: Likewise.
13608 * sysdeps/i386/tlsdesc.c: Likewise.
13609 * sysdeps/tile/dl-runtime.c: Likewise.
13610 * sysdeps/x86_64/tlsdesc.c: Likewise.
13611 * elf/dl-load.h: New file.
13612 * elf/dl-load.c: Include it.
13613 (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
13614 Macros moved to dl-load.h.
13615 (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
13616 (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
13617 Use _dl_unmap_segments in place of __munmap.
13618 Break out segment-mapping loop into ...
13619 * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
13620
f6488e2b
WN
136212014-04-03 Will Newton <will.newton@linaro.org>
13622
13623 * elf/dl-lookup.c (do_lookup_x): Remove comment
13624 referring to nested function and move variable
13625 declarations down to before first use.
13626
6f05bafe
JM
136272014-04-02 Joseph Myers <joseph@codesourcery.com>
13628
a84e78c8
JM
13629 [BZ #16799]
13630 [BZ #16800]
13631 * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
13632 with 0 numerator.
13633 * math/s_catanf.c (__catanf): Likewise.
13634 * math/s_catanh.c (__catanh): Likewise.
13635 * math/s_catanhf.c (__catanhf): Likewise.
13636 * math/s_catanhl.c (__catanhl): Likewise.
13637 * math/s_catanl.c (__catanl): Likewise.
13638 * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
13639 by positive zero when computing -Inf result.
13640 * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
13641 (catanh_test): Likewise.
13642 * sysdeps/i386/fpu/libm-test-ulps: Update.
13643 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13644
6f05bafe
JM
13645 [BZ #16789]
13646 * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
13647 instead of using underflowing value in computing result.
13648 * math/s_clog10.c (__clog10): Likewise.
13649 * math/s_clog10f.c (__clog10f): Likewise.
13650 * math/s_clog10l.c (__clog10l): Likewise.
13651 * math/s_clogf.c (__clogf): Likewise.
13652 * math/s_clogl.c (__clogl): Likewise.
13653 * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
13654 (clog10_test): Likewise.
13655 * sysdeps/i386/fpu/libm-test-ulps: Update.
13656 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13657
b0abbc21
AM
136582014-04-02 Alan Modra <amodra@gmail.com>
13659
13660 [BZ #16739]
13661 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
13662 output when value is near a power of two. Use int64_t for lx and
13663 remove casts. Use decimal rather than hex exponent constants.
13664 Don't use long double multiplication when double will suffice.
13665 * math/libm-test.inc (nextafter_test_data): Add tests.
13666 * NEWS: Add 16739 and 16786 to bug list.
13667
af6b1797
AM
13668 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
13669
483818d7
AM
13670 * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
13671
f6c55796
WN
136722014-04-01 Will Newton <will.newton@linaro.org>
13673
13674 * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
13675 -fno-builtin. (CFLAGS-bench-ffsll.c): Likewise.
13676
13f7fe35
FW
136772014-04-01 Florian Weimer <fweimer@redhat.com>
13678
13679 [BZ #13347]
13680 * nptl/nptl-init.c (sighandler_setxid): Check system call result.
13681 * nptl/tst-setuid2.c: New file.
13682 * nptl/Makefile (xtests): Add tst-setuid2.
13683
c859b32e
AM
136842014-04-01 Alan Modra <amodra@gmail.com>
13685
13686 [BZ #16786]
13687 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
13688
54fa2475
JM
136892014-03-31 Joseph Myers <joseph@codesourcery.com>
13690
8795b4a4
JM
13691 [BZ #6803]
13692 [BZ #6804]
13693 * math/w_scalb.c (__scalb): For non-SVID mode, check result and
13694 set errno as appropriate.
13695 * math/w_scalbf.c (__scalbf): Likewise.
13696 * math/w_scalbl.c (__scalbl): Likewise.
13697 * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
13698 ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
13699 * math/libm-test.inc (scalb_test_data): Add errno expectations.
13700 Add more NaN tests.
13701
54fa2475
JM
13702 [BZ #16349]
13703 * math/w_atan2.c: Include <errno.h>.
13704 (__atan2): Set errno for result underflowing to zero.
13705 * math/w_atan2f.c: Include <errno.h>.
13706 (__atan2f): Set errno for result underflowing to zero.
13707 * math/w_atan2l.c: Include <errno.h>.
13708 (__atan2l): Set errno for result underflowing to zero.
13709 * math/auto-libm-test-in: Don't allow missing errno for some atan2
13710 tests.
13711 * math/auto-libm-test-out: Regenerated.
13712
757d9dd5
AZ
137132014-03-31 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13714
13715 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
13716 Encode instruction correctly in little endian.
13717 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
13718 Likewise.
13719 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
13720 Likewise.
13721 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
13722 Likewise.
13723 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
13724 Likewise.
13725
d7a68734
JM
137262014-03-31 Joseph Myers <joseph@codesourcery.com>
13727
47c5adeb
JM
13728 [BZ #9894]
13729 * sysdeps/unix/sysv/linux/kernel-features.h
13730 [__sparc__ && !__arch64__ && !__sparc_v9__]
13731 (__ASSUME_SET_ROBUST_LIST): Do not define.
13732 [__sparc__ && !__arch64__ && !__sparc_v9__]
13733 (__ASSUME_FUTEX_LOCK_PI): Likewise.
13734 [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
13735 Likewise.
13736 * sysdeps/unix/sysv/linux/arm/kernel-features.h
13737 (__ASSUME_FUTEX_LOCK_PI): Undefine.
13738 (__ASSUME_REQUEUE_PI): Likewise.
13739 (__ASSUME_SET_ROBUST_LIST): Likewise.
13740 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
13741 [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
13742 Undefine.
13743 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13744 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
13745 Likewise.
13746 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
13747 Likewise.
13748 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
13749 Likewise.
13750 * sysdeps/unix/sysv/linux/mips/kernel-features.h
13751 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
13752 Undefine.
13753 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
13754 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
13755 Likewise.
13756
d7a68734
JM
13757 [BZ #16648]
13758 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13759 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
13760 * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
13761
c760f5c2
WN
137622014-03-31 Will Newton <will.newton@linaro.org>
13763
13764 * benchtests/Makefile (bench): Add ffs and ffsll to list
13765 of tests.
13766 * benchtests/ffs-inputs: New file.
13767 * benchtests/ffsll-inputs: Likewise.
13768
ea6029b1
JM
137692014-03-29 Joseph Myers <joseph@codesourcery.com>
13770
13771 [BZ #16770]
13772 * math/e_scalb.c (__ieee754_scalb): Check second argument is not
13773 too large before casting to int.
13774 * math/e_scalbf.c (__ieee754_scalbf): Likewise.
13775 * math/e_scalbl.c (__ieee754_scalbl): Likewise.
13776 * math/libm-test.inc (scalb_test_data): Add more tests.
13777
cf806aff
SP
137782014-03-29 Siddhesh Poyarekar <siddhesh@redhat.com>
13779
56737508
SP
13780 * benchtests/Makefile (DETAILED_OPT): New make option.
13781 (bench-func): Run benchmark program with -d if DETAILED_OPT is
13782 set.
13783 * benchtests/bench-skeleton.c: Include stdbool.h.
13784 (main): Store and print timings per input.
13785 * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
13786 member to each argument value.
13787 (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
13788 (_print_arg_data): Initialize per-input timing to 0.
13789
cb5e4aad
SP
13790 * benchtests/Makefile (timing-type): New binary.
13791 (bench-clean): Also remove bench-timing-type.
13792 (bench): New target for timing-type.
13793 (bench-func): Print output in JSON format.
13794 * benchtests/bench-skeleton.c (main): Print output in JSON
13795 format.
13796 * benchtests/bench-timing-type.c: New file.
13797 * benchtests/bench-timing.h (TIMING_TYPE): New macro.
13798 (TIMING_PRINT_STATS): Remove.
13799 * benchtests/scripts/bench.py (_print_arg_data): Store variant
13800 name separately.
13801
cf806aff
SP
13802 * benchtests/bench-modf.c: Remove.
13803 * benchtests/modf-inputs: New inputs file.
13804
289e0779
JM
138052014-03-28 Joseph Myers <joseph@codesourcery.com>
13806
13807 [BZ #16362]
13808 * math/s_clog10.c (M_PI_LOG10E): New macro.
13809 (__clog10): Use M_PI_LOG10E instead of M_PI when real and
13810 imaginary parts are 0.
13811 * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
13812 (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
13813 imaginary parts are 0.
13814 * math/s_clog10l.c (M_PI_LOG10El): New macro.
13815 (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
13816 imaginary parts are 0.
13817 * math/libm-test.inc (clog10_test_data): Update expected results
13818 for when real and imaginary parts are 0.
13819
277ae3f1
PP
138202014-03-27 Paul Pluzhnikov <ppluzhnikov@google.com>
13821
13822 * elf/dl-load.c: Finish conversion of __builtin_expect into
13823 __glibc_{un}likely.
13824
03a7091f
JM
138252014-03-27 Joseph Myers <joseph@codesourcery.com>
13826
13827 [BZ #16348]
13828 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
13829 1+x for argument with exponent below -67.
13830 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
13831 Likewise.
13832 * math/auto-libm-test-in: Add more tests of exp.
13833 * math/auto-libm-test-out: Regenerated.
13834
ea7d8b95
SP
138352014-03-27 Siddhesh Poyarekar <siddhesh@redhat.com>
13836
dd3022d7
SP
13837 [BZ #16759]
13838 * inet/getnetgrent_r.c (get_nonempty_val): New function.
13839 (nscd_getnetgrent): Use it.
13840
ea7d8b95
SP
13841 [BZ #16760]
13842 * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
13843 of stpcpy.
13844
df5b85da
AK
138452014-03-27 Andi Kleen <ak@linux.intel.com>
13846
57f41c40
AS
13847 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
13848 (lll_robust_lock, lll_cond_lock, lll_timedlock)
13849 (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
13850 (lll_robust_unlock): Remove out of line section. Use cfi
13851 intrinsics.
df5b85da 13852 (LLL_STUB_UNWIND_INFO*): Remove.
57f41c40
AS
13853 * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
13854 (lll_robust_lock, lll_cond_lock, lll_timedlock)
13855 (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
13856 (lll_robust_unlock): Remove out of line section. Use cfi
13857 intrinsics.
df5b85da
AK
13858 (LLL_STUB_UNWIND_INFO*): Remove.
13859
fbd6b5a4
SP
138602014-03-27 Siddhesh Poyarekar <siddhesh@redhat.com>
13861
13862 [BZ #16758]
13863 * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
13864 blank values.
13865
1b26b855
PP
138662014-03-26 Paul Pluzhnikov <ppluzhnikov@google.com>
13867
13868 * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
13869
9be36fb8
JM
138702014-03-26 Joseph Myers <joseph@codesourcery.com>
13871
13872 [BZ #16198]
13873 * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
13874 fnstenv.
13875 * math/test-fenv-preserve.c: New file.
13876 * math/Makefile (tests): Add test-fenv-preserve.
13877
60a2f3c1
WN
138782014-03-26 Will Newton <will.newton@linaro.org>
13879
13880 * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
13881
a5e5f1e2
RM
138822014-03-25 Roland McGrath <roland@hack.frob.com>
13883
13884 * scripts/versionlist.awk: Partition the version sets and emit all
13885 GLIBC_* (sorted) before all others (sorted).
13886
00f4012a
JM
138872014-03-25 Joseph Myers <joseph@codesourcery.com>
13888
13889 * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
13890 GLIBC_2.2.5 version.
13891
7bc5a741
AZ
138922014-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13893
13894 * scripts/localplt.awk: Check for PLT generated by internal IFUNC
13895 calls.
13896
7578473b
AZ
13897 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
13898 previous change.
13899
f3f1dab3
AZ
13900 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13901
6da36183
AS
139022014-03-25 Andreas Schwab <schwab@suse.de>
13903
13904 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
13905 label to be used after in6ailist is initialized.
13906
f3f1dab3 139072014-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
449282f2 13908
7578473b 13909 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
449282f2
AZ
13910 (__PTHREAD_MUTEX_HAVE_ELISION): New define.
13911
046651c1
JM
139122014-03-25 Joseph Myers <joseph@codesourcery.com>
13913
13914 [BZ #16357]
13915 [BZ #16599]
13916 * math/gen-auto-libm-tests.c (fp_format_desc): Add field
13917 min_plus_half.
13918 (fp_formats): Update initializers.
13919 (init_fp_formats): Initialize new field.
13920 (output_for_one_input_case): Allow underflow for results up to
13921 min_plus_half.
13922 * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
13923 * math/auto-libm-test-in: Don't mark some underflows from asin and
13924 atanh as spurious.
13925 * math/auto-libm-test-out: Regenerated.
13926 * sysdeps/i386/fpu/libm-test-ulps: Update.
13927 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13928
003e49ed
AS
139292014-03-25 Andreas Schwab <schwab@suse.de>
13930
13931 * libio/Makefile (tst-ftell-partial-wide-ENV)
13932 (tst-ftell-active-handler-ENV): Define.
13933
de031874
SL
139342014-03-25 Stefan Liebler <stli@linux.vnet.ibm.com>
13935
13936 * NEWS: Add 16712, 16713, 16714 to fixed bug list.
13937
55a81e3b
PP
139382014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
13939
13940 * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
13941
f3426898
JM
139422014-03-24 Joseph Myers <joseph@codesourcery.com>
13943
13944 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
13945 * sysdeps/x86_64/fpu/multiarch/e_exp.c
13946 [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
13947
a42faf59
PP
139482014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
13949
13950 [BZ #16634]
a42faf59 13951 * elf/dl-load.c (open_verify): Add mode parameter.
97d8ca99
CD
13952 Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
13953 (open_path): Change from boolean 'secure' to complete flag 'mode'
13954 (_dl_map_object): Adjust.
a42faf59
PP
13955 * elf/Makefile (tests): Add tst-dlopen-aout.
13956 * elf/tst-dlopen-aout.c: New test.
13957
50936127
SL
139582014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
13959
13960 [BZ #16714]
13961 * sysdeps/unix/sysv/linux/s390/bits/stat.h
13962 (struct stat): Rename member pad0 to __glibc_reserved0.
13963
26011b5c
SL
13964 [BZ #16712]
13965 * sysdeps/s390/s390-32/bits/wordsize.h
13966 (__WORDSIZE32_SIZE_ULONG): New define.
13967 * sysdeps/s390/s390-64/bits/wordsize.h
13968 (__WORDSIZE32_SIZE_ULONG): Likewise.
13969 * sysdeps/generic/stdint.h (SIZE_MAX):
13970 Define as UL if __WORDSIZE32_SIZE_ULONG.
13971
a2d86bf1
SL
13972 [BZ #16713]
13973 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
13974 (__glibc_reserved0): New variable.
13975 (sa_flags): Change type to int.
13976
78b6eebc
SL
13977 * posix/Makefile (before-compile): Use += before-compile instead
13978 of a :=.
13979
f1399b5a
SL
13980 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
13981 (__PTHREAD_MUTEX_HAVE_ELISION): New define.
13982
a071766e
AS
139832014-03-20 Andreas Schwab <schwab@suse.de>
13984
13985 [BZ #16743]
13986 * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
13987 non-matching result from nscd.
13988
27c673b8
SP
139892014-03-24 Siddhesh Poyarekar <siddhesh@redhat.com>
13990
13991 * scripts/bench.py: Moved to ...
13992 * benchtests/scripts/bench.py: ... here.
13993 * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
13994
44152e4b
AS
139952014-03-24 Andreas Schwab <schwab@suse.de>
13996
13997 [BZ #16002]
13998 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
13999 alloca_account and account alloca use for struct in6ailist.
14000
b376a11a
JM
140012014-03-24 Joseph Myers <joseph@codesourcery.com>
14002
14003 [BZ #16284]
14004 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
14005 rounding mode to recompute results that overflow to infinity or
14006 underflow to zero.
14007 * math/auto-libm-test-in: Don't mark tests as expected to fail for
14008 bug 16284.
14009 * math/auto-libm-test-out: Regenerated.
14010 * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
14011 (ccosh_test): Likewise.
14012 (csin_test_data): Use plus_oflow.
14013 (csin_test): Use ALL_RM_TEST.
14014 (csinh_test_data): Use plus_oflow.
14015 (csinh_test): Use ALL_RM_TEST.
14016 * sysdeps/i386/fpu/libm-test-ulps: Update.
14017 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14018
f7be7376
JM
140192014-03-21 Joseph Myers <joseph@codesourcery.com>
14020
1ca2d03e
JM
14021 * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
14022 * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
14023 * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
14024
f7be7376
JM
14025 [BZ #16731]
14026 * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
14027 when x - 1 is zero.
14028 * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
14029 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
14030 * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
14031 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
14032 argument is 1.
14033 * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
14034 * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
14035 zero.
14036 * math/libm-test.inc (log_test): Use ALL_RM_TEST.
14037 * sysdeps/i386/fpu/libm-test-ulps: Update.
14038 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14039
fdf4534d
SP
140402014-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
14041
df26ea53
SP
14042 * scripts/bench.pl: Remove file.
14043 * scripts/bench.py: New benchmark script.
14044 * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
14045 * benchtests/README: Mention python dependency.
14046 * scripts/pylintrc: New file.
14047 * scripts/pylint: New file.
14048
fdf4534d
SP
14049 * bits/mathdef.h: Use #ifdef instead of #if.
14050 * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
14051 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14052 * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
14053 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14054 * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
14055 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
14056
6f23d093
AZ
140572014-03-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14058 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
14059
14060 * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
14061 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
14062 and strpbrk-ppc64 objects.
14063 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
14064 (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
14065 * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
14066 multiarch strpbrk for POWER7.
14067 * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
14068 multiarch strpbrk for PPC64.
14069 * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
14070 ifunc selector.
14071 * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
14072 strpbrk for POWER7.
14073
8c92dfff
JM
140742014-03-20 Joseph Myers <joseph@codesourcery.com>
14075
14076 * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
14077 (atan_test): Likewise.
14078 (atanh_test_data): Use NO_TEST_INLINE for two tests.
14079 (atanh_test): Use ALL_RM_TEST.
14080 (atan2_test_data): Likewise.
14081 (cabs_test): Likewise.
14082 (cacosh_test): Likewise.
14083 (carg_test): Likewise.
14084 (casin_test): Likewise.
14085 (casinh_test): Likewise.
14086 (cbrt_test): Likewise.
14087 (csqrt_test): Likewise.
14088 (erf_test): Likewise.
14089 (erfc_test): Likewise.
14090 (pow10_test): Likewise.
14091 (exp2_test): Likewise.
14092 (hypot_test): Likewise.
14093 (j0_test): Likewise.
14094 (j1_test): Likewise.
14095 (lgamma_test): Likewise.
14096 (gamma_test): Likewise.
14097 (sincos_test): Likewise.
14098 (tanh_test): Likewise.
14099 (y0_test): Likewise.
14100 (y1_test): Likewise.
14101 * sysdeps/i386/fpu/libm-test-ulps: Update.
14102 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14103
6eaf95cb
AZ
141042014-03-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14105
a387428c
SP
14106 * string/strcspn.c (strcspn): Using macro to redefine symbol name.
14107 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
6eaf95cb
AZ
14108 and strcspn-ppc64 objects.
14109 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
14110 (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
14111 * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
14112 multiarch strcspn for POWER7.
14113 * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
14114 multiarch strcspn for PPC64.
14115 * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
14116 ifunc selector.
14117 * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
14118 strcspn for POWER7.
14119
ae3a5dff
JM
141202014-03-20 Joseph Myers <joseph@codesourcery.com>
14121
14122 * math/gen-libm-test.pl (generate_testfile): Expect only function
14123 name as argument to AUTO_TESTS_* and pass results for all rounding
14124 modes to parse_args.
14125 (parse_auto_input): Separate inputs of automatic tests from
14126 outputs before storing in %auto_tests.
14127 * math/libm-test.inc (acos_test_data): Update call to
14128 AUTO_TESTS_f_f.
14129 (acos_test): Use ALL_RM_TEST.
14130 (acos_tonearest_test_data): Remove.
14131 (acos_test_tonearest): Likewise.
14132 (acos_towardzero_test_data): Likewise.
14133 (acos_test_towardzero): Likewise.
14134 (acos_downward_test_data): Likewise.
14135 (acos_test_downward): Likewise.
14136 (acos_upward_test_data): Likewise.
14137 (acos_test_upward): Likewise.
14138 (acosh_test_data): Update call to AUTO_TESTS_f_f.
14139 (asin_test_data): Likewise.
14140 (asin_test): Use ALL_RM_TEST.
14141 (asin_tonearest_test_data): Remove.
14142 (asin_test_tonearest): Likewise.
14143 (asin_towardzero_test_data): Likewise.
14144 (asin_test_towardzero): Likewise.
14145 (asin_downward_test_data): Likewise.
14146 (asin_test_downward): Likewise.
14147 (asin_upward_test_data): Likewise.
14148 (asin_test_upward): Likewise.
14149 (asinh_test_data): Update call to AUTO_TESTS_f_f.
14150 (atan_test_data): Likewise.
14151 (atanh_test_data): Likewise.
14152 (atan2_test_data): Update call to AUTO_TESTS_ff_f.
14153 (cabs_test_data): Update call to AUTO_TESTS_c_f.
14154 (carg_test_data): Likewise.
14155 (cbrt_test_data): Update call to AUTO_TESTS_f_f.
14156 (ccos_test_data): Update call to AUTO_TESTS_c_c.
14157 (ccosh_test_data): Likewise.
14158 (cexp_test_data): Likewise.
14159 (clog_test_data): Likewise.
14160 (clog10_test_data): Likewise.
14161 (cos_test_data): Update call to AUTO_TESTS_f_f.
14162 (cos_test): Use ALL_RM_TEST.
14163 (cos_tonearest_test_data): Remove.
14164 (cos_test_tonearest): Likewise.
14165 (cos_towardzero_test_data): Likewise.
14166 (cos_test_towardzero): Likewise.
14167 (cos_downward_test_data): Likewise.
14168 (cos_test_downward): Likewise.
14169 (cos_upward_test_data): Likewise.
14170 (cos_test_upward): Likewise.
14171 (cosh_test_data): Update call to AUTO_TESTS_f_f.
14172 (cosh_test): Use ALL_RM_TEST.
14173 (cosh_tonearest_test_data): Remove.
14174 (cosh_test_tonearest): Likewise.
14175 (cosh_towardzero_test_data): Likewise.
14176 (cosh_test_towardzero): Likewise.
14177 (cosh_downward_test_data): Likewise.
14178 (cosh_test_downward): Likewise.
14179 (cosh_upward_test_data): Likewise.
14180 (cosh_test_upward): Likewise.
14181 (cpow_test_data): Update call to AUTO_TESTS_cc_c.
14182 (csqrt_test_data): Update call to AUTO_TESTS_c_c.
14183 (ctan_test_data): Likewise.
14184 (ctan_test): Use ALL_RM_TEST.
14185 (ctan_tonearest_test_data): Remove.
14186 (ctan_test_tonearest): Likewise.
14187 (ctan_towardzero_test_data): Likewise.
14188 (ctan_test_towardzero): Likewise.
14189 (ctan_downward_test_data): Likewise.
14190 (ctan_test_downward): Likewise.
14191 (ctan_upward_test_data): Likewise.
14192 (ctan_test_upward): Likewise.
14193 (ctanh_test_data): Update call to AUTO_TESTS_c_c.
14194 (ctanh_test): Use ALL_RM_TEST.
14195 (ctanh_tonearest_test_data): Remove.
14196 (ctanh_test_tonearest): Likewise.
14197 (ctanh_towardzero_test_data): Likewise.
14198 (ctanh_test_towardzero): Likewise.
14199 (ctanh_downward_test_data): Likewise.
14200 (ctanh_test_downward): Likewise.
14201 (ctanh_upward_test_data): Likewise.
14202 (ctanh_test_upward): Likewise.
14203 (erf_test_data): Update call to AUTO_TESTS_f_f.
14204 (erfc_test_data): Likewise.
14205 (exp_test_data): Likewise.
14206 (exp_test): Use ALL_RM_TEST.
14207 (exp_tonearest_test_data): Remove.
14208 (exp_test_tonearest): Likewise.
14209 (exp_towardzero_test_data): Likewise.
14210 (exp_test_towardzero): Likewise.
14211 (exp_downward_test_data): Likewise.
14212 (exp_test_downward): Likewise.
14213 (exp_upward_test_data): Likewise.
14214 (exp_test_upward): Likewise.
14215 (exp10_test_data): Update call to AUTO_TESTS_f_f.
14216 (exp10_test): Use ALL_RM_TEST.
14217 (exp10_tonearest_test_data): Remove.
14218 (exp10_test_tonearest): Likewise.
14219 (exp10_towardzero_test_data): Likewise.
14220 (exp10_test_towardzero): Likewise.
14221 (exp10_downward_test_data): Likewise.
14222 (exp10_test_downward): Likewise.
14223 (exp10_upward_test_data): Likewise.
14224 (exp10_test_upward): Likewise.
14225 (exp2_test_data): Update call to AUTO_TESTS_f_f.
14226 (expm1_test_data): Likewise.
14227 (expm1_test): Use ALL_RM_TEST.
14228 (expm1_tonearest_test_data): Remove.
14229 (expm1_test_tonearest): Likewise.
14230 (expm1_towardzero_test_data): Likewise.
14231 (expm1_test_towardzero): Likewise.
14232 (expm1_downward_test_data): Likewise.
14233 (expm1_test_downward): Likewise.
14234 (expm1_upward_test_data): Likewise.
14235 (expm1_test_upward): Likewise.
14236 (fma_test_data): Update call to AUTO_TESTS_fff_f.
14237 (fma_test): Use ALL_RM_TEST.
14238 (fma_towardzero_test_data): Remove.
14239 (fma_test_towardzero): Likewise.
14240 (fma_downward_test_data): Likewise.
14241 (fma_test_downward): Likewise.
14242 (fma_upward_test_data): Likewise.
14243 (fma_test_upward): Likewise.
14244 (hypot_test_data): Update call to AUTO_TESTS_ff_f.
14245 (j0_test_data): Update call to AUTO_TESTS_f_f.
14246 (j1_test_data): Likewise.
14247 (jn_test_data): Update call to AUTO_TESTS_if_f.
14248 (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
14249 (log_test_data): Update call to AUTO_TESTS_f_f.
14250 (log10_test_data): Likewise.
14251 (log1p_test_data): Likewise.
14252 (log2_test_data): Likewise.
14253 (pow_test_data): Update call to AUTO_TESTS_ff_f.
14254 (pow_tonearest_test_data): Likewise.
14255 (sin_test_data): Update call to AUTO_TESTS_f_f.
14256 (sin_test): Use ALL_RM_TEST.
14257 (sin_tonearest_test_data): Remove.
14258 (sin_test_tonearest): Likewise.
14259 (sin_towardzero_test_data): Likewise.
14260 (sin_test_towardzero): Likewise.
14261 (sin_downward_test_data): Likewise.
14262 (sin_test_downward): Likewise.
14263 (sin_upward_test_data): Likewise.
14264 (sin_test_upward): Likewise.
14265 (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
14266 (sinh_test_data): Update call to AUTO_TESTS_f_f.
14267 (sinh_test): Use ALL_RM_TEST.
14268 (sinh_tonearest_test_data): Remove.
14269 (sinh_test_tonearest): Likewise.
14270 (sinh_towardzero_test_data): Likewise.
14271 (sinh_test_towardzero): Likewise.
14272 (sinh_downward_test_data): Likewise.
14273 (sinh_test_downward): Likewise.
14274 (sinh_upward_test_data): Likewise.
14275 (sinh_test_upward): Likewise.
14276 (sqrt_test_data): Update call to AUTO_TESTS_f_f.
14277 (sqrt_test): Use ALL_RM_TEST.
14278 (sqrt_tonearest_test_data): Remove.
14279 (sqrt_test_tonearest): Likewise.
14280 (sqrt_towardzero_test_data): Likewise.
14281 (sqrt_test_towardzero): Likewise.
14282 (sqrt_downward_test_data): Likewise.
14283 (sqrt_test_downward): Likewise.
14284 (sqrt_upward_test_data): Likewise.
14285 (sqrt_test_upward): Likewise.
14286 (tan_test_data): Update call to AUTO_TESTS_f_f.
14287 (tan_test): Use ALL_RM_TEST.
14288 (tan_tonearest_test_data): Remove.
14289 (tan_test_tonearest): Likewise.
14290 (tan_towardzero_test_data): Likewise.
14291 (tan_test_towardzero): Likewise.
14292 (tan_downward_test_data): Likewise.
14293 (tan_test_downward): Likewise.
14294 (tan_upward_test_data): Likewise.
14295 (tan_test_upward): Likewise.
14296 (tanh_test_data): Update call to AUTO_TESTS_f_f.
14297 (tgamma_test_data): Likewise.
14298 (y0_test_data): Likewise.
14299 (y1_test_data): Likewise.
14300 (yn_test_data): Update call to AUTO_TESTS_if_f.
14301 (main): Do not call removed functions.
14302
d71aeee8
JM
143032014-03-19 Joseph Myers <joseph@codesourcery.com>
14304
14305 * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
14306 (ldexp_test_data): Remove.
14307 (ldexp_test): Move to after scalbn_test. Use ALL_RM_TEST with
14308 scalbn_test_data.
14309 (scalb_test): Use ALL_RM_TEST.
14310
baaf1ded
AS
143112014-03-19 Andreas Schwab <schwab@suse.de>
14312
14313 * nscd/nscd.service: Also invalidate netgroup cache on reload.
14314
b1115e91
JM
143152014-03-19 Joseph Myers <joseph@codesourcery.com>
14316
14317 [BZ #16649]
14318 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14319 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
14320 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
14321 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14322 (__ASSUME_PREADV): Undefine.
14323 (__ASSUME_PWRITEV): Likewise.
14324
0283ecca
RM
143252014-03-18 Roland McGrath <roland@hack.frob.com>
14326
7d375303
RM
14327 * bits/mman-linux.h: Add comment about non-Linux use.
14328 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
14329 bits/mman-linux.h resting place.
14330
0283ecca
RM
14331 * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
14332 * bits/mman-linux.h: ... here.
14333
aebe1003
AZ
143342014-03-18 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14335
14336 * conform/conformtest.pl: Add standard definition when calling C
14337 preprocessor on data files.
14338 (checknamespace): Remove unused variable.
14339
b29b6bb8
JM
143402014-03-18 Joseph Myers <joseph@codesourcery.com>
14341
14342 * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
14343 minus_oflow, plus_uflow and minus_uflow in expected results.
14344 * math/libm-test.inc (scalbn_test_data): Add more tests of
14345 negative arguments. Use plus_oflow, minus_oflow, plus_uflow and
14346 minus_uflow.
14347 (scalbn_test): Use ALL_RM_TEST.
14348 (scalbln_test_data): Add more tests of negative arguments. Use
14349 plus_oflow, minus_oflow, plus_uflow and minus_uflow.
14350 (scalbln_test): Use ALL_RM_TEST.
14351
c8f8fa15
RM
143522014-03-18 Roland McGrath <roland@hack.frob.com>
14353
14354 * scripts/abilist.awk: Ignore symbols marked with .hidden.
14355
fede7a5f
WN
143562014-03-18 Will Newton <will.newton@linaro.org>
14357
14358 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
14359 inaccurate comment.
14360
80cf0a58
JM
143612014-03-18 Joseph Myers <joseph@codesourcery.com>
14362
14363 * Makerules [!subdir] (check-abi): Exit with error status if a
14364 test failed.
14365
b3620862
JM
143662014-03-17 Joseph Myers <joseph@codesourcery.com>
14367
14368 * math/libm-test.inc (nearbyint_test_data): Include all tests used
14369 for rint. Include results for all rounding modes.
14370 (nearbyint_test): Use ALL_RM_TEST.
14371 (rint_test_data): Include all tests used for nearbyint.
14372
788bba36
WN
143732014-03-17 Will Newton <will.newton@linaro.org>
14374
04ec140a
WN
14375 * nptl/sysdeps/pthread/pthread.h: Revert previous
14376 change.
14377
7579d8d5
WN
14378 * sysdeps/generic/ldsodefs.h: Revert previous
14379 change.
14380
c15cf13a
WN
14381 * libio/genops.c: Revert previous change.
14382 * libio/libioP.h: Likewise.
14383 * stdio-common/vfprintf.c: Likewise.
14384
d0ac1324
WN
14385 * sysdeps/generic/math_private.h: Revert previous
14386 change.
14387
9290130a
WN
14388 * sysdeps/generic/math_private.h: Check whether
14389 HAVE_RM_CTX is defined with #ifdef rather
14390 than #if.
14391
afb466fc
WN
14392 * argp/argp-fmtstream.h: Check whether
14393 __STRICT_ANSI__ is defined with #ifdef rather
14394 than #if.
14395 * argp/argp.h: Likewise.
14396
f7efd7c3
WN
14397 * libio/genops.c: Check whether
14398 _IO_JUMPS_OFFSET is defined with #ifdef rather
14399 than #if.
14400 * libio/libioP.h: Likewise.
14401 * stdio-common/vfprintf.c: Likewise.
14402
53f1bed3
WN
14403 * sysdeps/generic/ldsodefs.h: Check whether
14404 HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
14405 than #if.
14406
788bba36
WN
14407 * nptl/sysdeps/pthread/pthread.h: Check
14408 __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
14409 its value.
14410
fcd89ebe
SP
144112014-03-17 Siddhesh Poyarekar <siddhesh@redhat.com>
14412
ae42bbc5
SP
14413 * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
14414 setting O_APPEND.
14415 * libio/tst-ftell-active-handler.c (do_append_test): Add a
14416 test case.
14417
ea33158c
SP
14418 [BZ #16680]
14419 * libio/fileops.c (_IO_file_open): Seek to end of file but
14420 don't cache the offset.
14421 (get_file_offset): Remove function.
14422 (do_ftell): Use cached offset when available.
14423 * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
14424 don't cache the offset.
14425 * libio/tst-ftell-active-handler.c (do_rewind_test): New test
14426 case.
14427 (do_one_test): Call it.
14428 (do_ftell_test): Fix up expected old offset for a+ mode.
14429 * libio/wfileops.c (do_ftell_wide): Used cached offset when
14430 available.
14431
b1dbb426
SP
14432 * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
14433 up test status with function return status.
14434 (do_write_test): Likewise.
14435 (do_append_test): Likewise.
14436
fcd89ebe
SP
14437 * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
14438 && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
14439 Remove.
14440
9962a2d3
JM
144412014-03-17 Joseph Myers <joseph@codesourcery.com>
14442
14443 * math/gen-libm-test.pl (parse_args): Handle results specified for
14444 each rounding mode separately.
14445 * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
14446 tests and results from lrint_tonearest_test_data,
14447 lrint_towardzero_test_data, lrint_downward_test_data and
14448 lrint_upward_test_data.
14449 (lrint_test): Use ALL_RM_TEST.
14450 (lrint_tonearest_test_data): Remove.
14451 (lrint_test_tonearest): Likewise.
14452 (lrint_towardzero_test_data): Likewise.
14453 (lrint_test_towardzero): Likewise.
14454 (lrint_downward_test_data): Likewise.
14455 (lrint_test_downward): Likewise.
14456 (lrint_upward_test_data): Likewise.
14457 (lrint_test_upward): Likewise.
14458 (llrint_test_data): Merge in per-rounding-mode tests and results
14459 from llrint_tonearest_test_data, llrint_towardzero_test_data,
14460 llrint_downward_test_data and llrint_upward_test_data.
14461 (llrint_test): Use ALL_RM_TEST.
14462 (llrint_tonearest_test_data): Remove.
14463 (llrint_test_tonearest): Likewise.
14464 (llrint_towardzero_test_data): Likewise.
14465 (llrint_test_towardzero): Likewise.
14466 (llrint_downward_test_data): Likewise.
14467 (llrint_test_downward): Likewise.
14468 (llrint_upward_test_data): Likewise.
14469 (llrint_test_upward): Likewise.
14470 (rint_test_data): Merge in per-rounding-mode tests and results
14471 from rint_tonearest_test_data, rint_towardzero_test_data,
14472 rint_downward_test_data and rint_upward_test_data. Add
14473 per-rounding-mode results for tests not in those arrays.
14474 (rint_test): Use ALL_RM_TEST.
14475 (rint_tonearest_test_data): Remove.
14476 (rint_test_tonearest): Likewise.
14477 (rint_towardzero_test_data): Likewise.
14478 (rint_test_towardzero): Likewise.
14479 (rint_downward_test_data): Likewise.
14480 (rint_test_downward): Likewise.
14481 (rint_upward_test_data): Likewise.
14482 (rint_test_upward): Likewise.
14483 (main): Don't call removed functions.
14484
5006148e
RM
144852014-03-14 Roland McGrath <roland@hack.frob.com>
14486
14487 * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
14488 "Compiled on ..." crapola. It is anti-useful.
14489
d6fe5e58
JM
144902014-03-14 Joseph Myers <joseph@codesourcery.com>
14491
14492 * scripts/evaluate-test.sh: Handle fourth argument to determine
14493 whether test run should stop on failure.
14494 * Makeconfig (stop-on-test-failure): New variable.
14495 (evaluate-test): Pass fourth argument to evaluate-test.sh based on
14496 $(stop-on-test-failure).
14497 * Makefile (tests): Give a summary of results from testing and
14498 exit with failure status if they include an ERROR or FAIL.
14499 (xtests): Likewise.
14500 * manual/install.texi (Configuring and compiling): Mention
14501 stop-on-test-failure=y.
14502 * INSTALL: Regenerated.
14503
498a2233
RM
145042014-03-14 Roland McGrath <roland@hack.frob.com>
14505
22dbc19d
RM
14506 * scripts/versionlist.awk: New file.
14507 * Makerules [$(build-shared) = yes]
14508 (postclean-generated): Add Versions.def, not Versions.def.v and
14509 Versions.def.v.i.
14510 ($(common-objpfx)Versions.def.v.i): Target removed.
14511 ($(common-objpfx)Versions.def): New target.
14512 ($(common-objpfx)Versions.all): Depend on that rather that
14513 $(common-objpfx)Versions.def.v.
14514 * Versions.def: File removed.
14515
498a2233
RM
14516 * Makeconfig (+gccwarn): Add -Wundef.
14517 * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
14518 a dl-sysdep.h breaking its contract.
14519 [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
14520 * include/stackinfo.h: New file.
14521 * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
14522 * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
14523 * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
14524 * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
14525 * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
14526 * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
14527 * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14528 * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14529 * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14530 * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14531 * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14532 * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
14533 * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14534 * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14535 * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
14536
c7de5025
AZ
145372014-03-14 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14538
14539 [BZ #16707]
14540 * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
14541 implementation.
14542 * math/libm-test.inc (round_test_data): Add more tests.
14543
98fb27a3
AZ
14544 [BZ #16706]
14545 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
14546 implementation.
14547 * math/libm-test.inc (nearbyint_test_data): Add more tests.
14548
374f7f61
AZ
14549 [BZ #16701]
14550 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
14551 implementation.
14552 * math/libm-test.inc (ceil_test_data): Add more tests.
14553
4655c291
AZ
14554 * math/libm-test.inc (trunc_test_data): Add more tests related to
14555 BZ#16414.
14556
d7329d4b
RM
145572014-03-14 Roland McGrath <roland@hack.frob.com>
14558
14559 * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
14560 with #if rather than #ifdef.
14561 * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
14562
aa4de9ce
L
145632014-03-14 H.J. Lu <hongjiu.lu@intel.com>
14564
14565 * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
14566 first. Disable AVX-512 GCC support if assembler doesn't support
14567 it.
14568 * sysdeps/x86_64/configure: Regenerated.
14569
2e03fae7
CD
145702014-03-13 Carlos O'Donell <carlos@redhat.com>
14571
14572 * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
14573 [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
14574 (__old_pthread_attr_setstack): Likewise.
14575 * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
14576 [!_STACK_GROWS_DOWN]: Likewise.
14577
43ca83ec
MF
145782014-03-13 Mike Frysinger <vapier@gentoo.org>
14579
14580 * config.make.in (have-bash2): Delete.
14581 * configure.ac (libc_cv_have_bash2): Delete.
14582 * configure: Regenerate.
14583 * elf/Makefile (common-ldd-rewrite): Rename to ...
14584 (ldd-rewrite): ... this. Move bash-ldd-rewrite content to end.
14585 (sh-ldd-rewrite): Delete.
14586 (bash-ldd-rewrite): Delete.
14587 (have-bash2): Delete checks.
57f41c40
AS
14588 [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
14589 ldd-rewrite.
c66e48b4
MF
14590
14591 * config.make.in (have-ksh): Delete.
14592 (KSH): Delete.
14593 * configure.ac (libc_cv_have_ksh): Delete.
14594 * configure: Regenerate.
14595
b93834ef
MF
14596 * elf/Makefile: Delete $(have-ksh) check.
14597 ($(objpfx)sotruss): Change KSH to BASH.
14598 * elf/sotruss.ksh: Rename to ...
14599 * elf/sotruss.sh: ... this. Change @KSH@ to @BASH@. Change
14600 function style to match POSIX. Drop ksh vim mode setting.
14601
f3a4632a
MF
14602 * manual/time.texi (Specifying the Time Zone with TZ): Change
14603 Tuesday to Thursday.
14604
5896c8bd
MF
14605 * debug/tst-longjmp_chk2.c: Update header comment.
14606 (stackoverflow_handler): Add comment. Call assert on pass value.
14607
2d63a517
IZ
146082014-03-13 Igor Zamyatin <igor.zamyatin@intel.com>
14609
7e54fd04 14610 [BZ #16194]
2d63a517
IZ
14611 * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
14612 (HAVE_AVX512_ASM_SUPPORT): Likewise.
14613 * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
14614 (La_x86_64_vector): Add zmm.
14615 * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
14616 (modules-names): Add tst-auditmod10a and tst-auditmod10b.
14617 ($(objpfx)tst-audit10): New target.
14618 ($(objpfx)tst-audit10.out): Likewise.
14619 (tst-audit10-ENV): New.
14620 (AVX512-CFLAGS): Likewise.
14621 (CFLAGS-tst-audit10.c): Likewise.
14622 (CFLAGS-tst-auditmod10a.c): Likewise.
14623 (CFLAGS-tst-auditmod10b.c): Likewise.
14624 * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
14625 HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
14626 * sysdeps/x86_64/configure: Regenerated.
14627 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
14628 AVX-512 zmm register support.
14629 (_dl_x86_64_save_sse): Likewise.
14630 (_dl_x86_64_restore_sse): Likewise.
14631 * sysdeps/x86_64/dl-trampoline.h: Updated to support different
14632 size vector registers.
14633 * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
14634 (ZMM_SIZE): Likewise.
14635 * sysdeps/x86_64/tst-audit10.c: New file.
14636 * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
14637 * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
14638
44c4e5d5
RM
146392014-03-13 Roland McGrath <roland@hack.frob.com>
14640
14641 * configure.ac (HAVE_EHDR_START): New check.
14642 * configure: Regenerated.
14643 * config.h.in (HAVE_EHDR_START): New #undef.
14644 * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
14645 assuming the lowest-addressed segment maps the start of the file.
14646
acd6e389
JM
146472014-03-13 Joseph Myers <joseph@codesourcery.com>
14648
14649 * INSTALL: Regenerated.
14650
6f918f36
WN
146512014-03-13 Will Newton <will.newton@linaro.org>
14652
14653 * manual/setjmp.texi (System V contexts): Improve
14654 clarity and grammar of documentation.
14655
798212a0
PP
146562014-03-12 Paul Pluzhnikov <ppluzhnikov@google.com>
14657
14658 [BZ #16381]
798212a0 14659 * elf/Makefile (tests): Add tst-pie2.
2e03fae7 14660 (tests-pie): Add tst-pie2.
798212a0
PP
14661 * elf/tst-pie2.c: New file.
14662 * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
14663 for ET_EXEC.
14664 * elf/rtld.c (map_doit): Load executable as lt_executable.
14665 (dl_main): Likewise.
14666
abe6d90c
JM
146672014-03-12 Joseph Myers <joseph@codesourcery.com>
14668
14669 [BZ #16642]
14670 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14671 (__ASSUME_PSELECT): Undefine.
14672
dd3946c6
AZ
146732014-03-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14674
14675 [BZ #16689]
14676 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
14677 (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
14678 static build.
14679 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
14680 selector for static builds.
14681
c44496df
SP
146822014-03-12 Siddhesh Poyarekar <siddhesh@redhat.com>
14683
14684 [BZ #16695]
14685 * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
14686 key in the buffer.
14687
27c7220a
AZ
146882014-03-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14689
57f41c40
AS
14690 * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
14691 IFUNC selector for static builds.
27c7220a 14692
600fa361
JM
146932014-03-11 Joseph Myers <joseph@codesourcery.com>
14694
76c96cf7
JM
14695 * sysdeps/mips/math_private.h [__mips_hard_float]
14696 (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
14697 libc_feresetround_mips_ctx.
14698 [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
14699 [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
14700 [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
14701
600fa361
JM
14702 [BZ #16677]
14703 * math/s_nextafter.c (__nextafter): Do not return value from
14704 overflowing computation.
14705 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
14706 * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
14707 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
14708 Likewise.
14709 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
14710 Likewise.
14711 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
14712 * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
14713
d7706c32
RM
147142014-03-11 Roland McGrath <roland@hack.frob.com>
14715
14716 * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
14717 * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
14718 Move sfi_sp use from the load-multiple (that no longer sets sp) to
14719 the new mov targetting sp.
14720
4facea47
AZ
147212014-03-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14722
14723 [BZ #16683]
14724 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
14725 Define it for static builds as well.
14726 (NO_BZERO_IMPL): Likewise.
14727
e65caf1f
VR
147282014-03-11 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
14729
14730 * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
14731 * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
14732 multiarch strspn for PPC64.
14733 * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
14734 * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
14735 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14736 (__libc_ifunc_impl_list): Likewise.
14737 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
14738 multiarch optimizations
14739 * string/strspn.c (strspn): Using macro to redefine symbol name.
14740
ba9cc071
AZ
147412014-03-10 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
14742 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14743
14744 * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
14745 * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
14746 multiarch strncat for PPC64.
14747 * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
14748 * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
14749 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14750 (__libc_ifunc_impl_list): Likewise.
14751 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
14752 multiarch optimizations
14753
8b4ff974
SP
147542014-03-10 Siddhesh Poyarekar <siddhesh@redhat.com>
14755
14756 [BZ #16639]
14757 * nscd/nscd.service: Make service type forking.
14758
54b46a4b
AZ
147592014-03-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14760
14761 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
14762 sign in non default rounding modes.
14763 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
14764
e9996ef7
JM
147652014-03-08 Joseph Myers <joseph@codesourcery.com>
14766
14767 * math/libm-test.inc (ALL_RM_TEST): New macro.
14768 (ceil_test): Use ALL_RM_TEST.
14769 (cimag_test): Likewise.
14770 (conj_test): Likewise.
14771 (copysign_test): Likewise.
14772 (cproj_test): Likewise.
14773 (creal_test): Likewise.
14774 (fabs_test): Likewise.
14775 (floor_test): Likewise.
14776 (fmax_test): Likewise.
14777 (fmin_test): Likewise.
14778 (fmod_test): Likewise.
14779 (fpclassify_test): Likewise.
14780 (frexp_test): Likewise.
14781 (ilogb_test): Likewise.
14782 (isfinite_test): Likewise.
14783 (finite_test): Likewise.
14784 (isgreater_test): Likewise.
14785 (isgreaterequal_test): Likewise.
14786 (isinf_test): Likewise.
14787 (isless_test): Likewise.
14788 (islessequal_test): Likewise.
14789 (islessgreater_test): Likewise.
14790 (isnan_test): Likewise.
14791 (isnormal_test): Likewise.
14792 (issignaling_test): Likewise.
14793 (isunordered_test): Likewise.
14794 (logb_test): Likewise.
14795 (logb_downward_test_data): Remove.
14796 (logb_test_downward): Likewise.
14797 (lround_test): Use ALL_RM_TEST.
14798 (llround_test): Likewise.
14799 (modf_test): Likewise.
14800 (nexttoward_test): Likewise.
14801 (remainder_test): Likewise.
14802 (drem_test): Likewise.
14803 (remainder_tonearest_test_data): Likewise.
14804 (remainder_test_tonearest): Likewise.
14805 (drem_test_tonearest): Likewise.
14806 (remainder_towardzero_test_data): Likewise.
14807 (remainder_test_towardzero): Likewise.
14808 (drem_test_towardzero): Likewise.
14809 (remainder_downward_test_data): Likewise.
14810 (remainder_test_downward): Likewise.
14811 (drem_test_downward): Likewise.
14812 (remainder_upward_test_data): Likewise.
14813 (remainder_test_upward): Likewise.
14814 (drem_test_upward): Likewise.
14815 (remquo_test): Use ALL_RM_TEST. Remove comment about x.
14816 (round_test): Use ALL_RM_TEST.
14817 (signbit_test): Likewise.
14818 (trunc_test): Likewise.
14819 (significand_test): Likewise.
14820 (main): Don't call removed functions.
14821
bc61d27c
JM
148222014-03-07 Joseph Myers <joseph@codesourcery.com>
14823
5c780849
JM
14824 [BZ #16674]
14825 * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
14826 || __USE_XOPEN2K8].
14827 (ILL_ILLOPN): Likewise.
14828 (ILL_ILLADR): Likewise.
14829 (ILL_ILLTRP): Likewise.
14830 (ILL_PRVOPC): Likewise.
14831 (ILL_PRVREG): Likewise.
14832 (ILL_COPROC): Likewise.
14833 (ILL_BADSTK): Likewise.
14834 (FPE_INTDIV): Likewise.
14835 (FPE_INTOVF): Likewise.
14836 (FPE_FLTDIV): Likewise.
14837 (FPE_FLTOVF): Likewise.
14838 (FPE_FLTUND): Likewise.
14839 (FPE_FLTRES): Likewise.
14840 (FPE_FLTINV): Likewise.
14841 (FPE_FLTSUB): Likewise.
14842 (SEGV_MAPERR): Likewise.
14843 (SEGV_ACCERR): Likewise.
14844 (BUS_ADRALN): Likewise.
14845 (BUS_ADRERR): Likewise.
14846 (BUS_OBJERR): Likewise.
14847 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
14848 (TRAP_TRACE): Likewise.
14849 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
14850 __USE_XOPEN2K8].
14851 (CLD_KILLED): Likewise.
14852 (CLD_DUMPED): Likewise.
14853 (CLD_TRAPPED): Likewise.
14854 (CLD_STOPPED): Likewise.
14855 (CLD_CONTINUED): Likewise.
14856 (POLL_IN): Likewise.
14857 (POLL_OUT): Likewise.
14858 (POLL_MSG): Likewise.
14859 (POLL_ERR): Likewise.
14860 (POLL_PRI): Likewise.
14861 (POLL_HUP): Likewise.
14862 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
14863 Likewise.
14864 (ILL_ILLOPN): Likewise.
14865 (ILL_ILLADR): Likewise.
14866 (ILL_ILLTRP): Likewise.
14867 (ILL_PRVOPC): Likewise.
14868 (ILL_PRVREG): Likewise.
14869 (ILL_COPROC): Likewise.
14870 (ILL_BADSTK): Likewise.
14871 (FPE_INTDIV): Likewise.
14872 (FPE_INTOVF): Likewise.
14873 (FPE_FLTDIV): Likewise.
14874 (FPE_FLTOVF): Likewise.
14875 (FPE_FLTUND): Likewise.
14876 (FPE_FLTRES): Likewise.
14877 (FPE_FLTINV): Likewise.
14878 (FPE_FLTSUB): Likewise.
14879 (SEGV_MAPERR): Likewise.
14880 (SEGV_ACCERR): Likewise.
14881 (BUS_ADRALN): Likewise.
14882 (BUS_ADRERR): Likewise.
14883 (BUS_OBJERR): Likewise.
14884 (BUS_MCEERR_AR): Likewise.
14885 (BUS_MCEERR_AO): Likewise.
14886 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
14887 (TRAP_TRACE): Likewise.
14888 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
14889 __USE_XOPEN2K8].
14890 (CLD_KILLED): Likewise.
14891 (CLD_DUMPED): Likewise.
14892 (CLD_TRAPPED): Likewise.
14893 (CLD_STOPPED): Likewise.
14894 (CLD_CONTINUED): Likewise.
14895 (POLL_IN): Likewise.
14896 (POLL_OUT): Likewise.
14897 (POLL_MSG): Likewise.
14898 (POLL_ERR): Likewise.
14899 (POLL_PRI): Likewise.
14900 (POLL_HUP): Likewise.
14901 * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
14902 (ILL_ILLOPN): Likewise.
14903 (ILL_ILLADR): Likewise.
14904 (ILL_ILLTRP): Likewise.
14905 (ILL_PRVOPC): Likewise.
14906 (ILL_PRVREG): Likewise.
14907 (ILL_COPROC): Likewise.
14908 (ILL_BADSTK): Likewise.
14909 (FPE_INTDIV): Likewise.
14910 (FPE_INTOVF): Likewise.
14911 (FPE_FLTDIV): Likewise.
14912 (FPE_FLTOVF): Likewise.
14913 (FPE_FLTUND): Likewise.
14914 (FPE_FLTRES): Likewise.
14915 (FPE_FLTINV): Likewise.
14916 (FPE_FLTSUB): Likewise.
14917 (SEGV_MAPERR): Likewise.
14918 (SEGV_ACCERR): Likewise.
14919 (BUS_ADRALN): Likewise.
14920 (BUS_ADRERR): Likewise.
14921 (BUS_OBJERR): Likewise.
14922 (BUS_MCEERR_AR): Likewise.
14923 (BUS_MCEERR_AO): Likewise.
14924 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
14925 (TRAP_TRACE): Likewise.
14926 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
14927 __USE_XOPEN2K8].
14928 (CLD_KILLED): Likewise.
14929 (CLD_DUMPED): Likewise.
14930 (CLD_TRAPPED): Likewise.
14931 (CLD_STOPPED): Likewise.
14932 (CLD_CONTINUED): Likewise.
14933 (POLL_IN): Likewise.
14934 (POLL_OUT): Likewise.
14935 (POLL_MSG): Likewise.
14936 (POLL_ERR): Likewise.
14937 (POLL_PRI): Likewise.
14938 (POLL_HUP): Likewise.
14939 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
14940 Likewise.
14941 (ILL_ILLOPN): Likewise.
14942 (ILL_ILLADR): Likewise.
14943 (ILL_ILLTRP): Likewise.
14944 (ILL_PRVOPC): Likewise.
14945 (ILL_PRVREG): Likewise.
14946 (ILL_COPROC): Likewise.
14947 (ILL_BADSTK): Likewise.
14948 (ILL_BADIADDR): Likewise.
14949 (ILL_BREAK): Likewise.
14950 (FPE_INTDIV): Likewise.
14951 (FPE_INTOVF): Likewise.
14952 (FPE_FLTDIV): Likewise.
14953 (FPE_FLTOVF): Likewise.
14954 (FPE_FLTUND): Likewise.
14955 (FPE_FLTRES): Likewise.
14956 (FPE_FLTINV): Likewise.
14957 (FPE_FLTSUB): Likewise.
14958 (FPE_DECOVF): Likewise.
14959 (FPE_DECDIV): Likewise.
14960 (FPE_DECERR): Likewise.
14961 (FPE_INVASC): Likewise.
14962 (FPE_INVDEC): Likewise.
14963 (SEGV_MAPERR): Likewise.
14964 (SEGV_ACCERR): Likewise.
14965 (SEGV_PSTKOVF): Likewise.
14966 (BUS_ADRALN): Likewise.
14967 (BUS_ADRERR): Likewise.
14968 (BUS_OBJERR): Likewise.
14969 (BUS_MCEERR_AR): Likewise.
14970 (BUS_MCEERR_AO): Likewise.
14971 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
14972 (TRAP_TRACE): Likewise.
14973 (TRAP_BRANCH): Likewise.
14974 (TRAP_HWBKPT): Likewise.
14975 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
14976 __USE_XOPEN2K8].
14977 (CLD_KILLED): Likewise.
14978 (CLD_DUMPED): Likewise.
14979 (CLD_TRAPPED): Likewise.
14980 (CLD_STOPPED): Likewise.
14981 (CLD_CONTINUED): Likewise.
14982 (POLL_IN): Likewise.
14983 (POLL_OUT): Likewise.
14984 (POLL_MSG): Likewise.
14985 (POLL_ERR): Likewise.
14986 (POLL_PRI): Likewise.
14987 (POLL_HUP): Likewise.
14988 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
14989 (ILL_ILLOPN): Likewise.
14990 (ILL_ILLADR): Likewise.
14991 (ILL_ILLTRP): Likewise.
14992 (ILL_PRVOPC): Likewise.
14993 (ILL_PRVREG): Likewise.
14994 (ILL_COPROC): Likewise.
14995 (ILL_BADSTK): Likewise.
14996 (FPE_INTDIV): Likewise.
14997 (FPE_INTOVF): Likewise.
14998 (FPE_FLTDIV): Likewise.
14999 (FPE_FLTOVF): Likewise.
15000 (FPE_FLTUND): Likewise.
15001 (FPE_FLTRES): Likewise.
15002 (FPE_FLTINV): Likewise.
15003 (FPE_FLTSUB): Likewise.
15004 (SEGV_MAPERR): Likewise.
15005 (SEGV_ACCERR): Likewise.
15006 (BUS_ADRALN): Likewise.
15007 (BUS_ADRERR): Likewise.
15008 (BUS_OBJERR): Likewise.
15009 (BUS_MCEERR_AR): Likewise.
15010 (BUS_MCEERR_AO): Likewise.
15011 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15012 (TRAP_TRACE): Likewise.
15013 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15014 __USE_XOPEN2K8].
15015 (CLD_KILLED): Likewise.
15016 (CLD_DUMPED): Likewise.
15017 (CLD_TRAPPED): Likewise.
15018 (CLD_STOPPED): Likewise.
15019 (CLD_CONTINUED): Likewise.
15020 (POLL_IN): Likewise.
15021 (POLL_OUT): Likewise.
15022 (POLL_MSG): Likewise.
15023 (POLL_ERR): Likewise.
15024 (POLL_PRI): Likewise.
15025 (POLL_HUP): Likewise.
15026 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
15027 (ILL_ILLOPN): Likewise.
15028 (ILL_ILLADR): Likewise.
15029 (ILL_ILLTRP): Likewise.
15030 (ILL_PRVOPC): Likewise.
15031 (ILL_PRVREG): Likewise.
15032 (ILL_COPROC): Likewise.
15033 (ILL_BADSTK): Likewise.
15034 (FPE_INTDIV): Likewise.
15035 (FPE_INTOVF): Likewise.
15036 (FPE_FLTDIV): Likewise.
15037 (FPE_FLTOVF): Likewise.
15038 (FPE_FLTUND): Likewise.
15039 (FPE_FLTRES): Likewise.
15040 (FPE_FLTINV): Likewise.
15041 (FPE_FLTSUB): Likewise.
15042 (SEGV_MAPERR): Likewise.
15043 (SEGV_ACCERR): Likewise.
15044 (BUS_ADRALN): Likewise.
15045 (BUS_ADRERR): Likewise.
15046 (BUS_OBJERR): Likewise.
15047 (BUS_MCEERR_AR): Likewise.
15048 (BUS_MCEERR_AO): Likewise.
15049 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15050 (TRAP_TRACE): Likewise.
15051 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15052 __USE_XOPEN2K8].
15053 (CLD_KILLED): Likewise.
15054 (CLD_DUMPED): Likewise.
15055 (CLD_TRAPPED): Likewise.
15056 (CLD_STOPPED): Likewise.
15057 (CLD_CONTINUED): Likewise.
15058 (POLL_IN): Likewise.
15059 (POLL_OUT): Likewise.
15060 (POLL_MSG): Likewise.
15061 (POLL_ERR): Likewise.
15062 (POLL_PRI): Likewise.
15063 (POLL_HUP): Likewise.
15064 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
15065 (ILL_ILLOPN): Likewise.
15066 (ILL_ILLADR): Likewise.
15067 (ILL_ILLTRP): Likewise.
15068 (ILL_PRVOPC): Likewise.
15069 (ILL_PRVREG): Likewise.
15070 (ILL_COPROC): Likewise.
15071 (ILL_BADSTK): Likewise.
15072 (FPE_INTDIV): Likewise.
15073 (FPE_INTOVF): Likewise.
15074 (FPE_FLTDIV): Likewise.
15075 (FPE_FLTOVF): Likewise.
15076 (FPE_FLTUND): Likewise.
15077 (FPE_FLTRES): Likewise.
15078 (FPE_FLTINV): Likewise.
15079 (FPE_FLTSUB): Likewise.
15080 (SEGV_MAPERR): Likewise.
15081 (SEGV_ACCERR): Likewise.
15082 (BUS_ADRALN): Likewise.
15083 (BUS_ADRERR): Likewise.
15084 (BUS_OBJERR): Likewise.
15085 (BUS_MCEERR_AR): Likewise.
15086 (BUS_MCEERR_AO): Likewise.
15087 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15088 (TRAP_TRACE): Likewise.
15089 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15090 __USE_XOPEN2K8].
15091 (CLD_KILLED): Likewise.
15092 (CLD_DUMPED): Likewise.
15093 (CLD_TRAPPED): Likewise.
15094 (CLD_STOPPED): Likewise.
15095 (CLD_CONTINUED): Likewise.
15096 (POLL_IN): Likewise.
15097 (POLL_OUT): Likewise.
15098 (POLL_MSG): Likewise.
15099 (POLL_ERR): Likewise.
15100 (POLL_PRI): Likewise.
15101 (POLL_HUP): Likewise.
15102 * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
15103 (ILL_ILLOPN): Likewise.
15104 (ILL_ILLADR): Likewise.
15105 (ILL_ILLTRP): Likewise.
15106 (ILL_PRVOPC): Likewise.
15107 (ILL_PRVREG): Likewise.
15108 (ILL_COPROC): Likewise.
15109 (ILL_BADSTK): Likewise.
15110 (ILL_DBLFLT): Likewise.
15111 (ILL_HARDWALL): Likewise.
15112 (FPE_INTDIV): Likewise.
15113 (FPE_INTOVF): Likewise.
15114 (FPE_FLTDIV): Likewise.
15115 (FPE_FLTOVF): Likewise.
15116 (FPE_FLTUND): Likewise.
15117 (FPE_FLTRES): Likewise.
15118 (FPE_FLTINV): Likewise.
15119 (FPE_FLTSUB): Likewise.
15120 (SEGV_MAPERR): Likewise.
15121 (SEGV_ACCERR): Likewise.
15122 (BUS_ADRALN): Likewise.
15123 (BUS_ADRERR): Likewise.
15124 (BUS_OBJERR): Likewise.
15125 (BUS_MCEERR_AR): Likewise.
15126 (BUS_MCEERR_AO): Likewise.
15127 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15128 (TRAP_TRACE): Likewise.
15129 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15130 __USE_XOPEN2K8].
15131 (CLD_KILLED): Likewise.
15132 (CLD_DUMPED): Likewise.
15133 (CLD_TRAPPED): Likewise.
15134 (CLD_STOPPED): Likewise.
15135 (CLD_CONTINUED): Likewise.
15136 (POLL_IN): Likewise.
15137 (POLL_OUT): Likewise.
15138 (POLL_MSG): Likewise.
15139 (POLL_ERR): Likewise.
15140 (POLL_PRI): Likewise.
15141 (POLL_HUP): Likewise.
15142 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
15143 (ILL_ILLOPN): Likewise.
15144 (ILL_ILLADR): Likewise.
15145 (ILL_ILLTRP): Likewise.
15146 (ILL_PRVOPC): Likewise.
15147 (ILL_PRVREG): Likewise.
15148 (ILL_COPROC): Likewise.
15149 (ILL_BADSTK): Likewise.
15150 (FPE_INTDIV): Likewise.
15151 (FPE_INTOVF): Likewise.
15152 (FPE_FLTDIV): Likewise.
15153 (FPE_FLTOVF): Likewise.
15154 (FPE_FLTUND): Likewise.
15155 (FPE_FLTRES): Likewise.
15156 (FPE_FLTINV): Likewise.
15157 (FPE_FLTSUB): Likewise.
15158 (SEGV_MAPERR): Likewise.
15159 (SEGV_ACCERR): Likewise.
15160 (BUS_ADRALN): Likewise.
15161 (BUS_ADRERR): Likewise.
15162 (BUS_OBJERR): Likewise.
15163 (BUS_MCEERR_AR): Likewise.
15164 (BUS_MCEERR_AO): Likewise.
15165 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
15166 (TRAP_TRACE): Likewise.
15167 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
15168 __USE_XOPEN2K8].
15169 (CLD_KILLED): Likewise.
15170 (CLD_DUMPED): Likewise.
15171 (CLD_TRAPPED): Likewise.
15172 (CLD_STOPPED): Likewise.
15173 (CLD_CONTINUED): Likewise.
15174 (POLL_IN): Likewise.
15175 (POLL_OUT): Likewise.
15176 (POLL_MSG): Likewise.
15177 (POLL_ERR): Likewise.
15178 (POLL_PRI): Likewise.
15179 (POLL_HUP): Likewise.
15180 * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
15181 (test-xfail-POSIX/sys/wait.h/conform): Likewise.
15182
bc61d27c
JM
15183 [BZ #16670]
15184 * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
15185 before #include of <time.h>.
15186 [!__USE_XOPEN2K] (__need_timespec): Likewise.
15187 * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
15188 (test-xfail-UNIX98/sched.h/conform): Likewise.
15189
302949e2
MS
151902014-03-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
15191
15192 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
15193 error absence of trapping exception support.
15194 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
15195
a00f522a
JM
151962014-03-07 Joseph Myers <joseph@codesourcery.com>
15197
6f99f280
JM
15198 * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
15199 ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
15200 * timezone/Makefile (testdata): Move definition above include of
15201 Rules.
15202 (test-zones): New variable.
15203 (tests-special): Add zone files.
15204 (build-testdata): Use $(evaluate-test).
15205
0b20a9e8
JM
15206 * elf/Makefile (tests-special): Rename tests to end with .out.
15207 ($(objpfx)noload-mem): Likewise.
15208 ($(objpfx)tst-leaks1-mem): Likewise.
15209 ($(objpfx)tst-leaks1-static-mem.out): Likewise.
15210 * iconv/Makefile (xtests-special): Change test-iconvconfig to
15211 $(objpfx)test-iconvconfig.out.
15212 (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out. Use
15213 set -e inside subshell and redirect output to file.
15214 * iconvdata/Makefile (generated): Rename tests to end with .out.
15215 Correct type.
15216 (tests-special): Rename tests to end with .out.
15217 ($(objpfx)mtrace-tst-loading): Likewise.
15218 * intl/Makefile (generated): Likewise.
15219 (tests-special): Likewise.
15220 ($(objpfx)mtrace-tst-gettext): Likewise.
15221 * misc/Makefile (generated): Likewise.
15222 (tests-special): Likewise.
15223 ($(objpfx)tst-error1-mem): Likewise.
15224 * nptl/Makefile (tests-special): Likewise.
15225 ($(objpfx)tst-stack3-mem): Likewise.
15226 (generated): Likewise.
15227 * posix/Makefile (generated): Likewise.
15228 (tests-special): Likewise.
15229 (xtests-special): Likewise.
15230 ($(objpfx)tst-fnmatch-mem): Likewise.
15231 ($(objpfx)bug-regex2-mem): Likewise.
15232 ($(objpfx)bug-regex14-mem): Likewise.
15233 ($(objpfx)bug-regex21-mem): Likewise.
15234 ($(objpfx)bug-regex31-mem): Likewise.
15235 ($(objpfx)tst-vfork3-mem): Likewise.
15236 ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
15237 ($(objpfx)tst-pcre-mem): Likewise.
15238 ($(objpfx)tst-boost-mem): Likewise.
15239 ($(objpfx)bug-ga2-mem): Likewise.
15240 ($(objpfx)bug-glob2-mem): Likewise.
15241 * resolv/Makefile (generate): Likewise.
15242 (tests-special): Likewise.
15243 (xtests-special): Likewise.
15244 (generated): Likewise.
15245 ($(objpfx)mtrace-tst-leaks): Likewise.
15246 ($(objpfx)mtrace-tst-leaks2): Likewise.
15247
265d52ab
JM
15248 * scripts/merge-test-results.sh: New file.
15249 * Makefile (tests-special-notdir): New variable.
15250 (tests): Run merge-test-results.sh.
15251 (xtests): Likewise.
15252 * Rules (tests-special-notdir): New variable.
15253 (xtests-special-notdir): Likewise.
15254 (tests): Run merge-test-results.sh
15255 (xtests): Likewise.
15256
54ee292d
JM
15257 * Makeconfig (test-xfail-name): New variable.
15258 (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
15259 compute variable name for expected failures.
15260 * conform/Makefile (conformtest-headers-data): New variable.
15261 (conformtest-standards): Likewise.
15262 (conformtest-headers-ISO): Likewise.
15263 (conformtest-headers-ISO99): Likewise.
15264 (conformtest-headers-ISO11): Likewise.
15265 (conformtest-headers-POSIX): Likewise.
15266 (conformtest-headers-XPG3): Likewise.
15267 (conformtest-headers-XPG4): Likewise.
15268 (conformtest-headers-UNIX98): Likewise.
15269 (conformtest-headers-XOPEN2K): Likewise.
15270 (conformtest-headers-POSIX2008): Likewise.
15271 (conformtest-headers-XOPEN2K8): Likewise.
15272 (conformtest-header-list-base): Likewise.
15273 (conformtest-header-list-tests): Likewise.
15274 (conformtest-header-base): Likewise.
15275 (conformtest-header-tests): Likewise.
15276 (tests-special): Add $(conformtest-header-list-tests). If
15277 [$(fast-check) && !$(cross-compiling)], add
15278 $(conformtest-header-tests) instead of
15279 $(objpfx)run-conformtest.out.
15280 (generated): Add $(conformtest-header-list-base). If
15281 [$(fast-check) && !$(cross-compiling)], add
15282 $(conformtest-header-base). Remove previous setting.
15283 ($(conformtest-header-list-tests)): New target.
15284 (test-xfail-run-conformtest): Remove variable.
15285 ($(objpfx)run-conformtest.out): Remove target.
15286 (test-xfail-ISO11/complex.h/conform): New variable.
15287 (test-xfail-ISO11/stdalign.h/conform): Likewise.
15288 (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
15289 (test-xfail-XPG3/varargs.h/conform): Likewise.
15290 (test-xfail-XPG4/varargs.h/conform): Likewise.
15291 (test-xfail-UNIX98/varargs.h/conform): Likewise.
15292 (test-xfail-XPG4/ndbm.h/conform): Likewise.
15293 (test-xfail-UNIX98/ndbm.h/conform): Likewise.
15294 (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
15295 (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
15296 (test-xfail-XPG3/fcntl.h/conform): Likewise.
15297 (test-xfail-XPG3/ftw.h/conform): Likewise.
15298 (test-xfail-XPG3/grp.h/conform): Likewise.
15299 (test-xfail-XPG3/langinfo.h/conform): Likewise.
15300 (test-xfail-XPG3/limits.h/conform): Likewise.
15301 (test-xfail-XPG3/pwd.h/conform): Likewise.
15302 (test-xfail-XPG3/search.h/conform): Likewise.
15303 (test-xfail-XPG3/signal.h/conform): Likewise.
15304 (test-xfail-XPG3/stdio.h/conform): Likewise.
15305 (test-xfail-XPG3/stdlib.h/conform): Likewise.
15306 (test-xfail-XPG3/string.h/conform): Likewise.
15307 (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
15308 (test-xfail-XPG3/sys/msg.h/conform): Likewise.
15309 (test-xfail-XPG3/sys/sem.h/conform): Likewise.
15310 (test-xfail-XPG3/sys/shm.h/conform): Likewise.
15311 (test-xfail-XPG3/sys/stat.h/conform): Likewise.
15312 (test-xfail-XPG3/sys/types.h/conform): Likewise.
15313 (test-xfail-XPG3/sys/wait.h/conform): Likewise.
15314 (test-xfail-XPG3/termios.h/conform): Likewise.
15315 (test-xfail-XPG3/time.h/conform): Likewise.
15316 (test-xfail-XPG3/unistd.h/conform): Likewise.
15317 (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
15318 (test-xfail-XPG4/fcntl.h/conform): Likewise.
15319 (test-xfail-XPG4/langinfo.h/conform): Likewise.
15320 (test-xfail-XPG4/netdb.h/conform): Likewise.
15321 (test-xfail-XPG4/netinet/in.h/conform): Likewise.
15322 (test-xfail-XPG4/signal.h/conform): Likewise.
15323 (test-xfail-XPG4/stdio.h/conform): Likewise.
15324 (test-xfail-XPG4/stdlib.h/conform): Likewise.
15325 (test-xfail-XPG4/stropts.h/conform): Likewise.
15326 (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
15327 (test-xfail-XPG4/sys/msg.h/conform): Likewise.
15328 (test-xfail-XPG4/sys/sem.h/conform): Likewise.
15329 (test-xfail-XPG4/sys/shm.h/conform): Likewise.
15330 (test-xfail-XPG4/sys/socket.h/conform): Likewise.
15331 (test-xfail-XPG4/sys/stat.h/conform): Likewise.
15332 (test-xfail-XPG4/sys/time.h/conform): Likewise.
15333 (test-xfail-XPG4/sys/types.h/conform): Likewise.
15334 (test-xfail-XPG4/sys/wait.h/conform): Likewise.
15335 (test-xfail-XPG4/termios.h/conform): Likewise.
15336 (test-xfail-XPG4/ucontext.h/conform): Likewise.
15337 (test-xfail-XPG4/unistd.h/conform): Likewise.
15338 (test-xfail-XPG4/utmpx.h/conform): Likewise.
15339 (test-xfail-POSIX/sched.h/conform): Likewise.
15340 (test-xfail-POSIX/signal.h/conform): Likewise.
15341 (test-xfail-POSIX/sys/wait.h/conform): Likewise.
15342 (test-xfail-POSIX/tar.h/conform): Likewise.
15343 (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
15344 (test-xfail-UNIX98/fcntl.h/conform): Likewise.
15345 (test-xfail-UNIX98/langinfo.h/conform): Likewise.
15346 (test-xfail-UNIX98/netdb.h/conform): Likewise.
15347 (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
15348 (test-xfail-UNIX98/sched.h/conform): Likewise.
15349 (test-xfail-UNIX98/signal.h/conform): Likewise.
15350 (test-xfail-UNIX98/stdio.h/conform): Likewise.
15351 (test-xfail-UNIX98/stdlib.h/conform): Likewise.
15352 (test-xfail-UNIX98/stropts.h/conform): Likewise.
15353 (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
15354 (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
15355 (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
15356 (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
15357 (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
15358 (test-xfail-UNIX98/sys/time.h/conform): Likewise.
15359 (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
15360 (test-xfail-UNIX98/ucontext.h/conform): Likewise.
15361 (test-xfail-UNIX98/unistd.h/conform): Likewise.
15362 (test-xfail-UNIX98/utmpx.h/conform): Likewise.
15363 (test-xfail-XOPEN2K/aio.h/conform): Likewise.
15364 (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
15365 (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
15366 (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
15367 (test-xfail-XOPEN2K/math.h/conform): Likewise.
15368 (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
15369 (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
15370 (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
15371 (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
15372 (test-xfail-XOPEN2K/signal.h/conform): Likewise.
15373 (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
15374 (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
15375 (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
15376 (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
15377 (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
15378 (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
15379 (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
15380 (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
15381 (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
15382 (test-xfail-XOPEN2K/termios.h/conform): Likewise.
15383 (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
15384 (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
15385 (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
15386 (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
15387 (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
15388 (test-xfail-POSIX2008/netdb.h/conform): Likewise.
15389 (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
15390 (test-xfail-POSIX2008/signal.h/conform): Likewise.
15391 (test-xfail-POSIX2008/stropts.h/conform): Likewise.
15392 (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
15393 (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
15394 (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
15395 (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
15396 (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
15397 (test-xfail-XOPEN2K8/math.h/conform): Likewise.
15398 (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
15399 (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
15400 (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
15401 (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
15402 (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
15403 (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
15404 (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
15405 (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
15406 (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
15407 (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
15408 (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
15409 (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
15410 (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
15411 (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
15412 (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
15413 (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
15414 (conformtest-cc-flags): Likewise.
15415 ($(conformtest-header-tests): New target.
15416 * conform/check-header-lists.sh: New file.
15417 * conform/run-conformtest.sh: Remove.
15418
a00f522a
JM
15419 * conform/conformtest.pl: Allow ' and \ in values given for
15420 constants.
15421 * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
15422 inclusion.
15423 [POSIX] (sys/types.h): Likewise.
15424 [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
15425 inclusion.
15426 [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
15427 inclusion.
15428 * conform/data/signal.h-data (SIGIO): Remove expectation.
15429 [XPG3] (SIGBUS): Do not expect.
15430 [POSIX || XPG3] (SIGPOLL): Likewise.
15431 [POSIX || XPG3] (SIGPROF): Likewise.
15432 [POSIX || XPG3] (SIGSYS): Likewise.
15433 [XPG3] (SIGTRAP): Likewise.
15434 [POSIX || XPG3] (SIGURG): Likewise.
15435 [POSIX || XPG3] (SIGVTALRM): Likewise.
15436 [POSIX || XPG3] (SIGXCPU): Likewise.
15437 [POSIX || XPG3] (SIGXFSZ): Likewise.
15438 [POSIX] (SA_SIGINFO): Expect.
15439 [XPG3] (siginfo_t): Do not expect type or contents.
15440 [POSIX] (si_pid): Do not expect element.
15441 [POSIX] (si_uid): Likewise.
15442 [POSIX] (si_addr): Likewise.
15443 [POSIX] (si_status): Likewise.
15444 [POSIX] (si_band): Likewise.
15445 [XPG4] (si_value): Likewise.
15446 [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
15447 [POSIX || XPG3] (ILL_ILLOPN): Likewise.
15448 [POSIX || XPG3] (ILL_ILLADR): Likewise.
15449 [POSIX || XPG3] (ILL_ILLTRP): Likewise.
15450 [POSIX || XPG3] (ILL_PRVOPC): Likewise.
15451 [POSIX || XPG3] (ILL_PRVREG): Likewise.
15452 [POSIX || XPG3] (ILL_COPROC): Likewise.
15453 [POSIX || XPG3] (ILL_BADSTK): Likewise.
15454 [POSIX || XPG3] (FPE_INTDIV): Likewise.
15455 [POSIX || XPG3] (FPE_INTOVF): Likewise.
15456 [POSIX || XPG3] (FPE_FLTDIV): Likewise.
15457 [POSIX || XPG3] (FPE_FLTOVF): Likewise.
15458 [POSIX || XPG3] (FPE_FLTUND): Likewise.
15459 [POSIX || XPG3] (FPE_FLTRES): Likewise.
15460 [POSIX || XPG3] (FPE_FLTINV): Likewise.
15461 [POSIX || XPG3] (FPE_FLTSUB): Likewise.
15462 [POSIX || XPG3] (SEGV_MAPERR): Likewise.
15463 [POSIX || XPG3] (SEGV_ACCERR): Likewise.
15464 [POSIX || XPG3] (BUS_ADRALN): Likewise.
15465 [POSIX || XPG3] (BUS_ADRERR): Likewise.
15466 [POSIX || XPG3] (BUS_OBJERR): Likewise.
15467 [POSIX || XPG3] (CLD_EXITED): Likewise.
15468 [POSIX || XPG3] (CLD_KILLED): Likewise.
15469 [POSIX || XPG3] (CLD_DUMPED): Likewise.
15470 [POSIX || XPG3] (CLD_TRAPPED): Likewise.
15471 [POSIX || XPG3] (CLD_STOPPED): Likewise.
15472 [POSIX || XPG3] (CLD_CONTINUED): Likewise.
15473 [POSIX || XPG3] (POLL_IN): Likewise.
15474 [POSIX || XPG3] (POLL_OUT): Likewise.
15475 [POSIX || XPG3] (POLL_MSG): Likewise.
15476 [POSIX || XPG3] (POLL_ERR): Likewise.
15477 [POSIX || XPG3] (POLL_PRI): Likewise.
15478 [POSIX || XPG3] (POLL_HUP): Likewise.
15479 [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
15480 [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
15481 (SIG*): Do not allow.
15482 [XPG3] (si_*): Likewise.
15483 [XPG3] (SI_*): Likewise.
15484 [XPG3 || XPG4] (sigev_*): Likewise.
15485 [XPG3 || XPG4] (SIGEV_*): Likewise.
15486 [XPG3 || XPG4] (sival_*): Likewise.
15487 [POSIX || XPG3 || XPG4] (uc_*): Likewise.
15488 [POSIX || XPG3] (BUS_*): Likewise.
15489 [POSIX || XPG3] (CLD_*): Likewise.
15490 [POSIX || XPG3] (FPE_*): Likewise.
15491 [POSIX || XPG3] (ILL_*): Likewise.
15492 [POSIX || XPG3] (POLL_*): Likewise.
15493 [POSIX || XPG3] (SEGV_*): Likewise.
15494 [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
15495 [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
15496 [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
15497 [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
15498 [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
15499 * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
15500 Specify type and value.
15501 (TVERSLEN): Likewise.
15502 (REGTYPE): Likewise.
15503 (AREGTYPE): Likewise.
15504 (LNKTYPE): Likewise.
15505 (SYMTYPE): Likewise.
15506 (CHRTYPE): Likewise.
15507 (BLKTYPE): Likewise.
15508 (DIRTYPE): Likewise.
15509 (FIFOTYPE): Likewise.
15510 (CONTTYPE): Likewise.
15511 (TSUID): Likewise.
15512 (TSGID): Likewise.
15513 (TSVTX): Likewise.
15514 (TUREAD): Likewise.
15515 (TUWRITE): Likewise.
15516 (TUEXEC): Likewise.
15517 (TGREAD): Likewise.
15518 (TGWRITE): Likewise.
15519 (TGEXEC): Likewise.
15520 (TOREAD): Likewise.
15521 (TOWRITE): Likewise.
15522 (TOEXEC): Likewise.
15523 [POSIX] (TSVTX): Expect constant.
15524
aa97dee1
JM
155252014-03-06 Joseph Myers <joseph@codesourcery.com>
15526
f214606a
JM
15527 * Makefile (tests): Change dependencies to ....
15528 (tests-special): ... additions to this variable.
15529 (tests): Depend on $(tests-special).
15530 * Makerules (check-abi-list): New variable.
15531 (check-abi): Depend on $(check-abi-list).
15532 [$(subdir) = elf] (tests-special): Add
15533 $(objpfx)check-abi-libc.out.
15534 [$(build-shared) = yes && subdir] (tests-special): Add
15535 $(check-abi-list).
15536 [$(build-shared) = yes && subdir] (tests): Do not depend on
15537 check-abi.
15538 * Rules (tests): Depend on $(tests-special).
15539 (xtests): Depend on $(xtests-special).
15540 * catgets/Makefile (tests): Change dependencies to ....
15541 (tests-special): ... additions to this variable.
15542 * conform/Makefile (tests): Change dependencies to ....
15543 (tests-special): ... additions to this variable.
15544 * elf/Makefile (tests): Change dependencies to ....
15545 (tests-special): ... additions to this variable.
15546 * grp/Makefile (tests): Change dependencies to ....
15547 (tests-special): ... additions to this variable.
15548 * iconv/Makefile (xtests): Change dependencies to ....
15549 (xtests-special): ... additions to this variable.
15550 * iconvdata/Makefile (tests): Change dependencies to ....
15551 (tests-special): ... additions to this variable.
15552 * intl/Makefile (tests): Change dependencies to ....
15553 (tests-special): ... additions to this variable. Also add
15554 $(objpfx)tst-gettext.out.
15555 * io/Makefile (tests): Change dependencies to ....
15556 (tests-special): ... additions to this variable.
15557 * libio/Makefile (tests): Change dependencies to ....
15558 (tests-special): ... additions to this variable.
15559 * malloc/Makefile (tests): Change dependencies to ....
15560 (tests-special): ... additions to this variable.
15561 * misc/Makefile (tests): Change dependencies to ....
15562 (tests-special): ... additions to this variable.
15563 * nptl/Makefile (tests): Change dependencies to ....
15564 (tests-special): ... additions to this variable.
15565 * nptl_db/Makefile (tests): Change dependencies to ....
15566 (tests-special): ... additions to this variable.
15567 * posix/Makefile (tests): Change dependencies to ....
15568 (tests-special): ... additions to this variable.
15569 (xtests): Change dependencies to ....
15570 (xtests-special): ... additions to this variable.
15571 * resolv/Makefile (tests): Change dependencies to ....
15572 (tests-special): ... additions to this variable.
15573 (xtests): Change dependencies to ....
15574 (xtests-special): ... additions to this variable.
15575 * stdio-common/Makefile (tests): Change dependencies to ....
15576 (tests-special): ... additions to this variable.
15577 (do-tst-unbputc): Remove target.
15578 (do-tst-printf): Likewise.
15579 * stdlib/Makefile (tests): Change dependencies to ....
15580 (tests-special): ... additions to this variable.
15581 * string/Makefile (tests): Change dependencies to ....
15582 (tests-special): ... additions to this variable.
15583 * sysdeps/x86/Makefile (tests): Change dependencies to ....
15584 (tests-special): ... additions to this variable.
15585
81700b53
JM
15586 * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
15587 whole file.
15588 * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
15589 whole file.
15590 * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
15591 * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
15592
2ea18461
JM
15593 * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
15594 * conform/data/arpa/inet.h-data [XPG3]: Likewise.
15595 * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
15596 * conform/data/fmtmsg.h-data [XPG3]: Likewise.
15597 * conform/data/libgen.h-data [XPG3]: Likewise.
15598 * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
15599 * conform/data/ndbm.h-data [XPG3]: Likewise.
15600 * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
15601 * conform/data/netdb.h-data [XPG3]: Likewise.
15602 * conform/data/netinet/in.h-data [XPG3]: Likewise.
15603 * conform/data/poll.h-data [XPG3]: Likewise.
15604 * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
15605 * conform/data/strings.h-data [XPG3]: Likewise.
15606 * conform/data/stropts.h-data [XPG3]: Likewise.
15607 * conform/data/sys/mman.h-data [XPG3]: Likewise.
15608 * conform/data/sys/resource.h-data [XPG3]: Likewise.
15609 * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
15610 Likewise.
15611 * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
15612 * conform/data/sys/time.h-data [XPG3]: Likewise.
15613 * conform/data/sys/timeb.h-data [XPG3]: Likewise.
15614 * conform/data/sys/uio.h-data [XPG3]: Likewise.
15615 * conform/data/sys/un.h-data [XPG3]: Likewise.
15616 * conform/data/syslog.h-data [XPG3]: Likewise.
15617 * conform/data/ucontext.h-data [XPG3]: Likewise.
15618 * conform/data/utmpx.h-data [XPG3]: Likewise.
15619 * conform/data/varargs.h-data [UNIX98]: Enable file.
15620
355bc986
JM
15621 * manual/Makefile (INSTALL_INFO): Remove variable setting.
15622
215db402
JM
15623 * math/libm-test.inc (struct test_f_f_data): Move expected results
15624 into structure for each rounding mode.
15625 (struct test_ff_f_data): Likewise.
15626 (struct test_ff_f_data_nexttoward): Likewise.
15627 (struct test_fi_f_data): Likewise.
15628 (struct test_fl_f_data): Likewise.
15629 (struct test_if_f_data): Likewise.
15630 (struct test_fff_f_data): Likewise.
15631 (struct test_c_f_data): Likewise.
15632 (struct test_f_f1_data): Likewise.
15633 (struct test_fF_f1_data): Likewise.
15634 (struct test_ffI_f1_data): Likewise.
15635 (struct test_c_c_data): Likewise.
15636 (struct test_cc_c_data): Likewise.
15637 (struct test_f_i_data): Likewise.
15638 (struct test_ff_i_data): Likewise.
15639 (struct test_f_l_data): Likewise.
15640 (struct test_f_L_data): Likewise.
15641 (struct test_fFF_11_data): Likewise.
15642 (RM_): New macro.
15643 (RM_FE_DOWNWARD): Likewise.
15644 (RM_FE_TONEAREST): Likewise.
15645 (RM_FE_TOWARDZERO): Likewise.
15646 (RM_FE_UPWARD): Likewise.
15647 (RUN_TEST_LOOP_f_f): Update references to expected results.
15648 (RUN_TEST_LOOP_2_f): Likewise.
15649 (RUN_TEST_LOOP_fff_f): Likewise.
15650 (RUN_TEST_LOOP_c_f): Likewise.
15651 (RUN_TEST_LOOP_f_f1): Likewise.
15652 (RUN_TEST_LOOP_fF_f1): Likewise.
15653 (RUN_TEST_LOOP_fI_f1): Likewise.
15654 (RUN_TEST_LOOP_ffI_f1): Likewise.
15655 (RUN_TEST_LOOP_c_c): Likewise.
15656 (RUN_TEST_LOOP_cc_c): Likewise.
15657 (RUN_TEST_LOOP_f_i): Likewise.
15658 (RUN_TEST_LOOP_f_i_tg): Likewise.
15659 (RUN_TEST_LOOP_ff_i_tg): Likewise.
15660 (RUN_TEST_LOOP_f_b): Likewise.
15661 (RUN_TEST_LOOP_f_b_tg): Likewise.
15662 (RUN_TEST_LOOP_f_l): Likewise.
15663 (RUN_TEST_LOOP_f_L): Likewise.
15664 (RUN_TEST_LOOP_fFF_11): Likewise.
15665 * math/gen-libm-test.pl (parse_args): Output four copies of
15666 expected results for each test.
15667
67737b8f
JM
15668 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
15669 (__ASSUME_UTIMES): Remove.
15670 * sysdeps/unix/sysv/linux/tile/kernel-features.h
15671 (__ASSUME_UTIMES): Likewise.
15672
aa97dee1
JM
15673 * math/gen-auto-libm-tests.c: Update comment on output format.
15674 (output_for_one_input_case): Generate before-rounding and
15675 after-rounding information as conditions on output flags not
15676 floating-point format.
15677 * math/auto-libm-test-out: Regenerated.
15678 * math/gen-libm-test.pl (cond_value): New function.
15679 (or_cond_value): Use cond_value.
15680 (generate_testfile): Handle conditional exceptions.
15681
e6b6a857
JM
156822014-03-05 Joseph Myers <joseph@codesourcery.com>
15683
2f0a0f44
JM
15684 * math/libm-test.inc (max_valid_error): New variable.
15685 (init_max_error): Take new argument specifying whether function
15686 results are exactly determined. Set max_valid_error and bound
15687 other variables for errors based on this argument.
15688 (set_max_error): Do not record results above max_valid_error.
15689 (check_float_internal): Only accept errors of up to 0.5ulps if
15690 also at most max_valid_error.
15691 (START): Take new argument EXACT and pass it to init_max_error.
15692 (acos_test): Update call to START.
15693 (acos_test_tonearest): Likewise.
15694 (acos_test_towardzero): Likewise.
15695 (acos_test_downward): Likewise.
15696 (acos_test_upward): Likewise.
15697 (acosh_test): Likewise.
15698 (asin_test): Likewise.
15699 (asin_test_tonearest): Likewise.
15700 (asin_test_towardzero): Likewise.
15701 (asin_test_downward): Likewise.
15702 (asin_test_upward): Likewise.
15703 (asinh_test): Likewise.
15704 (atan_test): Likewise.
15705 (atanh_test): Likewise.
15706 (atan2_test): Likewise.
15707 (cabs_test): Likewise.
15708 (cacos_test): Likewise.
15709 (cacosh_test): Likewise.
15710 (carg_test): Likewise.
15711 (casin_test): Likewise.
15712 (casinh_test): Likewise.
15713 (catan_test): Likewise.
15714 (catanh_test): Likewise.
15715 (cbrt_test): Likewise.
15716 (ccos_test): Likewise.
15717 (ccosh_test): Likewise.
15718 (ceil_test): Likewise.
15719 (cexp_test): Likewise.
15720 (cimag_test): Likewise.
15721 (clog_test): Likewise.
15722 (clog10_test): Likewise.
15723 (conj_test): Likewise.
15724 (copysign_test): Likewise.
15725 (cos_test): Likewise.
15726 (cos_test_tonearest): Likewise.
15727 (cos_test_towardzero): Likewise.
15728 (cos_test_downward): Likewise.
15729 (cos_test_upward): Likewise.
15730 (cosh_test): Likewise.
15731 (cosh_test_tonearest): Likewise.
15732 (cosh_test_towardzero): Likewise.
15733 (cosh_test_downward): Likewise.
15734 (cosh_test_upward): Likewise.
15735 (cpow_test): Likewise.
15736 (cproj_test): Likewise.
15737 (creal_test): Likewise.
15738 (csin_test): Likewise.
15739 (csinh_test): Likewise.
15740 (csqrt_test): Likewise.
15741 (ctan_test): Likewise.
15742 (ctan_test_tonearest): Likewise.
15743 (ctan_test_towardzero): Likewise.
15744 (ctan_test_downward): Likewise.
15745 (ctan_test_upward): Likewise.
15746 (ctanh_test): Likewise.
15747 (ctanh_test_tonearest): Likewise.
15748 (ctanh_test_towardzero): Likewise.
15749 (ctanh_test_downward): Likewise.
15750 (ctanh_test_upward): Likewise.
15751 (erf_test): Likewise.
15752 (erfc_test): Likewise.
15753 (exp_test): Likewise.
15754 (exp_test_tonearest): Likewise.
15755 (exp_test_towardzero): Likewise.
15756 (exp_test_downward): Likewise.
15757 (exp_test_upward): Likewise.
15758 (exp10_test): Likewise.
15759 (exp10_test_tonearest): Likewise.
15760 (exp10_test_towardzero): Likewise.
15761 (exp10_test_downward): Likewise.
15762 (exp10_test_upward): Likewise.
15763 (pow10_test): Likewise.
15764 (exp2_test): Likewise.
15765 (expm1_test): Likewise.
15766 (expm1_test_tonearest): Likewise.
15767 (expm1_test_towardzero): Likewise.
15768 (expm1_test_downward): Likewise.
15769 (expm1_test_upward): Likewise.
15770 (fabs_test): Likewise.
15771 (fdim_test): Likewise.
15772 (floor_test): Likewise.
15773 (fma_test): Likewise.
15774 (fma_test_towardzero): Likewise.
15775 (fma_test_downward): Likewise.
15776 (fma_test_upward): Likewise.
15777 (fmax_test): Likewise.
15778 (fmin_test): Likewise.
15779 (fmod_test): Likewise.
15780 (fpclassify_test): Likewise.
15781 (frexp_test): Likewise.
15782 (hypot_test): Likewise.
15783 (ilogb_test): Likewise.
15784 (isfinite_test): Likewise.
15785 (finite_test): Likewise.
15786 (isgreater_test): Likewise.
15787 (isgreaterequal_test): Likewise.
15788 (isinf_test): Likewise.
15789 (isless_test): Likewise.
15790 (islessequal_test): Likewise.
15791 (islessgreater_test): Likewise.
15792 (isnan_test): Likewise.
15793 (isnormal_test): Likewise.
15794 (issignaling_test): Likewise.
15795 (isunordered_test): Likewise.
15796 (j0_test): Likewise.
15797 (j1_test): Likewise.
15798 (jn_test): Likewise.
15799 (ldexp_test): Likewise.
15800 (lgamma_test): Likewise.
15801 (gamma_test): Likewise.
15802 (lrint_test): Likewise.
15803 (lrint_test_tonearest): Likewise.
15804 (lrint_test_towardzero): Likewise.
15805 (lrint_test_downward): Likewise.
15806 (lrint_test_upward): Likewise.
15807 (llrint_test): Likewise.
15808 (llrint_test_tonearest): Likewise.
15809 (llrint_test_towardzero): Likewise.
15810 (llrint_test_downward): Likewise.
15811 (llrint_test_upward): Likewise.
15812 (log_test): Likewise.
15813 (log10_test): Likewise.
15814 (log1p_test): Likewise.
15815 (log2_test): Likewise.
15816 (logb_test): Likewise.
15817 (logb_test_downward): Likewise.
15818 (lround_test): Likewise.
15819 (llround_test): Likewise.
15820 (modf_test): Likewise.
15821 (nearbyint_test): Likewise.
15822 (nextafter_test): Likewise.
15823 (nexttoward_test): Likewise.
15824 (pow_test): Likewise.
15825 (pow_test_tonearest): Likewise.
15826 (pow_test_towardzero): Likewise.
15827 (pow_test_downward): Likewise.
15828 (pow_test_upward): Likewise.
15829 (remainder_test): Likewise.
15830 (drem_test): Likewise.
15831 (remainder_test_tonearest): Likewise.
15832 (drem_test_tonearest): Likewise.
15833 (remainder_test_towardzero): Likewise.
15834 (drem_test_towardzero): Likewise.
15835 (remainder_test_downward): Likewise.
15836 (drem_test_downward): Likewise.
15837 (remainder_test_upward): Likewise.
15838 (drem_test_upward): Likewise.
15839 (remquo_test): Likewise.
15840 (rint_test): Likewise.
15841 (rint_test_tonearest): Likewise.
15842 (rint_test_towardzero): Likewise.
15843 (rint_test_downward): Likewise.
15844 (rint_test_upward): Likewise.
15845 (round_test): Likewise.
15846 (scalb_test): Likewise.
15847 (scalbn_test): Likewise.
15848 (scalbln_test): Likewise.
15849 (signbit_test): Likewise.
15850 (sin_test): Likewise.
15851 (sin_test_tonearest): Likewise.
15852 (sin_test_towardzero): Likewise.
15853 (sin_test_downward): Likewise.
15854 (sin_test_upward): Likewise.
15855 (sincos_test): Likewise.
15856 (sinh_test): Likewise.
15857 (sinh_test_tonearest): Likewise.
15858 (sinh_test_towardzero): Likewise.
15859 (sinh_test_downward): Likewise.
15860 (sinh_test_upward): Likewise.
15861 (sqrt_test): Likewise.
15862 (sqrt_test_tonearest): Likewise.
15863 (sqrt_test_towardzero): Likewise.
15864 (sqrt_test_downward): Likewise.
15865 (sqrt_test_upward): Likewise.
15866 (tan_test): Likewise.
15867 (tan_test_tonearest): Likewise.
15868 (tan_test_towardzero): Likewise.
15869 (tan_test_downward): Likewise.
15870 (tan_test_upward): Likewise.
15871 (tanh_test): Likewise.
15872 (tgamma_test): Likewise.
15873 (trunc_test): Likewise.
15874 (y0_test): Likewise.
15875 (y1_test): Likewise.
15876 (yn_test): Likewise.
15877 (significand_test): Likewise.
15878
e6b6a857
JM
15879 * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
15880 individual tests in comment.
15881 (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
15882 (prev_max_error): New variable.
15883 (prev_real_max_error): Likewise.
15884 (prev_imag_max_error): Likewise.
15885 (compare_ulp_data): Don't refer to test names in comment.
15886 (find_test_ulps): Remove function.
15887 (find_function_ulps): Likewise.
15888 (find_complex_function_ulps): Likewise.
15889 (init_max_error): Take function name as argument. Look up ulps
15890 for that function.
15891 (print_ulps): Remove function.
15892 (print_max_error): Use prev_max_error instead of calling
15893 find_function_ulps.
15894 (print_complex_max_error): Use prev_real_max_error and
15895 prev_imag_max_error instead of calling find_complex_function_ulps.
15896 (check_float_internal): Take max_ulp parameter instead of calling
15897 find_test_ulps. Don't call print_ulps.
15898 (check_float): Update call to check_float_internal.
15899 (check_complex): Update calls to check_float_internal.
15900 (START): Pass argument to init_max_error.
15901 * math/gen-libm-test.pl (%results): Don't include "kind"
15902 information.
15903 (parse_ulps): Don't handle ulps of individual tests.
15904 (print_ulps_file): Likewise.
15905 (output_ulps): Likewise.
15906 * math/README.libm-test: Update.
15907 * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
15908 individual tests.
15909 * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
15910 * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
15911 * sysdeps/arm/libm-test-ulps: Likewise.
15912 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
15913 * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
15914 * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
15915 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
15916 * sysdeps/microblaze/libm-test-ulps: Likewise.
15917 * sysdeps/mips/mips32/libm-test-ulps: Likewise.
15918 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
15919 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
15920 * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
15921 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
15922 * sysdeps/sh/libm-test-ulps: Likewise.
15923 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
15924 * sysdeps/tile/libm-test-ulps: Likewise.
15925 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15926
45adef3c
JM
159272014-03-04 Joseph Myers <joseph@codesourcery.com>
15928
15929 * math/libm-test.inc (print_complex_max_error): Check separately
15930 whether real and imaginary errors are within allowed range and
15931 pass 0 to print_complex_function_ulps instead of value within
15932 allowed range.
15933
000232b9
SP
159342014-03-04 Siddhesh Poyarekar <siddhesh@redhat.com>
15935
d4b17258
SP
15936 * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
15937 formatting.
15938 (get_handles_fopen): Likewise.
15939 (do_write_test): Likewise.
15940
091eff71
SP
15941 * libio/wfileops.c (do_ftell_wide): Fix up formatting.
15942
fa3cd248
SP
15943 * libio/fileops.c (do_ftell): Use cached offset when
15944 available.
15945 * libio/iofwide.c (do_ftell_wide): Likewise.
15946 * libio/iofdopen.c (_IO_new_fdopen): Don't use
15947 _IO_file_attach.
15948 * libio/wfileops.c (_IO_fwide): Don't cache offset.
15949
000232b9
SP
15950 [BZ #16532]
15951 * libio/libioP.h (get_file_offset): New function.
15952 * libio/fileops.c (get_file_offset): Likewise.
15953 (do_ftell): Likewise.
15954 (_IO_new_file_seekoff): Split out ftell logic.
15955 * libio/wfileops.c (do_ftell_wide): Likewise.
15956 (_IO_wfile_seekoff): Split out ftell logic.
15957 * libio/tst-ftell-active-handler.c: New test case.
15958 * libio/Makefile (tests): Add it.
15959
116f4d1a
RM
159602014-03-03 Roland McGrath <roland@hack.frob.com>
15961
15962 * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
15963 * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
15964
532a6035
SP
159652014-03-03 Siddhesh Poyarekar <siddhesh@redhat.com>
15966
15967 [BZ #16639]
15968 * nscd/connections.c (nscd_init): Call do_exit.
15969 (start_threads): Call do_exit and notify_parent.
15970 (begin_drop_privileges): Call do_exit.
15971 (finish_drop_privileges): Likewise.
15972 * nscd/selinux.c (preserve_capabilities): Likewise.
15973 (install_real_capabilities): Likewise.
15974 (nscd_selinux_enabled): Likewise.
15975 (avc_create_thread): Likewise.
15976 (avc_alloc_lock): Likewise.
15977 (nscd_avc_init): Likewise.
15978 * nscd/nscd.c (parent_fd): New static variable.
15979 (main): Create a pipe between parent and child processes.
15980 Skip closing parent_fd.
15981 (monitor_child): New function.
15982 (do_exit): Likewise.
15983 (notify_parent): Likewise.
15984 * nscd/nscd.h (notify_parent): Likewise.
15985 (do_exit): Likewise.
15986
d6285c9f
CD
159872014-03-03 Carlos O'Donell <carlos@redhat.com>
15988
15989 * malloc/malloc.c (__libc_calloc): Revert last change.
15990
2b85d2a0
AZ
159912014-03-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15992
15993 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15994
c7debbdf
RS
159952014-03-03 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
15996
15997 * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
15998 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
15999 implementation.
16000 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
16001 (__libc_ifunc_impl_list): Likewise.
16002 * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
16003 * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
16004 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
16005 * string/strrchr.c: Define STRRCHR.
16006
235eed86
OB
160072014-02-28 Ondřej Bílka <neleai@seznam.cz>
16008
16009 * benchtest/bench-strtok.c (simple_strtok): Delete.
16010 (strtok_string): Use as benchmark.
16011 * string/strtok (STRTOK): New macro.
16012
8e25d1e7
CD
160132014-02-28 Carlos O'Donell <carlos@redhat.com>
16014
ef563f92
CD
16015 * manual/threads.texi: Add header and standard comments to all
16016 functions.
16017
8e25d1e7
CD
16018 * elf/dl-lookup.c (check_match): New function.
16019 (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
16020 (do_lookup_x): Remove nested function check_match. Use non-nested
16021 function check_match.
16022
ff71cc37
RM
160232014-02-28 Roland McGrath <roland@hack.frob.com>
16024
f08e9a26
RM
16025 * csu/Makefile (generated, before-compile): Use += rather than =.
16026 * catgets/Makefile (generated, generated-dirs): Likewise.
16027 * debug/Makefile (generated): Likewise.
16028 * dlfcn/Makefile (generated): Likewise.
16029 * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
16030 * iconvdata/Makefile (before-compile, generated): Likewise.
16031 * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
16032 * libio/Makefile (generated): Likewise.
16033 * malloc/Makefile (generated): Likewise.
16034 * manual/Makefile (generated, generated-dirs): Likewise.
16035 * misc/Makefile (generated): Likewise.
16036 * posix/Makefile (generated): Likewise.
16037 * resolv/Makefile (generated): Likewise.
16038 * sunrpc/Makefile (generated, generated-dirs): Likewise.
16039 * timezone/Makefile (generated, generated-dirs): Likewise.
16040
ff71cc37
RM
16041 * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
16042
fe13a20c
AZ
160432014-02-27 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16044
57f41c40
AS
16045 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
16046 power8 implementation.
16047 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
16048 file: POWER8 llround ifunc implementation.
16049 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
16050 (__lllround): Add POWER8 implementation.
fe13a20c
AZ
16051 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
16052 POWER8 llround implementation.
16053
57f41c40
AS
16054 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
16055 power8 implementation.
16056 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
16057 file: POWER8 llrint ifunc implementation.
16058 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
16059 Add POWER8 implementation.
1ad8950a
AZ
16060 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
16061 POWER8 llrint implementation.
16062
57f41c40
AS
16063 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
16064 power8 implementation.
16065 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
16066 file: POWER8 finite ifunc implementation.
16067 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
16068 Add POWER8 implementation.
cac626d6
AZ
16069 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
16070 Likewise.
16071 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
16072 POWER8 finite implementation.
16073 * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
16074
57f41c40
AS
16075 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
16076 power8 implementation.
16077 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
16078 file: POWER8 isinf ifunc implementation.
4393fc11
AZ
16079 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
16080 POWER8 implementation.
16081 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
16082 Likewise.
57f41c40
AS
16083 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
16084 isinf implementation.
4393fc11
AZ
16085 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
16086
57f41c40
AS
16087 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
16088 (INIT_ARCH): Add hwcap2 initialization.
16089 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
16090 power8 implementation.
16091 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
16092 file: POWER8 isnan ifunc implementation.
487972ae
AZ
16093 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
16094 POWER8 implementation.
16095 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
16096 Likewise.
57f41c40
AS
16097 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
16098 isnan implementation.
487972ae
AZ
16099 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
16100
7d92b787
JY
161012014-02-27 Joey Ye <joey.ye@arm.com>
16102
16103 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
16104 (_FP_NANFRAC_Q): Set to zero.
16105
1cadc858
SP
161062014-02-27 Siddhesh Poyarekar <siddhesh@redhat.com>
16107
16108 [BZ #16623]
16109 * math/auto-libm-test-in: New test inputs.
16110 * math/auto-libm-test-out: Regenerate.
16111 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
16112 and DA.
16113 (__cos): Likewise.
16114 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
16115
f8c17e79
JM
161162014-02-27 Joseph Myers <joseph@codesourcery.com>
16117
16118 * scripts/evaluate-test.sh: Take new argument indicating whether
16119 failure is expected.
16120 * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
16121 indicating whether failure is expected.
16122 * conform/Makefile (test-xfail-run-conformtest): New variable.
16123 ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
16124 level.
16125 * posix/Makefile (test-xfail-annexc): New variable.
16126 ($(objpfx)annexc.out): Don't expect to fail at makefile level.
16127
a5f891ac
JM
161282014-02-26 Joseph Myers <joseph@codesourcery.com>
16129
16130 * argp/Makefile: Include Makeconfig immediately after defining
16131 subdir.
16132 * assert/Makefile: Likewise.
16133 * benchtests/Makefile: Likewise.
16134 * catgets/Makefile: Likewise.
16135 * conform/Makefile: Likewise.
16136 * crypt/Makefile: Likewise.
16137 * csu/Makefile: Likewise.
16138 (all): Remove target.
16139 * ctype/Makefile: Include Makeconfig immediately after defining
16140 subdir.
16141 * debug/Makefile: Likewise.
16142 * dirent/Makefile: Likewise.
16143 * dlfcn/Makefile: Likewise.
16144 * gmon/Makefile: Likewise.
16145 * gnulib/Makefile: Likewise.
16146 * grp/Makefile: Likewise.
16147 * gshadow/Makefile: Likewise.
16148 * hesiod/Makefile: Likewise.
16149 * hurd/Makefile: Likewise.
16150 (all): Remove target.
16151 * iconvdata/Makefile: Include Makeconfig immediately after
16152 defining subdir.
16153 * inet/Makefile: Likewise.
16154 * intl/Makefile: Likewise.
16155 * io/Makefile: Likewise.
16156 * libio/Makefile: Likewise.
16157 (all): Remove target.
16158 * locale/Makefile: Include Makeconfig immediately after defining
16159 subdir.
16160 * login/Makefile: Likewise.
16161 * mach/Makefile: Likewise.
16162 (all): Remove target.
16163 * malloc/Makefile: Include Makeconfig immediately after defining
16164 subdir.
16165 (all): Remove target.
16166 * manual/Makefile: Include Makeconfig immediately after defining
16167 subdir.
16168 * math/Makefile: Likewise.
16169 * misc/Makefile: Likewise.
16170 * nis/Makefile: Likewise.
16171 * nss/Makefile: Likewise.
16172 * po/Makefile: Likewise.
16173 (all): Remove target.
16174 * posix/Makefile: Include Makeconfig immediately after defining
16175 subdir.
16176 * pwd/Makefile: Likewise.
16177 * resolv/Makefile: Likewise.
16178 * resource/Makefile: Likewise.
16179 * rt/Makefile: Likewise.
16180 * setjmp/Makefile: Likewise.
16181 * shadow/Makefile: Likewise.
16182 * signal/Makefile: Likewise.
16183 * socket/Makefile: Likewise.
16184 * soft-fp/Makefile: Likewise.
16185 * stdio-common/Makefile: Likewise.
16186 * stdlib/Makefile: Likewise.
16187 * streams/Makefile: Likewise.
16188 * string/Makefile: Likewise.
16189 * sunrpc/Makefile: Likewise.
16190 (all): Remove target.
16191 * sysvipc/Makefile: Include Makeconfig immediately after defining
16192 subdir.
16193 * termios/Makefile: Likewise.
16194 * time/Makefile: Likewise.
16195 * timezone/Makefile: Likewise.
16196 (all): Remove target.
16197 * wcsmbs/Makefile: Include Makeconfig immediately after defining
16198 subdir.
16199 * wctype/Makefile: Likewise.
16200
5b456e9d
SE
162012014-02-26 Steve Ellcey <sellcey@mips.com>
16202
16203 * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
16204 (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
16205 (libc_feholdexcept_setround_mips): Ditto.
16206 (libc_feholdsetround): New.
16207 (libc_feholdsetroundf): New.
16208 (libc_feholdsetroundl): New.
16209 (libc_feupdateenv_test_mips): New.
16210 (libc_feupdateenv_test): New.
16211 (libc_feupdateenv_testf): New.
16212 (libc_feupdateenv_testl): New.
16213 (libc_feresetround): New.
16214 (libc_feresetroundf): New.
16215 (libc_feresetroundl): New.
16216 (libc_fetestexcept_mips): New.
16217 (libc_fetestexcept): New.
16218 (libc_fetestexceptf): New.
16219 (libc_fetestexceptl): New.
16220 (HAVE_RM_CTX): New.
16221 (libc_feholdexcept_setround_mips_ctx): New.
16222 (libc_feholdexcept_setround_ctx): New.
16223 (libc_feholdexcept_setroundf_ctx): New.
16224 (libc_feholdexcept_setroundl_ctx): New.
16225 (libc_fesetenv_mips_ctx): New.
16226 (libc_fesetenv_ctx): New.
16227 (libc_fesetenv_ctxf): New.
16228 (libc_fesetenv_ctxl): New.
16229 (libc_feupdateenv_mips_ctx): New.
16230 (libc_feupdateenv_ctx): New.
16231 (libc_feupdateenvf_ctx): New.
16232 (libc_feupdateenvl_ctx): New.
16233 (libc_feholdsetround_mips_ctx): New.
16234 (libc_feholdsetround_ctx): New.
16235 (libc_feholdsetroundf_ctx): New.
16236 (libc_feholdsetroundl_ctx): New.
16237 (libc_feresetround_mips_ctx): New.
16238 (libc_feresetround_ctx): New.
16239 (libc_feresetroundf_ctx): New.
16240 (libc_feresetroundl_ctx): New.
16241
085d0e35
CD
162422014-02-26 Carlos O'Donell <carlos@redhat.com>
16243
f067bf1f
CD
16244 * manual/ipc.texi (Semaphores): Use @Theglibc{}.
16245
085d0e35
CD
16246 * manual/ipc.texi: New file.
16247 * manual/Makefile (chapters): Add ipc.
16248 * manual/job.texi: Add "Inter-Process Communication" to next.
16249 * manual/process.texi: Add "Inter-Process Communication" to prev.
16250
86e58c08
AZ
162512014-02-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16252
16253 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16254
4248f0da
OB
162552014-02-26 Ondřej Bílka <neleai@seznam.cz>
16256
16257 * malloc/malloc.c (__libc_calloc): Simplify implementation.
16258
cf822e3c
OB
16259 * manual/arith.texi: Fix spaces after sentences.
16260 * manual/charset.texi: Likewise.
16261 * manual/errno.texi: Likewise.
16262 * manual/install.texi: Likewise.
16263 * manual/llio.texi: Likewise.
16264 * manual/locale.texi: Likewise.
16265 * manual/maint.texi: Likewise.
16266 * manual/math.texi: Likewise.
16267 * manual/memory.texi: Likewise.
16268 * manual/message.texi: Likewise.
16269 * manual/probes.texi: Likewise.
16270 * manual/resource.texi: Likewise.
16271 * manual/signal.texi: Likewise.
16272 * manual/socket.texi: Likewise.
16273 * manual/stdio.texi: Likewise.
16274 * manual/string.texi: Likewise.
16275 * manual/time.texi: Likewise.
16276 * manual/users.texi: Likewise.
16277
ade40b10
CD
162782014-02-25 Carlos O'Donell <carlos@redhat.com>
16279
16280 [BZ #16632]
16281 * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
16282 _DEFAULT_SOURCE is defined.
16283
d0503676
CD
162842014-02-25 Ulrich Drepper <drepper@gmail.com>
16285 Carlos O'Donell <carlos@redhat.com>
16286
16287 [BZ #16613]
16288 * elf/dl-tls.c (_dl_count_modids): New function.
16289 * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
16290 * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
16291 audit library and increment generation counter.
16292 (_dl_allocate_tls_init): Add assertion to check TLS generation count.
16293 * elf/tst-audit9.c: New file.
16294 * elf/tst-auditmod9a.c: New file.
16295 * elf/tst-auditmod9b.c: New file.
16296 * elf/Makefile: Add rules to build and run tst-audit9.
16297
4cbf380c
FW
162982014-02-25 Florian Weimer <fweimer@redhat.com>
16299
16300 [BZ #15347]
16301 * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
16302
80a56cc3
WN
163032014-02-25 Will Newton <will.newton@linaro.org>
16304
16305 * sysdeps/arm/__longjmp.S: Include stap-probe.h.
16306 (__longjmp): Restore sp and lr before restoring callee
16307 saved registers. Add longjmp and longjmp_target
16308 SystemTap probe point.
16309 * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
16310 * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
16311 Define to zero to match jmpbuf layout.
16312 * sysdeps/arm/setjmp.S: Include stap-probe.h.
16313 (__sigsetjmp): Save sp and lr before saving callee
16314 saved registers. Add setjmp SystemTap probe point.
16315
3ea0f74e
SL
163162014-02-24 Stefan Liebler <stli@linux.vnet.ibm.com>
16317
16318 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
16319
b04acb26
AS
163202014-02-24 Andreas Schwab <schwab@suse.de>
16321
16322 [BZ #15804]
16323 * elf/pldd.c (wait_for_ptrace_stop): New function.
16324 (main): Call it after attaching.
16325
098ad55c
RM
163262014-02-22 Roland McGrath <roland@hack.frob.com>
16327
d4ec6ae1
RM
16328 * Makerules ($(common-objpfx)Versions.v.i): No longer depend
16329 on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
16330 Versions files is now verboten.
16331 * hurd/Versions (libc: GLIBC_2.0):
16332 Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
16333 (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
16334 [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
16335 * mach/Versions: Likewise.
16336
098ad55c
RM
16337 * csu/Versions: Remove unused %include.
16338 * resolv/Versions: Likewise.
16339
acd7f096
JM
163402014-02-21 Joseph Myers <joseph@codesourcery.com>
16341
f0881698
JM
16342 * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
16343 ($(objpfx)check-local-headers.out): Likewise.
16344 ($(objpfx)begin-end-check.out): Likewise.
16345 * Makerules (check-abi-%.out): Likewise.
16346 * catgets/Makefile ($(objpfx)test1.cat): Likewise.
16347 ($(objpfx)test2.cat): Likewise.
16348 ($(objpfx)de/libc.cat): Likewise.
16349 ($(objpfx)test-gencat.out): Likewise.
16350 * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
16351 * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
16352 ($(objpfx)noload-mem): Likewise.
16353 ($(objpfx)tst-pathopt.out): Likewise.
16354 ($(objpfx)tst-rtld-load-self.out): Likewise.
16355 ($(objpfx)tst-array1-cmp.out): Likewise.
16356 ($(objpfx)tst-array1-static-cmp.out): Likewise.
16357 ($(objpfx)tst-array2-cmp.out): Likewise.
16358 ($(objpfx)tst-array3-cmp.out): Likewise.
16359 ($(objpfx)tst-array4-cmp.out): Likewise.
16360 ($(objpfx)tst-array5-cmp.out): Likewise.
16361 ($(objpfx)tst-array5-static-cmp.out): Likewise.
16362 ($(objpfx)check-textrel.out): Likewise.
16363 ($(objpfx)check-execstack.out): Likewise.
16364 ($(objpfx)check-localplt.out): Likewise.
16365 ($(objpfx)order2-cmp.out): Likewise.
16366 ($(objpfx)tst-leaks1-mem): Likewise.
16367 ($(objpfx)tst-leaks1-static-mem): Likewise.
16368 ($(objpfx)tst-initorder-cmp.out): Likewise.
16369 ($(objpfx)tst-initorder2-cmp.out): Likewise.
16370 ($(objpfx)tst-unused-dep.out): Likewise.
16371 ($(objpfx)tst-unused-dep-cmp.out): Likewise.
16372 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
16373 * iconv/Makefile (test-iconvconfig): Likewise.
16374 * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
16375 ($(objpfx)iconv-test.out): Likewise.
16376 ($(objpfx)tst-tables.out): Likewise.
16377 * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
16378 ($(objpfx)tst-gettext.out): Likewise.
16379 ($(objpfx)tst-translit.out): Likewise.
16380 ($(objpfx)tst-gettext2.out): Likewise.
16381 ($(objpfx)tst-gettext4.out): Likewise.
16382 ($(objpfx)tst-gettext6.out): Likewise.
16383 * io/Makefile ($(objpfx)ftwtest.out): Likewise.
16384 * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
16385 ($(objpfx)tst-fopenloc-cmp.out): Likewise.
16386 ($(objpfx)tst-fopenloc-mem.out): Likewise.
16387 * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
16388 * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
16389 * posix/Makefile ($(objpfx)globtest.out): Likewise.
16390 ($(objpfx)wordexp-tst.out): Likewise.
16391 ($(objpfx)annexc.out): Likewise.
16392 ($(objpfx)tst-fnmatch-mem): Likewise.
16393 ($(objpfx)bug-regex2-mem): Likewise.
16394 ($(objpfx)bug-regex14-mem): Likewise.
16395 ($(objpfx)bug-regex21-mem): Likewise.
16396 ($(objpfx)bug-regex31-mem): Likewise.
16397 ($(objpfx)tst-vfork3-mem): Likewise.
16398 ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
16399 ($(objpfx)tst-pcre-mem): Likewise.
16400 ($(objpfx)tst-boost-mem): Likewise.
16401 ($(objpfx)tst-getconf.out): Likewise.
16402 ($(objpfx)bug-ga2-mem): Likewise.
16403 ($(objpfx)bug-glob2-mem): Likewise.
16404 * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
16405 ($(objpfx)mtrace-tst-leaks2): Likewise.
16406 * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
16407 ($(objpfx)tst-printf.out): Likewise.
16408 ($(objpfx)tst-setvbuf1.out): Likewise.
16409 ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
16410 * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
16411 ($(objpfx)tst-fmtmsg.out): Likewise.
16412 * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
16413 * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
16414
acd7f096
JM
16415 * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
16416 * bits/sigaction.h [__USE_MISC]: Likewise.
16417 * bits/waitstatus.h: Update #endif comments.
16418 * ctype/ctype.h: Likewise.
16419 * dirent/dirent.h: Likewise.
16420 [__USE_MISC]: Remove redundant conditionals.
16421 * grp/grp.h: Update #endif comments.
16422 [__USE_GNU]: Remove redundant conditionals.
16423 [__USE_MISC]: Likewise.
16424 * inet/netinet/in.h [__USE_GNU]: Likewise.
16425 * io/sys/stat.h [__USE_MISC]: Likewise.
16426 * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
16427 * libio/bits/stdio.h: Update #endif comments.
16428 [__USE_MISC]: Remove redundant conditionals.
16429 * libio/bits/stdio2.h [__USE_MISC]: Likewise.
16430 * libio/stdio.h: Update #endif comments.
16431 [__USE_MISC]: Remove redundant conditionals.
16432 * math/bits/math-finite.h [__USE_MISC]: Likewise.
16433 * math/bits/mathcalls.h [__USE_MISC]: Likewise.
16434 * math/math.h: Update #else and #endif comments.
16435 [__USE_MISC]: Remove redundant conditionals.
16436 * misc/sys/uio.h: Update #endif comments.
16437 * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
16438 * posix/glob.h [__USE_MISC]: Likewise.
16439 * posix/sys/types.h: Update #endif comments.
16440 [__USE_MISC]: Remove redundant conditionals.
16441 * posix/sys/wait.h: Update #endif comments.
16442 [__USE_MISC]: Remove redundant conditionals.
16443 * posix/unistd.h: Update #endif comments.
16444 [__USE_MISC]: Remove redundant conditionals.
16445 * pwd/pwd.h [__USE_GNU]: Likewise.
16446 [__USE_MISC]: Likewise.
16447 * resolv/netdb.h [__USE_GNU]: Likewise.
16448 * signal/signal.h: Update #endif comments.
16449 [__USE_MISC]: Remove redundant conditionals.
16450 * stdlib/stdlib.h: Update #else and #endif comments.
16451 [__USE_MISC]: Remove redundant conditionals.
16452 [__USE_GNU]: Likewise.
16453 * string/bits/string2.h [__USE_MISC]: Likewise.
16454 * string/string.h: Update #endif comments.
16455 [__USE_MISC]: Remove redundant conditionals.
16456 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
16457 Likewise.
16458 * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
16459 * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
16460 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
16461 Likewise.
16462 * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
16463 Likewise.
16464 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
16465 comments.
16466 [__USE_MISC]: Remove redundant conditionals.
16467 * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
16468 * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
16469 * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
16470 * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
16471 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
16472 Likewise.
16473 * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
16474 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
16475 Likewise.
16476 * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
16477 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
16478 Likewise.
16479 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
16480 Likewise.
16481 * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
16482 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
16483 Likewise.
16484 * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
16485 Likewise.
16486 * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
16487 * sysdeps/x86/bits/string.h: Update #endif comments.
16488 * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
16489 conditionals.
16490 * time/sys/time.h: Update #endif comments.
16491 * time/time.h: Likewise.
16492 [__USE_MISC]: Remove redundant conditionals.
16493
a5d82e4e
YG
164942014-02-21 Yury Gribov <y.gribov@samsung.com>
16495
16496 [BZ #16600]
16497 * sysdeps/arm/libm-test-ulps: Update for VFPv4.
16498
9a80491d
AS
164992014-02-21 Andreas Schwab <schwab@linux-m68k.org>
16500
16501 * Versions.def (librt): Add GLIBC_2.17.
16502
105fa381
AC
165032014-02-21 Adam Conrad <adconrad@0c3.net>
16504
16505 * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
16506 synonym for _SYS_AUXV_H to allow direct inclusion.
16507 * sysdeps/sparc/bits/hwcap.h: Likewise.
16508 * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
16509 _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
16510 * sysdeps/sparc/sysdep.h: Likewise.
16511
b8cd1c4e
SP
165122014-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
16513
16514 * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
16515
bd939d23
RS
165162014-02-21 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
16517
16518 * benchtests/bench-strrchr.c: Print length instead of position.
16519
5d7b57ca
JM
165202014-02-20 Joseph Myers <joseph@codesourcery.com>
16521
bc688c10
JM
16522 [BZ #16611]
16523 * sysdeps/unix/sysv/linux/kernel-features.h
16524 [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
16525 (__ASSUME_SENDMMSG_SOCKETCALL): Define.
16526 [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
16527 __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
16528 Likewise.
16529 [__i386__ || __powerpc__ || __sh__ || __sparc__]
16530 (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16531 [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
16532 (__ASSUME_SENDMMSG): Define instead of using previous
16533 [__LINUX_KERNEL_VERSION >= 0x020627] condition.
16534 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16535 (__ASSUME_SENDMMSG_SYSCALL): Define.
16536 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16537 [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
16538 Likewise.
16539 * sysdeps/unix/sysv/linux/arm/kernel-features.h
16540 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16541 Likewise.
16542 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16543 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16544 Likewise.
16545 * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
16546 && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
16547 !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
16548 [__ASSUME_SENDMMSG]: Change conditionals to
16549 [__ASSUME_SENDMMSG_SOCKETCALL].
16550 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16551 [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
16552 Define.
16553 * sysdeps/unix/sysv/linux/mips/kernel-features.h
16554 [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
16555 Likewise.
16556 * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
16557 !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
16558 !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
16559 [!__ASSUME_SENDMMSG]: Change conditional to
16560 [!__ASSUME_SENDMMSG_SOCKETCALL].
16561 * sysdeps/unix/sysv/linux/tile/kernel-features.h
16562 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
16563 Define.
16564
0e31b18c
JM
16565 [BZ #16610]
16566 * sysdeps/unix/sysv/linux/kernel-features.h
16567 [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
16568 (__ASSUME_RECVMMSG_SOCKETCALL): Define.
16569 [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
16570 __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
16571 || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
16572 [__i386__ || __sparc__]
16573 (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16574 [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
16575 (__ASSUME_RECVMMSG): Define instead of using previous
16576 [__LINUX_KERNEL_VERSION >= 0x020621] condition.
16577 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16578 (__ASSUME_RECVMMSG_SYSCALL): Define.
16579 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16580 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16581 Likewise.
16582 * sysdeps/unix/sysv/linux/arm/kernel-features.h
16583 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16584 Likewise.
16585 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16586 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16587 Likewise.
16588 * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
16589 && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
16590 !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
16591 [__ASSUME_RECVMMSG]: Change condition to
16592 [__ASSUME_RECVMMSG_SOCKETCALL].
16593 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16594 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16595 Define.
16596 (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
16597 * sysdeps/unix/sysv/linux/mips/kernel-features.h
16598 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
16599 Likewise.
16600 * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
16601 !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
16602 !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
16603 [!__ASSUME_RECVMMSG]: Change condition to
16604 [!__ASSUME_RECVMMSG_SOCKETCALL].
16605 * sysdeps/unix/sysv/linux/tile/kernel-features.h
16606 (__ASSUME_RECVMMSG_SYSCALL): Define.
16607
dd481ccf
JM
16608 [BZ #16609]
16609 * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
16610 __powerpc__ || __s390__ || __sh__ || __sparc__]
16611 (__ASSUME_SOCKETCALL): Define.
16612 [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
16613 (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
16614 [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
16615 || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
16616 __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
16617 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
16618 [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
16619 (__ASSUME_ACCEPT4): Define instead of using previous
16620 [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
16621 __powerpc__ || __sparc__ || __s390__)] condition.
16622 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
16623 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
16624 * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
16625 !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
16626 !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
16627 [!__ASSUME_ACCEPT4]: Change condition to
16628 [!__ASSUME_ACCEPT4_SOCKETCALL].
16629 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
16630 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL. Correct
16631 condition to [__LINUX_KERNEL_VERSION >= 0x030200].
16632 * sysdeps/unix/sysv/linux/arm/kernel-features.h
16633 [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
16634 __ASSUME_ACCEPT4_SYSCALL.
16635 * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
16636 Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
16637 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
16638 [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
16639 __ASSUME_ACCEPT4_SYSCALL.
16640 * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
16641 && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
16642 !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
16643 [__ASSUME_ACCEPT4]: Change condition to
16644 [__ASSUME_ACCEPT4_SOCKETCALL].
16645 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
16646 (__ASSUME_SOCKETCALL): Define.
16647 [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
16648 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16649 (__ASSUME_SOCKETCALL): Define.
16650 (__ASSUME_ACCEPT4): Remove.
16651 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
16652 Define.
16653 * sysdeps/unix/sysv/linux/mips/kernel-features.h
16654 [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
16655 Likewise.
16656 * sysdeps/unix/sysv/linux/tile/kernel-features.h
16657 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
16658
5d7b57ca
JM
16659 * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
16660 macro.
16661 (HWCAP_ARM_LPAE): Likewise.
16662 (HWCAP_ARM_EVTSTRM): Likewise.
16663 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
16664 Add vpfd32, lpae and evtstrm.
16665 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
16666 Increase to 22.
16667
63689d61
JM
166682014-02-19 Joseph Myers <joseph@codesourcery.com>
16669
16670 * math/auto-libm-test-in: Add tests of clog10.
16671 * math/auto-libm-test-out: Regenerated.
16672 * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
16673 * sysdeps/i386/fpu/libm-test-ulps: Update.
16674 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16675
ab09bf61
AS
166762014-02-18 Andreas Schwab <schwab@suse.de>
16677
16678 [BZ #16574]
16679 * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
16680 Store non-zero if the second buffer was newly allocated.
16681 (send_dg): Likewise.
16682 (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
16683 to send_vc and send_dg.
16684 (res_nsend): Pass NULL for ansp2_malloced.
16685 * resolv/res_query.c (__libc_res_nquery): Add parameter
16686 answerp2_malloced and pass it down to __libc_res_nsend.
16687 (res_nquery): Pass additional NULL to __libc_res_nquery.
16688 (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
16689 down to __libc_res_nquery and __libc_res_nquerydomain. Deallocate
16690 second answer buffer if answerp2_malloced was set.
16691 (res_nsearch): Pass additional NULL to __libc_res_nsearch.
16692 (__libc_res_nquerydomain): Add parameter
16693 answerp2_malloced and pass it down to __libc_res_nquery.
16694 (res_nquerydomain): Pass additional NULL to
16695 __libc_res_nquerydomain.
16696 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
16697 additional NULL to __libc_res_nsend and __libc_res_nquery.
16698 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
16699 additional NULL to __libc_res_nsearch.
16700 (_nss_dns_gethostbyname4_r): Revert last change. Use new
16701 parameter of __libc_res_nsearch to check for separately allocated
16702 second buffer.
16703 (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
16704 __libc_res_nquery.
16705 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
16706 additional NULL to __libc_res_nquery.
16707 * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
16708 __libc_res_nsearch.
16709 (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
16710 * include/resolv.h: Update prototypes of __libc_res_nquery,
16711 __libc_res_nsearch, __libc_res_nsend.
16712
a4fb7861
JM
167132014-02-18 Joseph Myers <joseph@codesourcery.com>
16714
c6af2d89
JM
16715 * math/auto-libm-test-in: Add tests of fma.
16716 * math/auto-libm-test-out: Regenerated.
16717 * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
16718 (fma_towardzero_test_data): Likewise.
16719 (fma_downward_test_data): Likewise.
16720 (fma_upward_test_data): Likewise.
16721 * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
16722 mpc_mode.
16723 (rounding_modes): Add values for new field.
16724 (func_calc_method): Add value mpfr_fff_f.
16725 (func_calc_desc): Add mpfr_fff_f union field.
16726 (test_function): Add field exact_args.
16727 (FUNC): Add macro argument EXACT_ARGS.
16728 (FUNC_mpfr_f_f): Update call to FUNC.
16729 (FUNC_mpfr_f_f): Likewise.
16730 (FUNC_mpfr_ff_f): Likewise.
16731 (FUNC_mpfr_if_f): Likewise.
16732 (FUNC_mpc_c_f): Likewise.
16733 (FUNC_mpc_c_c): Likewise.
16734 (test_functions): Add fma. Update calls to FUNC.
16735 (handle_input_arg): Add argument exact_args.
16736 (add_test): Update call to handle_input_arg.
16737 (calc_generic_results): Add argument mode. Handle mpfr_fff_f.
16738 (output_for_one_input_case): Update call to calc_generic_results.
16739 Recalculate exact zero results in each rounding mode.
16740
a4fb7861
JM
16741 * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
16742 non-negative before setting low bit.
16743 * math/auto-libm-test-in: Mark one asin test possibly having
16744 spurious underflow.
16745 * math/auto-libm-test-out: Regenerated.
16746 * sysdeps/i386/fpu/libm-test-ulps: Update.
16747 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16748
ef114eaf
DH
167492014-02-17 David Holsgrove <david.holsgrove@xilinx.com>
16750
2b7f4f2c
SP
16751 * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
16752 * sysdeps/unix/sysv/linux/microblaze: Move directory from
16753 ports/sysdeps/unix/sysv/linux/microblaze.
ef114eaf
DH
16754 * README: Add missing listing for microblaze*-*-linux-gnu.
16755
8125aedc
AM
167562014-02-16 Ondřej Bílka <neleai@seznam.cz>
16757
16758 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
16759 duplicate code
16760
c70a4b1d
MF
167612014-02-16 Mike Frysinger <vapier@gentoo.org>
16762
16763 * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
16764 * sysdeps/unix/sysv/linux/ia64: Move directory from
16765 ports/sysdeps/unix/sysv/linux/ia64.
16766 * README: Update listing for ia64-*-linux-gnu.
16767
591aeaf7
TD
167682014-02-14 Tomas Dohnalek <tdohnale@redhat.com>
16769 Joseph Myers <joseph@codesourcery.com>
16770
16771 * Makeconfig (test-name): New variable.
16772 (evaluate-test): Likewise.
16773 * Makerules (do-test-clean): Remove .test-result files.
16774 (common-mostlyclean): Likewise.
16775 * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
16776 * scripts/evaluate-test.sh: New file.
16777
6e89caf1
JM
167782014-02-14 Joseph Myers <joseph@codesourcery.com>
16779
7f98f180
JM
16780 * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
16781 separate $(objpfx)tst-fopenloc-cmp.out and
16782 $(objpfx)tst-fopenloc-mem.out targets.
16783 (tests): Update dependencies.
16784 * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
16785 (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
16786 tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
16787 (tst-rxspencer-no-utf8-ARGS): New variable.
16788 (tst-rxspencer-no-utf8-ENV): Likewise.
16789 (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
16790 instead of $(objpfx)tst-rxspencer-mem.
16791 ($(objpfx)tst-rxspencer-mem): Change target to
16792 $(objpfx)tst-rxspencer-no-utf8-mem. Depend on
16793 $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
16794 * posix/tst-rxspencer-no-utf8.c: New file.
16795
6e89caf1
JM
16796 * elf/Makefile ($(objpfx)order.out): Remove rule.
16797 [$(run-built-tests) = yes] (tests): Depend on
16798 $(objpfx)order-cmp.out.
16799 ($(objpfx)order-cmp.out): New rule.
16800 [$(run-built-tests) = yes] (tests): Depend on
16801 $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
16802 $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
16803 $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
16804 $(objpfx)tst-array5-static-cmp.out.
16805 ($(objpfx)tst-array1.out): Remove rule.
16806 ($(objpfx)tst-array1-cmp.out): New rule.
16807 ($(objpfx)tst-array1-static.out): Remove rule.
16808 ($(objpfx)tst-array1-static-cmp.out): New rule.
16809 ($(objpfx)tst-array2.out): Remove rule.
16810 ($(objpfx)tst-array2-cmp.out): New rule.
16811 ($(objpfx)tst-array3.out): Remove rule.
16812 ($(objpfx)tst-array3-cmp.out): New rule.
16813 ($(objpfx)tst-array4.out): Remove rule.
16814 ($(objpfx)tst-array4-cmp.out): New rule.
16815 ($(objpfx)tst-array5.out): Remove rule.
16816 ($(objpfx)tst-array5-cmp.out): New rule.
16817 ($(objpfx)tst-array5-static.out): Remove rule.
16818 ($(objpfx)tst-array5-static-cmp.out): New rule.
16819 [$(run-built-tests) = yes] (tests): Depend on
16820 $(objpfx)order2-cmp.out.
16821 ($(objpfx)order2.out): Remove rule.
16822 ($(objpfx)order2-cmp.out): New rule.
16823 ($(objpfx)tst-initorder.out): Remove rule.
16824 [$(run-built-tests) = yes] (tests): Depend on
16825 $(objpfx)tst-initorder-cmp.out.
16826 ($(objpfx)tst-initorder-cmp.out): New rule.
16827 ($(objpfx)tst-initorder2.out): Remove rule.
16828 [$(run-built-tests) = yes] (tests): Depend on
16829 $(objpfx)tst-initorder2-cmp.out.
16830 ($(objpfx)tst-initorder2-cmp.out): New rule.
16831 [$(run-built-tests) = yes] (tests): Depend on
16832 $(objpfx)tst-unused-dep-cmp.out.
16833 ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
16834 ($(objpfx)tst-unused-dep-cmp.out): New rule.
16835 * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
16836 on $(objpfx)tst-setvbuf1-cmp.out.
16837 ($(objpfx)tst-setvbuf1.out): Do not run cmp.
16838 ($(objpfx)tst-setvbuf1-cmp.out): New rule.
16839 * string/Makefile [$(run-built-tests) = yes] (tests): Depend
16840 $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
16841 ($(objpfx)tst-svc.out): Remove rule.
16842 ($(objpfx)tst-svc-cmp.out): New rule.
16843
ed9a38e2
JM
168442014-02-13 Joseph Myers <joseph@codesourcery.com>
16845
16846 * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
16847 * ctype/ctype.h [__USE_MISC]: Likewise.
16848 * dirent/dirent.h [__USE_MISC]: Likewise.
16849 * grp/grp.h [__USE_MISC]: Likewise.
16850 * io/fcntl.h [__USE_MISC]: Likewise.
16851 * io/sys/stat.h [__USE_MISC]: Likewise.
16852 * libio/stdio.h [__USE_MISC]: Likewise.
16853 * posix/unistd.h [__USE_MISC]: Likewise.
16854 * pwd/pwd.h [__USE_MISC]: Likewise.
16855 * stdlib.h [__USE_MISC]: Likewise.
16856 * string/bits/string2.h [__USE_MISC]: Likewise.
16857 * string/string.h [__USE_MISC]: Likewise.
16858 * time/time.h [__USE_MISC]: Likewise.
16859
d6680619
AS
168602014-02-13 Andreas Schwab <schwab@suse.de>
16861
16862 [BZ #16574]
16863 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
16864 second answer buffer if it was separately allocated.
16865
ace614b8
JM
168662014-02-12 Joseph Myers <joseph@codesourcery.com>
16867
743151ae
JM
16868 * sysdeps/mips/math-tests.h: Include <features.h>.
16869 [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
16870 (ROUNDING_TESTS_long_double): Do not define.
16871 [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
16872 (EXCEPTION_TESTS_long_double): Likewise.
16873 * sysdeps/mips/mips64/libm-test-ulps: Update.
16874
498afc54
JM
16875 * include/features.h (__USE_BSD): Remove macro definitions.
16876 (__USE_SVID): Likewise.
16877 (_BSD_SOURCE): Likewise.
16878 (_SVID_SOURCE): Likewise.
16879 [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
16880 from definition of _DEFAULT_SOURCE.
16881 [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
16882 [_DEFAULT_SOURCE].
16883 * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
16884 * bits/mman.h [__USE_BSD]: Likewise.
16885 * bits/termios.h [__USE_BSD]: Likewise.
16886 * bits/waitstatus.h [__USE_BSD]: Likewise.
16887 * ctype/ctype.h [__USE_SVID]: Likewise.
16888 * dirent/dirent.h [__USE_BSD]: Likewise.
16889 * grp/grp.h [__USE_SVID]: Likewise.
16890 [__USE_BSD]: Likewise.
16891 * inet/netinet/igmp.h [__USE_BSD]: Likewise.
16892 * io/fcntl.h [__USE_BSD]: Likewise.
16893 * io/ftw.h [__USE_BSD]: Likewise.
16894 * io/sys/stat.h [__USE_BSD]: Likewise.
16895 * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
16896 * libio/bits/stdio2.h [__USE_BSD]: Likewise.
16897 * libio/stdio.h [__USE_SVID]: Likewise.
16898 [__USE_BSD]: Likewise.
16899 * math/math.h [__USE_SVID]: Likewise.
16900 [__USE_BSD]: Likewise.
16901 * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
16902 * misc/bits/syslog.h [__USE_BSD]: Likewise.
16903 * misc/search.h [__USE_SVID]: Likewise.
16904 * misc/sys/mman.h [__USE_BSD]: Likewise.
16905 * misc/sys/syslog.h [__USE_BSD]: Likewise.
16906 * misc/sys/uio.h [__USE_BSD]: Likewise.
16907 * posix/bits/unistd.h [__USE_BSD]: Likewise.
16908 * posix/glob.h [__USE_BSD]: Likewise.
16909 * posix/regex.h [__USE_BSD]: Likewise.
16910 * posix/sys/types.h [__USE_BSD]: Likewise.
16911 [__USE_SVID]: Likewise.
16912 * posix/sys/utsname.h [__USE_SVID]: Likewise.
16913 * posix/sys/wait.h [__USE_BSD]: Likewise.
16914 [__USE_SVID]: Likewise.
16915 * posix/unistd.h [__USE_BSD]: Likewise.
16916 [__USE_SVID]: Likewise.
16917 * pwd/pwd.h [__USE_SVID]: Likewise.
16918 * resolv/netdb.h [__USE_BSD]: Likewise.
16919 * setjmp/setjmp.h [__USE_BSD]: Likewise.
16920 * signal/signal.h [__USE_BSD]: Likewise.
16921 [__USE_SVID]: Likewise.
16922 * socket/sys/socket.h [__USE_BSD]: Likewise.
16923 * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
16924 * stdlib/stdlib.h [__USE_BSD]: Likewise.
16925 [__USE_SVID]: Likewise.
16926 * string/bits/string2.h [__USE_BSD]: Likewise.
16927 [__USE_SVID]: Likewise.
16928 * string/bits/string3.h [__USE_BSD]: Likewise.
16929 * string/endian.h [__USE_BSD]: Likewise.
16930 * string/string.h [__USE_SVID]: Likewise.
16931 [__USE_BSD]: Likewise.
16932 * string/strings.h [__USE_BSD]: Likewise.
16933 * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
16934 * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
16935 * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
16936 * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
16937 * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
16938 * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
16939 Likewise.
16940 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
16941 Likewise.
16942 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
16943 * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
16944 Likewise.
16945 * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
16946 * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
16947 Likewise.
16948 * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
16949 Likewise.
16950 * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
16951 * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
16952 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
16953 Likewise.
16954 * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
16955 Likewise.
16956 * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
16957 * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
16958 * termios/termios.h [__USE_BSD]: Likewise.
16959 * time/sys/time.h [__USE_BSD]: Likewise.
16960 * time/time.h [__USE_BSD]: Likewise.
16961 [__USE_SVID]: Likewise.
16962
dd7b064c
JM
16963 * Makefile (subdir_targets): Remove subdir_lint.out.
16964
a2c4c199
JM
16965 * stdio-common/Makefile (do-tst-unbputc): Remove target.
16966 (do-tst-printf): Likewise.
16967 (tests): Depend directly on $(objpfx)tst-unbputc.out and
16968 $(objpfx)tst-printf.out.
16969
8756f740
JM
16970 * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
16971
1b6dd3f1
JM
16972 * Makerules (check-abi-%): Change target to
16973 $(objpfx)check-abi-%.out.
16974 (check-abi target): Update dependencies.
16975 (check-abi-pattern variable): Redirect output of diff to $@.
16976 (check-abi variable): Likewise.
16977 * elf/Makefile (check-abi): Update dependencies.
16978
ace614b8
JM
16979 * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
16980 unused.
16981 (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
16982 value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
16983 subnormal range.
16984 (_FP_PACK_CANONICAL): Determine tininess based on rounding to
16985 normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
16986 value has largest subnormal exponent.
16987 * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
16988 (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
16989 * sysdeps/aarch64/soft-fp/sfp-machine.h
16990 (_FP_TININESS_AFTER_ROUNDING): New macro.
16991 * sysdeps/alpha/soft-fp/sfp-machine.h
16992 (_FP_TININESS_AFTER_ROUNDING): Likewise.
16993 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
16994 Likewise.
16995 * sysdeps/mips/mips64/soft-fp/sfp-machine.h
16996 (_FP_TININESS_AFTER_ROUNDING): Likewise.
16997 * sysdeps/mips/soft-fp/sfp-machine.h
16998 (_FP_TININESS_AFTER_ROUNDING): Likewise.
16999 * sysdeps/powerpc/soft-fp/sfp-machine.h
17000 (_FP_TININESS_AFTER_ROUNDING): Likewise.
17001 * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
17002 Likewise.
17003 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
17004 (_FP_TININESS_AFTER_ROUNDING): Likewise.
17005 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
17006 (_FP_TININESS_AFTER_ROUNDING): Likewise.
17007 * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
17008 Likewise.
17009
fbfdf9cb
DAS
170102014-02-12 Dylan Alex Simon <dylan@dylex.net>
17011
17012 [BZ #16545]
17013 * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
17014 model 1.
17015
68b7efaa
RH
170162014-02-12 Richard Henderson <rth@redhat.com>
17017
c70a4b1d 17018 * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
68b7efaa
RH
17019 * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
17020 * sysdeps/unix/sysv/linux/alpha: Move directory from
17021 ports/sysdeps/unix/sysv/linux/alpha.
17022 * README: Update listing for alpha-*-linux-gnu.
17023
cb4a2928
JM
170242014-02-11 Joseph Myers <joseph@codesourcery.com>
17025
c941736c
JM
17026 * include/features.h: Update comment documenting feature test
17027 macros.
17028 [_BSD_SOURCE || _SVID_SOURCE]: Give #warning. Define
17029 _DEFAULT_SOURCE.
17030 * manual/creature.texi (_BSD_SOURCE): Remove documentation.
17031 (_SVID_SOURCE): Likewise.
17032 (_DEFAULT_SOURCE): Update description of default features.
17033 (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
17034 with _GNU_SOURCE.
17035 * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
17036 (S_ISVTX): Likewise.
17037 * manual/math.texi (Mathematical Constants): Likewise.
17038 * manual/signal.texi (Interrupted Primitives): Likewise.
17039 * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
17040 * math/test-matherr.c (_SVID_SOURCE): Do not define.
17041 * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
17042 Don't refer to _SVID_SOURCE in warning text.
17043
e8d8d7ec
JM
17044 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17045
cb4a2928
JM
17046 * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
17047 already defined.
17048 (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
17049 * sysdeps/mips/dl-lookup.c: Remove.
17050 * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
17051
7e6424e3
AK
170522014-02-11 Stefan Liebler <stli@linux.vnet.ibm.com>
17053
17054 [BZ #16447]
17055 * math/auto-libm-test-in: Add testcase for expl.
17056 * math/auto-libm-test-out: Regenerate.
17057 * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
17058 calculation of unsafe.
17059 * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
17060
75eff3fe
MS
170612014-02-11 Marcus Shawcroft <marcus.shawcroft@arm.com>
17062
17063 * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
17064 * sysdeps/unix/sysv/linux/aarch64: Move directory from
17065 ports/sysdeps/unix/sysv/linux/aarch64.
17066 * README: Update listing for aarch64*-*-linux-gnu.
17067
d35f1e80
WN
170682014-02-11 Will Newton <will.newton@linaro.org>
17069
17070 * manual/probes.texi (Mathematical Function Probes): Use
17071 "triggered" instead of "hit".
17072
7b3436d4
WN
17073 * manual/probes.texi (Internal Probes): Add documentation
17074 of setjmp, longjmp and longjmp_target probes.
17075
b4f12ca3
WN
17076 * include/stap-probe.h: Add comment about probe argument
17077 format.
17078
c13a72b7
WN
17079 * malloc/mtrace.c (attribute_hidden): Remove unused macro
17080 definition. (tr_where, tr_freehook, tr_mallochook,
17081 tr_reallochook, tr_memalignhook): Use ANSI protoype.
17082
195b8165
DM
170832014-02-11 David S. Miller <davem@davemloft.net>
17084
17085 * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
17086 processing int_tests.
17087
2ad7600b
JM
170882014-02-10 Joseph Myers <joseph@codesourcery.com>
17089
17090 * sysdeps/mips: Move directory from ports/sysdeps/mips.
17091 * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
17092 * sysdeps/unix/sysv/linux/mips: Move directory from
17093 ports/sysdeps/unix/sysv/linux/mips.
17094 * README: Update listing for mips-*-linux-gnu and
17095 mips64-*-linux-gnu.
17096
73588a72
AS
170972014-02-10 Andreas Schwab <schwab@linux-m68k.org>
17098
17099 * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
17100 * sysdeps/unix/sysv/linux/m68k: Move directory from
17101 ports/sysdeps/unix/sysv/linux/m68k.
17102 * README: Update listing for m68k-*-linux-gnu.
17103
4372980f
CM
171042014-02-10 Chris Metcalf <cmetcalf@tilera.com>
17105
17106 * sysdeps/tile: Move directory from ports/sysdeps/tile.
17107 * sysdeps/unix/sysv/linux/generic: Move directory from
17108 ports/sysdeps/unix/sysv/linux/generic.
17109 * sysdeps/unix/sysv/linux/tile: Move directory from
17110 ports/sysdeps/unix/sysv/linux/tile.
17111 * README: Update listing for tile*-*-linux-gnu.
17112
a1ffb40e
OB
171132014-02-10 Ondřej Bílka <neleai@seznam.cz>
17114
57f41c40
AS
17115 * assert/assert.c (__assert_fail_base): Use glibc_likely instead
17116 __builtin_expect.
a1ffb40e
OB
17117 * benchtests/bench-memmem.c (simple_memmem): Likewise.
17118 * catgets/open_catalog.c (__open_catalog): Likewise.
17119 * csu/libc-start.c (LIBC_START_MAIN): Likewise.
17120 * debug/confstr_chk.c: Likewise.
17121 * debug/fread_chk.c (__fread_chk): Likewise.
17122 * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
17123 * debug/getgroups_chk.c: Likewise.
17124 * debug/mbsnrtowcs_chk.c: Likewise.
17125 * debug/mbsrtowcs_chk.c: Likewise.
17126 * debug/mbstowcs_chk.c: Likewise.
17127 * debug/memcpy_chk.c: Likewise.
17128 * debug/memmove_chk.c: Likewise.
17129 * debug/mempcpy_chk.c: Likewise.
17130 * debug/memset_chk.c: Likewise.
17131 * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
17132 * debug/strcat_chk.c (__strcat_chk): Likewise.
17133 * debug/strcpy_chk.c (__strcpy_chk): Likewise.
17134 * debug/strncat_chk.c (__strncat_chk): Likewise.
17135 * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
17136 * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
17137 * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
17138 * debug/wcpncpy_chk.c: Likewise.
17139 * debug/wcscat_chk.c (__wcscat_chk): Likewise.
17140 * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
17141 * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
17142 * debug/wcsncpy_chk.c: Likewise.
17143 * debug/wcsnrtombs_chk.c: Likewise.
17144 * debug/wcsrtombs_chk.c: Likewise.
17145 * debug/wcstombs_chk.c: Likewise.
17146 * debug/wmemcpy_chk.c: Likewise.
17147 * debug/wmemmove_chk.c: Likewise.
17148 * debug/wmempcpy_chk.c: Likewise.
17149 * debug/wmemset_chk.c: Likewise.
17150 * dirent/scandirat.c (SCANDIRAT): Likewise.
17151 * dlfcn/dladdr1.c (dladdr1): Likewise.
17152 * dlfcn/dladdr.c (dladdr): Likewise.
17153 * dlfcn/dlclose.c (dlclose_doit): Likewise.
17154 * dlfcn/dlerror.c (__dlerror): Likewise.
17155 * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
17156 * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
17157 * dlfcn/dlopen.c (dlopen_doit): Likewise.
17158 * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
17159 * dlfcn/dlsym.c (dlsym_doit): Likewise.
17160 * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
17161 * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
17162 * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
17163 Likewise.
17164 * elf/dl-conflict.c: Likewise.
17165 * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
17166 * elf/dl-dst.h: Likewise.
17167 * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
17168 * elf/dl-fptr.c (_dl_make_fptr): Likewise.
17169 * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
17170 * elf/dl-init.c (call_init, _dl_init): Likewise.
17171 * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
57f41c40
AS
17172 * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
17173 (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
17174 Likewise.
a1ffb40e
OB
17175 * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
17176 Likewise.
17177 * elf/dl-minimal.c (__libc_memalign): Likewise.
17178 * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
17179 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
17180 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
17181 * elf/dl-sym.c (do_sym): Likewise.
57f41c40
AS
17182 * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
17183 (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
a1ffb40e
OB
17184 * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
17185 * elf/dl-writev.h (_dl_writev): Likewise.
17186 * elf/ldconfig.c (search_dir): Likewise.
57f41c40
AS
17187 * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
17188 (dl_main): Likewise.
a1ffb40e
OB
17189 * elf/setup-vdso.h (setup_vdso): Likewise.
17190 * grp/compat-initgroups.c (compat_call): Likewise.
17191 * grp/fgetgrent.c (fgetgrent): Likewise.
17192 * grp/initgroups.c (getgrouplist, initgroups): Likewise.
17193 * grp/putgrent.c (putgrent): Likewise.
17194 * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
17195 Likewise.
17196 * hurd/hurdinit.c: Likewise.
17197 * iconvdata/8bit-gap.c (struct): Likewise.
17198 * iconvdata/ansi_x3.110.c : Likewise.
17199 * iconvdata/big5.c : Likewise.
17200 * iconvdata/big5hkscs.c : Likewise.
17201 * iconvdata/cp1255.c: Likewise.
17202 * iconvdata/cp1258.c : Likewise.
17203 * iconvdata/cp932.c : Likewise.
17204 * iconvdata/euc-cn.c: Likewise.
17205 * iconvdata/euc-jisx0213.c : Likewise.
17206 * iconvdata/euc-jp.c: Likewise.
17207 * iconvdata/euc-jp-ms.c : Likewise.
17208 * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
17209 * iconvdata/gb18030.c : Likewise.
17210 * iconvdata/gbbig5.c (const): Likewise.
17211 * iconvdata/gbgbk.c: Likewise.
17212 * iconvdata/gbk.c : Likewise.
17213 * iconvdata/ibm1364.c : Likewise.
17214 * iconvdata/ibm930.c : Likewise.
17215 * iconvdata/ibm932.c: Likewise.
17216 * iconvdata/ibm933.c : Likewise.
17217 * iconvdata/ibm935.c : Likewise.
17218 * iconvdata/ibm937.c : Likewise.
17219 * iconvdata/ibm939.c : Likewise.
17220 * iconvdata/ibm943.c: Likewise.
17221 * iconvdata/iso_11548-1.c: Likewise.
17222 * iconvdata/iso-2022-cn.c : Likewise.
17223 * iconvdata/iso-2022-cn-ext.c : Likewise.
17224 * iconvdata/iso-2022-jp-3.c: Likewise.
17225 * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
17226 * iconvdata/iso-2022-kr.c : Likewise.
17227 * iconvdata/iso646.c (gconv_end): Likewise.
17228 * iconvdata/iso_6937-2.c : Likewise.
17229 * iconvdata/iso_6937.c : Likewise.
17230 * iconvdata/iso8859-1.c: Likewise.
17231 * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
17232 * iconvdata/shift_jisx0213.c : Likewise.
17233 * iconvdata/sjis.c : Likewise.
17234 * iconvdata/t.61.c : Likewise.
17235 * iconvdata/tcvn5712-1.c : Likewise.
17236 * iconvdata/tscii.c: Likewise.
17237 * iconvdata/uhc.c : Likewise.
17238 * iconvdata/unicode.c (gconv_end): Likewise.
17239 * iconvdata/utf-16.c (gconv_end): Likewise.
17240 * iconvdata/utf-32.c (gconv_end): Likewise.
17241 * iconvdata/utf-7.c (base64): Likewise.
17242 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
17243 * iconv/gconv_close.c (__gconv_close): Likewise.
17244 * iconv/gconv_open.c (__gconv_open): Likewise.
57f41c40
AS
17245 * iconv/gconv_simple.c (internal_ucs4_loop_single)
17246 (ucs4_internal_loop, ucs4_internal_loop_unaligned)
17247 (ucs4_internal_loop_single, internal_ucs4le_loop_single)
17248 (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
17249 (ucs4le_internal_loop_single): Likewise.
a1ffb40e
OB
17250 * iconv/iconv.c (iconv): Likewise.
17251 * iconv/iconv_close.c: Likewise.
17252 * iconv/loop.c (SINGLE): Likewise.
17253 * iconv/skeleton.c (FUNCTION_NAME): Likewise.
17254 * include/atomic.h: Likewise.
17255 * inet/inet6_option.c (option_alloc): Likewise.
17256 * intl/bindtextdom.c (set_binding_values): Likewise.
17257 * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
17258 * intl/loadmsgcat.c (_nl_load_domain): Likewise.
17259 * intl/localealias.c (read_alias_file): Likewise.
17260 * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
57f41c40
AS
17261 * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
17262 (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
a1ffb40e
OB
17263 * libio/fmemopen.c (fmemopen): Likewise.
17264 * libio/iofgets.c (_IO_fgets): Likewise.
17265 * libio/iofgets_u.c (fgets_unlocked): Likewise.
17266 * libio/iofgetws.c (fgetws): Likewise.
17267 * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
17268 * libio/iogetdelim.c (_IO_getdelim): Likewise.
57f41c40
AS
17269 * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
17270 (adjust_wide_data, _IO_wfile_seekoff): Likewise.
a1ffb40e
OB
17271 * locale/findlocale.c (_nl_find_locale): Likewise.
17272 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
17273 * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
17274 Likewise.
17275 * locale/setlocale.c (setlocale): Likewise.
17276 * login/programs/pt_chown.c (main): Likewise.
17277 * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
17278 * malloc/malloc.c (_int_malloc, _int_free): Likewise.
57f41c40
AS
17279 * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
17280 (mmap, mmap64, mremap, munmap): Likewise.
a1ffb40e
OB
17281 * math/e_exp2l.c: Likewise.
17282 * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
17283 * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
17284 * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
17285 * math/s_catan.c (__catan): Likewise.
17286 * math/s_catanf.c (__catanf): Likewise.
17287 * math/s_catanh.c (__catanh): Likewise.
17288 * math/s_catanhf.c (__catanhf): Likewise.
17289 * math/s_catanhl.c (__catanhl): Likewise.
17290 * math/s_catanl.c (__catanl): Likewise.
17291 * math/s_ccosh.c (__ccosh): Likewise.
17292 * math/s_ccoshf.c (__ccoshf): Likewise.
17293 * math/s_ccoshl.c (__ccoshl): Likewise.
17294 * math/s_cexp.c (__cexp): Likewise.
17295 * math/s_cexpf.c (__cexpf): Likewise.
17296 * math/s_cexpl.c (__cexpl): Likewise.
17297 * math/s_clog10.c (__clog10): Likewise.
17298 * math/s_clog10f.c (__clog10f): Likewise.
17299 * math/s_clog10l.c (__clog10l): Likewise.
17300 * math/s_clog.c (__clog): Likewise.
17301 * math/s_clogf.c (__clogf): Likewise.
17302 * math/s_clogl.c (__clogl): Likewise.
17303 * math/s_csin.c (__csin): Likewise.
17304 * math/s_csinf.c (__csinf): Likewise.
17305 * math/s_csinh.c (__csinh): Likewise.
17306 * math/s_csinhf.c (__csinhf): Likewise.
17307 * math/s_csinhl.c (__csinhl): Likewise.
17308 * math/s_csinl.c (__csinl): Likewise.
17309 * math/s_csqrt.c (__csqrt): Likewise.
17310 * math/s_csqrtf.c (__csqrtf): Likewise.
17311 * math/s_csqrtl.c (__csqrtl): Likewise.
17312 * math/s_ctan.c (__ctan): Likewise.
17313 * math/s_ctanf.c (__ctanf): Likewise.
17314 * math/s_ctanh.c (__ctanh): Likewise.
17315 * math/s_ctanhf.c (__ctanhf): Likewise.
17316 * math/s_ctanhl.c (__ctanhl): Likewise.
17317 * math/s_ctanl.c (__ctanl): Likewise.
17318 * math/w_pow.c: Likewise.
17319 * math/w_powf.c: Likewise.
17320 * math/w_powl.c: Likewise.
17321 * math/w_scalb.c (sysv_scalb): Likewise.
17322 * math/w_scalbf.c (sysv_scalbf): Likewise.
17323 * math/w_scalbl.c (sysv_scalbl): Likewise.
17324 * misc/error.c (error_tail): Likewise.
17325 * misc/pselect.c (__pselect): Likewise.
17326 * nis/nis_callback.c (__nis_create_callback): Likewise.
17327 * nis/nis_call.c (__nisfind_server): Likewise.
17328 * nis/nis_creategroup.c (nis_creategroup): Likewise.
17329 * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
17330 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
17331 * nis/nis_getservlist.c (nis_getservlist): Likewise.
17332 * nis/nis_lookup.c (nis_lookup): Likewise.
17333 * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
57f41c40
AS
17334 * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
17335 (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
a1ffb40e 17336 * nis/nis_xdr.c (xdr_endpoint): Likewise.
57f41c40
AS
17337 * nis/nss_compat/compat-grp.c (getgrent_next_file)
17338 (internal_getgrnam_r, internal_getgrgid_r): Likewise.
17339 * nis/nss_compat/compat-initgroups.c (add_group)
17340 (internal_getgrent_r): Likewise.
17341 * nis/nss_compat/compat-pwd.c (getpwent_next_file)
17342 (internal_getpwnam_r, internal_getpwuid_r): Likewise.
17343 * nis/nss_compat/compat-spwd.c (getspent_next_file)
17344 (internal_getspnam_r): Likewise.
17345 * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
17346 (_nss_nis_getaliasbyname_r): Likewise.
17347 * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
17348 (_nss_nis_getntohost_r): Likewise.
17349 * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
17350 (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
17351 (_nss_nis_getgrgid_r): Likewise.
17352 * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
17353 (internal_nis_gethostent_r, internal_gethostbyname2_r)
17354 (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
17355 (_nss_nis_gethostbyname4_r): Likewise.
17356 * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
17357 (initgroups_netid): Likewise.
a1ffb40e 17358 * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
57f41c40
AS
17359 * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
17360 (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
17361 * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
17362 (_nss_nis_getprotobynumber_r): Likewise.
17363 * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
17364 (_nss_nis_getsecretkey): Likewise.
17365 * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
17366 (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
17367 (_nss_nis_getpwuid_r): Likewise.
17368 * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
17369 (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
17370 * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
17371 (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
17372 * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
17373 (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
a1ffb40e
OB
17374 * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
17375 Likewise.
57f41c40
AS
17376 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
17377 (_nss_nisplus_getntohost_r): Likewise.
17378 * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
17379 (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
17380 * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
17381 (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
a1ffb40e 17382 Likewise.
57f41c40
AS
17383 * nis/nss_nisplus/nisplus-initgroups.c
17384 (_nss_nisplus_initgroups_dyn): Likewise.
17385 * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
17386 (_nss_nisplus_getnetbyaddr_r): Likewise.
17387 * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
17388 (_nss_nisplus_getprotobynumber_r): Likewise.
17389 * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
17390 (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
a1ffb40e
OB
17391 * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
17392 Likewise.
57f41c40
AS
17393 * nis/nss_nisplus/nisplus-service.c
17394 (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
17395 (_nss_nisplus_getservbyport_r): Likewise.
17396 * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
17397 (_nss_nisplus_getspnam_r): Likewise.
17398 * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
17399 Likewise.
a1ffb40e
OB
17400 * nscd/aicache.c (addhstaiX): Likewise.
17401 * nscd/cache.c (cache_search, prune_cache): Likewise.
57f41c40
AS
17402 * nscd/connections.c (register_traced_file, send_ro_fd)
17403 (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
17404 (main_loop_epoll): Likewise.
a1ffb40e
OB
17405 * nscd/grpcache.c (addgrbyX): Likewise.
17406 * nscd/hstcache.c (addhstbyX): Likewise.
17407 * nscd/initgrcache.c (addinitgroupsX): Likewise.
17408 * nscd/mem.c (gc, mempool_alloc): Likewise.
57f41c40
AS
17409 * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
17410 (addinnetgrX): Likewise.
17411 * nscd/nscd-client.h (__nscd_acquire_maplock)
17412 (__nscd_drop_map_ref): Likewise.
a1ffb40e
OB
17413 * nscd/nscd_getai.c (__nscd_getai): Likewise.
17414 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
17415 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
17416 Likewise.
17417 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
17418 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
57f41c40
AS
17419 * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
17420 (__nscd_get_map_ref): Likewise.
a1ffb40e 17421 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
57f41c40
AS
17422 * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
17423 Likewise.
a1ffb40e
OB
17424 * nscd/pwdcache.c (addpwbyX): Likewise.
17425 * nscd/selinux.c (preserve_capabilities): Likewise.
17426 * nscd/servicescache.c (addservbyX): Likewise.
17427 * nss/nss_files/files-XXX.c (internal_getent): Likewise.
17428 * posix/fnmatch.c (fnmatch): Likewise.
17429 * posix/getopt.c (_getopt_internal_r): Likewise.
17430 * posix/glob.c (glob, glob_in_dir): Likewise.
17431 * posix/wordexp.c (exec_comm_child): Likewise.
57f41c40
AS
17432 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
17433 (getanswer_r, gaih_getanswer_slice): Likewise.
a1ffb40e
OB
17434 * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
17435 * resolv/res_init.c: Likewise.
17436 * resolv/res_mkquery.c (res_nmkquery): Likewise.
17437 * resolv/res_query.c (__libc_res_nquery): Likewise.
17438 * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
17439 Likewise.
17440 * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
17441 * stdio-common/perror.c (perror): Likewise.
17442 * stdio-common/printf_fp.c (___printf_fp): Likewise.
17443 * stdio-common/tmpnam.c (tmpnam): Likewise.
17444 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
17445 * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
57f41c40
AS
17446 * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
17447 Likewise.
a1ffb40e
OB
17448 * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
17449 * stdlib/putenv.c (putenv): Likewise.
17450 * stdlib/setenv.c (__add_to_environ): Likewise.
17451 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
17452 * stdlib/strtol_l.c (INTERNAL): Likewise.
17453 * string/memmem.c (memmem): Likewise.
17454 * string/strerror.c (strerror): Likewise.
17455 * string/strnlen.c (__strnlen): Likewise.
17456 * string/test-memmem.c (simple_memmem): Likewise.
17457 * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
17458 * sunrpc/pm_getport.c (__get_socket): Likewise.
17459 * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
17460 * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
57f41c40
AS
17461 * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
17462 (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
a1ffb40e
OB
17463 Likewise.
17464 * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
17465 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
17466 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
17467 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
17468 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
57f41c40
AS
17469 * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
17470 Likewise.
17471 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
17472 Likewise.
a1ffb40e
OB
17473 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
17474 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
17475 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
17476 * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
17477 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
17478 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
17479 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
17480 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
17481 * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
17482 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
17483 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
17484 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
17485 Likewise.
17486 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
17487 Likewise.
17488 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
17489 Likewise.
17490 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
17491 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
17492 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
17493 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
17494 * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
17495 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
17496 * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
17497 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
17498 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
17499 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
17500 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
17501 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
17502 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
17503 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
17504 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
57f41c40
AS
17505 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
17506 Likewise.
a1ffb40e
OB
17507 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
17508 Likewise.
17509 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
17510 Likewise.
17511 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
17512 Likewise.
17513 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
17514 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
17515 * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
17516 Likewise.
17517 * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
17518 * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
17519 * sysdeps/posix/opendir.c (__opendirat): Likewise.
17520 * sysdeps/posix/sleep.c: Likewise.
17521 * sysdeps/posix/tempname.c: Likewise.
17522 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
17523 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
17524 Likewise.
57f41c40
AS
17525 * sysdeps/powerpc/powerpc32/dl-machine.h
17526 (elf_machine_runtime_setup, elf_machine_rela): Likewise.
a1ffb40e
OB
17527 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
17528 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
17529 * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
17530 * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
17531 Likewise.
17532 * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
57f41c40
AS
17533 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
17534 (elf_machine_rela, elf_machine_lazy_rel): Likewise.
17535 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
17536 (elf_machine_rela, elf_machine_lazy_rel): Likewise.
a1ffb40e
OB
17537 * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
17538 * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
17539 * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
17540 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
17541 * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
57f41c40
AS
17542 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
17543 (elf_machine_lazy_rel): Likewise.
a1ffb40e 17544 * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
57f41c40
AS
17545 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
17546 (elf_machine_lazy_rel): Likewise.
a1ffb40e
OB
17547 * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
17548 * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
17549 * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
17550 * sysdeps/unix/grantpt.c (grantpt): Likewise.
17551 * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
17552 * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
17553 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
17554 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
17555 Likewise.
17556 * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
17557 * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
17558 * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
17559 * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
17560 * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
17561 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
17562 * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
17563 * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
17564 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
17565 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
17566 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
17567 Likewise.
17568 * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
17569 (__posix_fallocate64_l64): Likewise.
17570 * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
17571 (posix_fallocate): Likewise.
57f41c40
AS
17572 * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
17573 Likewise.
a1ffb40e 17574 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
57f41c40
AS
17575 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
17576 (getifaddrs_internal): Likewise.
a1ffb40e
OB
17577 * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
17578 * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
17579 * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
17580 * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
17581 * sysdeps/unix/sysv/linux/posix_fallocate64.c
17582 (__posix_fallocate64_l64): Likewise.
17583 * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
17584 Likewise.
17585 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
57f41c40
AS
17586 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
17587 (__get_clockfreq): Likewise.
a1ffb40e
OB
17588 * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
17589 * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
17590 * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
17591 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
17592 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
17593 * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
17594 * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
17595 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
17596 Likewise.
17597 * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
17598 * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
17599 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
17600 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
17601 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
17602 * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
17603 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
17604 Likewise.
17605 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
17606 (posix_fallocate): Likewise.
17607 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
17608 * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
17609 * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
57f41c40
AS
17610 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
17611 (elf_machine_rela, elf_machine_rela_relative)
17612 (elf_machine_lazy_rel): Likewise.
a1ffb40e
OB
17613 * time/asctime.c (asctime_internal): Likewise.
17614 * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
17615 * time/tzset.c (__tzset_parse_tz): Likewise.
17616 * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
17617 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
17618 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
17619 * wcsmbs/wcsmbsload.h: Likewise.
17620
f3d338c9
OB
17621 [BZ #15894]
17622 * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
17623
57f41c40
AS
17624 * malloc/arena.c (grow_heap, get_free_list, reused_arena)
17625 (arena_get2): Remove THREAD_STATS conditionals.
17626 * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
17627 (__malloc_stats, int): Likewise.
bdfe308a 17628
d674667c
MF
176292014-02-08 Mike Frysinger <vapier@gentoo.org>
17630
17631 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
17632 f.f_type to RAMFS_MAGIC too. Compare mp->mnt_type to shm too.
17633
6349768c
MF
17634 * manual/setjmp.texi: Fix typos/grammar errors.
17635
0b7c7473
MF
17636 * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
17637 Only return early when n is <= 0. Delete unused return statement.
17638
ac8cc9e3
MF
17639 * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
17640 (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
17641 * debug/tst-longjmp_chk3.c: New file.
17642
c5bb8e23
MF
17643 * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
17644 (test_main): Replace code with set_fortify_handler call.
17645 * debug/test-strcpy_chk.c: Likewise.
17646 * debug/tst-chk1.c: Likewise.
17647 * debug/tst-longjmp_chk.c: Likewise.
17648 * test-skeleton.c: Include fcntl.h & paths.h
17649 (set_fortify_handler): Define.
17650
10444e42
MF
17651 * debug/tst-longjmp_chk.c: Add header comment and include
17652 ../test-skeleton.c.
17653 (do_test): Mark static.
17654 (TEST_FUNCTION): Define.
17655
1e805e8d
MF
17656 * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
17657 (IP_PMTUDISC_INTERFACE): Likewise.
17658 (IP_MULTICAST_IF): Likewise.
17659 (IP_MULTICAST_TTL): Likewise.
17660 (IP_MULTICAST_LOOP): Likewise.
17661 (IP_ADD_MEMBERSHIP): Likewise.
17662 (IP_DROP_MEMBERSHIP): Likewise.
17663 (IP_UNBLOCK_SOURCE): Likewise.
17664 (IP_BLOCK_SOURCE): Likewise.
17665 (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
17666 (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
17667 (IP_MSFILTER): Likewise.
17668 (MCAST_JOIN_GROUP): Likewise.
17669 (MCAST_BLOCK_SOURCE): Likewise.
17670 (MCAST_UNBLOCK_SOURCE): Likewise.
17671 (MCAST_LEAVE_GROUP): Likewise.
17672 (MCAST_JOIN_SOURCE_GROUP): Likewise.
17673 (MCAST_LEAVE_SOURCE_GROUP): Likewise.
17674 (MCAST_MSFILTER): Likewise.
17675 (IP_MULTICAST_ALL): Likewise.
17676 (IP_UNICAST_IF): Likewise.
17677
73f79bb7
MF
17678 * timezone/Makefile: Delete $(have-ksh) check.
17679 ($(objpfx)tzselect): Change $(KSH) to $(BASH).
17680 * timezone/tzselect.ksh: Add +x mode bits.
17681
8da79b60
MF
17682 * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
17683 (ANON_INODE_FS_MAGIC): Likewise.
17684 (BDEVFS_MAGIC): Likewise.
17685 (BINFMTFS_MAGIC): Likewise.
17686 (BTRFS_TEST_MAGIC): Likewise.
17687 (CRAMFS_MAGIC_WEND): Likewise.
17688 (DEBUGFS_MAGIC): Likewise.
17689 (ECRYPTFS_SUPER_MAGIC): Likewise.
17690 (EXT3_SUPER_MAGIC): Likewise.
17691 (EXT4_SUPER_MAGIC): Likewise.
17692 (FUTEXFS_SUPER_MAGIC): Likewise.
17693 (HOSTFS_SUPER_MAGIC): Likewise.
17694 (HUGETLBFS_MAGIC): Likewise.
17695 (MINIX3_SUPER_MAGIC): Likewise.
17696 (MTD_INODE_FS_MAGIC): Likewise.
17697 (NILFS_SUPER_MAGIC): Likewise.
17698 (OPENPROM_SUPER_MAGIC): Likewise.
17699 (PIPEFS_MAGIC): Likewise.
17700 (PSTOREFS_MAGIC): Likewise.
17701 (QNX6_SUPER_MAGIC): Likewise.
17702 (RAMFS_MAGIC): Likewise.
17703 (REISERFS_SUPER_MAGIC_STRING): Likewise.
17704 (REISER2FS_SUPER_MAGIC_STRING): Likewise.
17705 (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
17706 (SECURITYFS_MAGIC): Likewise.
17707 (SELINUX_MAGIC): Likewise.
17708 (SMACK_MAGIC): Likewise.
17709 (SOCKFS_MAGIC): Likewise.
17710 (SQUASHFS_MAGIC): Likewise.
17711 (STACK_END_MAGIC): Likewise.
17712 (TMPFS_MAGIC): Likewise.
17713 (USBDEVICE_SUPER_MAGIC): Likewise.
17714 (V9FS_MAGIC): Likewise.
17715 (XENFS_SUPER_MAGIC): Likewise.
17716 (CRAMFS_MAGIC): Fix typo in comment.
17717 (EXT2_SUPER_MAGIC): Update comment.
17718 (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
17719
464263cc
JM
177202014-02-08 Joseph Myers <joseph@codesourcery.com>
17721
c6bfe5c4
JM
17722 * sysdeps/arm: Move directory from ports/sysdeps/arm.
17723 * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
17724 * sysdeps/unix/sysv/linux/arm: Move directory from
17725 ports/sysdeps/unix/sysv/linux/arm.
17726 * README: Update listing for arm-*-linux-gnueabi.
17727
464263cc
JM
17728 * README: Remove mention of am33.
17729
32749f6c
RM
177302014-02-07 Roland McGrath <roland@hack.frob.com>
17731
17732 * bits/sigset.h (__sigemptyset): Use a statement expression rather
17733 than the comma operator, to avoid "rhs of comma has no effect"
17734 compiler warnings.
17735 (__sigfillset, __sigandset, __sigorset): Likewise.
17736 * include/signal.h (__sigemptyset): Likewise.
17737 * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
17738
d5b396c1
AM
177392014-02-07 Allan McRae <allan@archlinux.org>
17740
17741 * version.h (RELEASE): Set to "development".
17742 (VERSION): Set to "2.19.90"
17743 * NEWS: Add 2.20 section.
17744
3bfff2ed
CD
177452014-02-06 Carlos O'Donell <carlos@redhat.com>
17746
17747 [BZ #16529]
17748 * inet/netinet/in.h: Remove comma after IPPROTO_MH.
17749
ee7cc385
SP
177502014-02-06 Siddhesh Poyarekar <siddhesh@redhat.com>
17751
17752 * manual/contrib.texi: Update entry for Carlos O'Donell,
17753 Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
17754
f877c4f2
CD
177552014-02-05 Carlos O'Donell <carlos@rehdat.com>
17756
27e839f6
CD
17757 * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
17758
f877c4f2
CD
17759 * sysdeps/unix/sysv/linux/kernel-features.h
17760 [__LINUX_KERNEL_VERSION >= 0x020621]
17761 (__ASSUME_PROC_PID_TASK_COMM): Define.
17762
68159946
SP
177632014-02-05 Siddhesh Poyarekar <siddhesh@redhat.com>
17764
ba17cdbd
SP
17765 [BZ #16398]
17766 * libio/wfileops.c (_IO_wfile_seekoff): Break out form
17767 conversion when destination buffer does not have enough space.
17768 * libio/tst-ftell-partial-wide.c: New test case.
17769 * libio/Makefile (tests): Add tst-ftell-partial-wide.
17770
68159946
SP
17771 * manual/contrib.texi: Update entry for Ondrej Bilka, Will
17772 Newton and Alexandre Oliva. Add entries for Steve Ellcey, Chris
17773 Leonard and Allan McRae.
17774
2b528732
DM
177752014-02-04 David S. Miller <davem@davemloft.net>
17776
17777 * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
17778 32-bit.
17779
0ff82463
AZ
177802014-02-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17781
57f41c40
AS
17782 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
17783 New file
c01603f7
AZ
17784 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
17785 New file
57f41c40
AS
17786 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
17787 New file.
17788 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
17789 New file.
c01603f7
AZ
17790 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
17791 New file.
57f41c40
AS
17792 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
17793 New file.
17794 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
17795 New file.
c01603f7
AZ
17796 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
17797 New file.
17798 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
17799 New file.
17800 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
17801 New file.
17802 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
17803 New file.
17804 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
17805 New file.
17806 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
17807 New file.
17808
178092014-02-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17810
0ff82463
AZ
17811 * nptl/shlib-versions: Change powerpc*le start to 2.17.
17812 * shlib-versions: Likewise.
17813
1695c773
AZ
178142014-02-04 Roland McGrath <roland@hack.frob.com>
17815 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17816
17817 * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
17818 (abilist-pattern): New variable, set to %-le.abilist.
17819
17820 * Makerules (abilist-pattern): New variable.
17821 (vpath): Use $(abilist-pattern) in place of %.abilist.
17822 (check-abi-% pattern rule): Likewise.
17823 (check-abi, update-abi): Likewise.
17824
6c0ce4b4
EW
178252014-02-04 Eric Wong <normalperson@yhbt.net>
17826
17827 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17828
481e3524
CD
178292014-02-03 Carlos O'Donell <carlos@redhat.com>
17830
17831 * manual/startup.texi: Add next, previous, and top entries for
17832 the `Program Arguments' and `Environment Variables' nodes.
17833
375592d3
AO
178342014-02-03 Alexandre Oliva <aoliva@redhat.com>
17835
17836 * manual/macros.texi: Add comments before MTASC-safety macros.
17837
f54838ba
AO
17838 * manual/users.texi: Document MTASC-safety properties.
17839
57f41c40
AS
17840 * manual/threads.texi (pthread_key_create, pthread_key_delete)
17841 (pthread_getspecific, pthread_setspecific): Format with
909e12ad
AO
17842 @deftypefun, and add @safety note.
17843 * manual/signal.texi: Move comments that analyze the above
17844 functions to their home place.
17845
fd3daba4
AM
178462014-02-03 Allan McRae <allan@archlinux.org>
17847
17848 * po/sl.po: Update Slovenian translation from translation project.
17849
597636d7
AO
178502014-02-02 Alexandre Oliva <aoliva@redhat.com>
17851
17852 * manual/time.texi (timegm): Add missing blank after @c.
17853 Reported by Joseph Myers <joseph@codesourcery.com>.
17854
ee196e3c
AO
178552014-02-01 Alexandre Oliva <aoliva@redhat.com>
17856
17857 * manual/check-safety.sh: New.
17858 * manual/Makefile ($(objpfx)stamp-summary): Run it.
17859
f8d529d5
AO
17860 * manual/terminal.texi: Document MTASC-safety properties.
17861
de55fdf4
AO
17862 * manual/filesys.texi: Document MTASC-safety properties.
17863
c3299c08
AO
17864 * manual/errno.texi: Document MTASC-safety properties.
17865
06e90b14
AO
17866 * manual/intro.texi: Document safety identifiers and
17867 conditionals.
17868
1acd4371
AO
17869 * manual/string.texi (wcstok): Fix prototype.
17870 (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
17871
23e5b8cb
AO
17872 * manual/time.texi: Document MTASC-safety properties.
17873
11087373
AO
17874 * manual/string.texi: Document MTASC-safety properties.
17875
5da2c93d
AO
17876 * manual/threads.texi: Document MTASC-safety properties.
17877
171e9210
AO
17878 * manual/stdio.texi: Document MTASC-safety properties.
17879
d9e02532
AO
17880 * manual/syslog.texi: Document MTASC-safety properties.
17881
6af8bab7
AO
17882 * manual/sysinfo.texi: Document MTASC-safety properties.
17883
663b02d7
AO
17884 * manual/startup.texi: Document MTASC-safety properties.
17885
973f180b
AO
17886 * manual/socket.texi: Document MTASC-safety properties.
17887
8f3c25c8
AO
17888 * manual/signal.texi: Document MTASC-safety properties.
17889
542210fb
AO
178902014-01-31 Alexandre Oliva <aoliva@redhat.com>
17891
17892 * manual/setjmp.texi: Document MTASC-safety properties.
17893
433c45a2
AO
17894 * manual/search.texi: Document MTASC-safety properties.
17895
c8ce789c
AO
17896 * manual/resource.texi: Document MTASC-safety properties.
17897
19f5d29c
AO
17898 * manual/process.texi: Document MTASC-safety properties.
17899
e2dfb7f4
AO
17900 * manual/platform.texi: Document MTASC-safety properties.
17901
8c1413f5
AO
17902 * manual/pipe.texi: Document MTASC-safety properties.
17903
03483ada
AO
17904 * manual/pattern.texi: Document MTASC-safety properties.
17905
29e7e2df
AO
17906 * manual/message.texi: Document MTASC-safety properties.
17907
9f529d7c
AO
17908 [BZ #12751]
17909 * manual/memory.texi: Document MTASC-safety properties.
17910
27aaa791
AO
17911 * manual/math.texi: Document MTASC-safety properties.
17912
f2d58726
AO
17913 * manual/locale.texi: Document MTASC-safety properties.
17914
2cc3615c
AO
17915 * manual/llio.texi: Document MTASC-safety properties.
17916
d9f0ec97
AO
17917 * manual/libdl.texi: New.
17918
e7c4409a
AO
17919 * manual/lang.texi: Document MTASC-safety properties.
17920
27bdc63c
AO
17921 * manual/job.texi: Document MTASC-safety properties.
17922
a7b90ea9
AO
17923 * manual/getopt.texi: Document MTASC-safety properties.
17924
c49130e3
AO
17925 * manual/ctype.texi: Document MTASC-safety properties.
17926
0d23a5c1
MR
179272014-01-31 Maciej W. Rozycki <macro@codesourcery.com>
17928
17929 [BZ #16046]
17930 * csu/libc-tls.c (static_map): Remove variable.
17931 (__libc_setup_tls): Use main executable's link map for TLS data.
17932 * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
17933 casing for LM_ID_BASE and GL(dl_nns).
17934 * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
17935 function. Alias dl_iterate_phdr to __dl_iterate_phdr.
17936 * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
17937 casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
17938 * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
17939 member.
17940 (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
17941 l_phnum members.
17942
0037bb60
AO
179432014-01-30 Alexandre Oliva <aoliva@redhat.com>
17944
17945 * manual/debug.texi: Document MTASC-safety properties.
17946
409e00bd
L
179472014-01-29 H.J. Lu <hongjiu.lu@intel.com>
17948
17949 [BZ #16510]
17950 * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
17951 of __x86_64__ when disabling x87 inline functions.
17952
86e60666
AO
179532014-01-29 Alexandre Oliva <aoliva@redhat.com>
17954
17955 * manual/charset.texi: Document MTASC-safety properties.
17956
76167637
AO
17957 * manual/crypt.texi: Document MTASC-safety properties.
17958
e567f2a0
AO
17959 * manual/conf.texi: Document MTASC-safety properties.
17960
b719dafd
AO
17961 * manual/arith.texi: Document MTASC-safety properties.
17962
4a16c662
AO
17963 * manual/argp.texi: Document MTASC-safety properties.
17964
0a57b83e
AO
17965 * manual/macros.texi: Introduce macros to document multi
17966 thread, asynchronous signal and asynchronous cancellation
17967 safety properties.
17968 * manual/intro.texi: Introduce the properties themselves.
17969
feab2397
KK
179702014-01-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
17971
17972 * sysdeps/sh/sh4/Makefile: New file.
17973
1c0d11bc
AS
179742014-01-27 Andreas Schwab <schwab@linux-m68k.org>
17975
17976 * math/gen-libm-test.pl ($srcdir): New variable.
17977 ($auto_input): Use it.
17978
af37a8a3
SP
179792014-01-27 Siddhesh Poyarekar <siddhesh@redhat.com>
17980
d7b00f98
SP
17981 [BZ #16506]
17982 * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
17983 access beyond array bounds when parsing netgroups file.
17984
af37a8a3
SP
17985 * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
17986 the old buffer before realloc.
17987
0c00f062
AM
179882014-01-27 Allan McRae <allan@archlinux.org>
17989
17990 * po/fr.po: Update French translation from translation project.
17991
7d69a1b0
KK
179922014-01-26 Kaz Kojima <kkojima@rr.iij4u.or.jp>
17993
17994 * sysdeps/sh/libm-test-ulps: Regenerate.
17995
6e697ff7
DM
179962014-01-24 David S. Miller <davem@davemloft.net>
17997
17998 * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
17999
9cadb35c
KK
180002014-01-25 Kaz Kojima <kkojima@rr.iij4u.or.jp>
18001
18002 * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
18003 * sysdeps/sh/libm-test-ulps: ... here and regenerated.
18004
5d41dadf
SP
180052013-01-24 Siddhesh Poyarekar <siddhesh@redhat.com>
18006
18007 [BZ #16474]
18008 * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
18009 string pointers after reallocation.
18010
0bad441c
KK
180112014-01-24 Kaz Kojima <kkojima@rr.iij4u.or.jp>
18012
18013 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
18014 __SH4A__ instead of __SH_FPU_ANY__.
18015
7007c661
KK
180162014-01-23 Kaz Kojima <kkojima@rr.iij4u.or.jp>
18017
18018 * sysdeps/sh/fpu_control.h: New file.
18019 * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
18020 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
18021 * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
18022 * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
18023 * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
18024 * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
18025 * sysdeps/sh/sys/ucontext.h: Remove.
18026 * sysdeps/sh/sys: Remove directory.
18027
0f0c35e4
AK
180282014-01-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18029
18030 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
18031 s390/sys/ucontext.h.
18032 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
18033 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
18034
4959e284
L
180352014-01-20 H.J. Lu <hongjiu.lu@intel.com>
18036
18037 [BZ #15605]
18038 * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
18039
d98720e0
AZ
180402014-01-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18041
18042 [BZ#16431]
18043 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
18044 Adjust the vDSO correctly for internal calls.
18045 * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
18046
91cbd0bc
AM
180472014-01-20 Allan McRae <allan@archlinux.org>
18048
18049 * po/ca.po: Update Catalan translation from translation project.
18050
7a02cfad
MF
180512014-01-16 Mike Frysinger <vapier@gentoo.org>
18052
18053 * sysdeps/s390/sotruss-lib.c: New file.
18054
736c304a
AZ
180552014-01-16 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18056
18057 [BZ#16430]
6e077ee5 18058 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
736c304a
AZ
18059 (__GI___gettimeofday): Alias for a different internal symbol to avoid
18060 local calls issues by not having a PLT stub required for IFUNC calls.
18061 * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
18062
94d0cea0
JM
180632014-01-16 Joseph Myers <joseph@codesourcery.com>
18064
18065 * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
18066 * math/test-fpucw-static.c: Likewise.
18067
980cb518
SP
180682013-01-16 Siddhesh Poyarekar <siddhesh@redhat.com>
18069
18070 [BZ #16453]
18071 * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
18072
2393fc01
AZ
180732014-01-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18074
18075 * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
18076 implementation for powerpc.
18077
d359bcc2
OB
180782014-01-15 Ondřej Bílka <neleai@seznam.cz>
18079
18080 [BZ #14782]
18081 * sysdeps/posix/system.c (__libc_system): Do not enable
18082 asynchronous cancellation.
18083
7beb48cb
AK
180842014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18085
18086 [BZ #16427]
18087 * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
18088 handling only for numbers special also in the IEEE case.
18089
c20d5bf5
AK
180902014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18091
18092 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
18093
e83bd4ee
AM
180942014-01-11 Allan McRae <allan@archlinux.org>
18095
76d0ea69
AM
18096 * po/bg.po: Update Bulgarian translation from translation project.
18097
e83bd4ee
AM
18098 * po/de.po: Update German translation from translation project.
18099
bc2ba20a
RM
181002014-01-10 Roland McGrath <roland@hack.frob.com>
18101
18102 * sysdeps/generic/gcc-compat.h: New file.
18103
649ecea2
SP
181042014-01-10 Siddhesh Poyarekar <siddhesh@redhat.com>
18105
18106 * benchtests/asin-inputs: Correct slow inputs.
18107 * benchtests/acos-inputs: Likewise.
18108
1b19c006
AM
181092014-01-10 Allan McRae <allan@archlinux.org>
18110
a46dab08
AM
18111 * po:sv.po: Update Swedish translation from translation project.
18112
421df74a
AM
18113 * po/vi.po: Update Vietnamese translation from translation project.
18114
d61c51a7
AM
18115 * po/eo.po: Update Esperanto translation from translation project.
18116
0339a319
AM
18117 * po/cs.po: Update Czech translation from translation project.
18118
94ad3e99
AM
18119 * po/nl.po: Update Dutch translation from translation project.
18120
e349ca71
AM
18121 * po/pl.po: Update Polish translation from translation project.
18122
ddf930c1
AM
18123 * po/ru.po: Update Russian translation from translation project.
18124
1b19c006
AM
18125 * po/uk.po: Update Ukrainian translation from translation project.
18126
9f236c49
BM
181272014-01-08 Brooks Moses <bmoses@google.com>
18128
18129 * elf/dl-load.c: Fix comment typo.
18130
cd6701cf
CD
181312014-01-08 Carlos O'Donell <carlos@redhat.com>
18132
18133 * po/header.pot: Rename to...
18134 * po/pot.header: ... this.
18135 * po/Makefile: Use pot.header.
18136
66671c84
YK
181372014-01-08 Yuriy Kaminskiy <yumkam@gmail.com>
18138 Maxim Kuvyrkov <maxim@kugelworks.com>
18139
18140 [BZ #16394]
cd6701cf
CD
18141 * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
18142 SRC and DEST against LEN.
66671c84 18143
38f34581
AZ
181442014-01-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18145
18146 [BZ #16414]
18147 * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
18148 implementation.
18149 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
18150
181512014-01-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
3ff6304e
AZ
18152
18153 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18154
4c327f2a
JM
181552014-01-08 Joseph Myers <joseph@codesourcery.com>
18156
18157 [BZ #16408]
18158 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
18159 for large positive arguments.
18160
b821f414
JM
181612014-01-07 Joseph Myers <joseph@codesourcery.com>
18162
1f0f2067
JM
18163 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
18164
a5a326f6
JM
18165 * math/auto-libm-test-in: Mark various tests with
18166 xfail-rounding:ldbl-128ibm.
18167 * math/auto-libm-test-out: Regenerated.
18168
b821f414
JM
18169 [BZ #16407]
18170 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
18171 Increase overflow threshold.
18172
94c8a4bc
OB
181732014-01-07 Ondřej Bílka <neleai@seznam.cz>
18174
18175 [BZ #14286]
18176 * stdio-common/vfprintf.c: Check for integer overflow.
18177
87ded0c3
AK
181782014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18179
18180 * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
18181 the first argument and return value of __tls_get_addr_internal.
18182
c5eebdd0
AK
181832014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18184
18185 * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
18186 also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
18187
05d138ef
AK
181882014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
18189
18190 * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
18191 * sysdeps/s390/rtld-global-offsets.sym: New file.
18192 * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
18193 GLIBC_2.19 symbol.
18194 * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
18195 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
18196 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
18197 ... this.
18198 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
18199 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
18200 ... this.
18201 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
18202 Regenerate.
18203 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
18204 Regenerate.
18205 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
18206 halfs of GPRs for high_gprs contexts.
18207 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
18208 restore upper halfs of GPRs for high_gprs contexts. Copy uc_flags
18209 field.
18210 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
18211 uc_flags field.
18212 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
18213 64 bit versions:
18214 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
18215 for high GPRs (uc_high_gprs) and for future extensions
18216 (__reserved).
18217 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
18218 for future extensions (__reserved).
18219 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
18220 64 bit versions:
18221 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
18222 SC_HIGHGPRS offset definition.
18223 * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
18224 * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
18225
93a45ff1
AK
18226 * Versions.def: Add GLIBC_2.19 for libpthread.
18227 * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
18228 siglongjmp for libpthread with GLIBC_2.19 symver.
18229 * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
18230 * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
18231 * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
18232 * sysdeps/s390/__longjmp.c: New file.
18233 * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
18234 * sysdeps/s390/longjmp.c: New file.
18235 * sysdeps/s390/setjmp.S: New file.
18236 * sysdeps/s390/sigjmp.S: New file.
18237 * sysdeps/s390/v1-longjmp.c: New file.
18238 * sysdeps/s390/v1-setjmp.h: New file.
18239 * sysdeps/s390/v1-sigjmp.c: New file.
18240 * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
18241 * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
18242 GLIBC_2.19 version.
18243 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
18244 * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
18245 versioned symbols for ____longjmp_chk.
18246 * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
18247 Likewise.
18248 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
18249 Regenerate.
18250 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
18251 Regenerate.
18252 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
18253 Regenerate.
18254 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
18255 Regenerate.
18256 * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
18257 * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
18258 * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
18259 * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
18260 * sysdeps/s390/s390-32/setjmp-common.S: ... this.
18261 * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
18262 * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
18263 * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
18264 * sysdeps/s390/s390-64/setjmp-common.S: ... this.
18265 * sysdeps/s390/rtld-__longjmp.c: New file.
18266 * sysdeps/s390/rtld-setjmp.S: New file.
18267
eb3fc44b
JM
182682014-01-06 Joseph Myers <joseph@codesourcery.com>
18269
18270 [BZ #16400]
18271 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
18272 Return -__logl (x) for small positive arguments without evaluating
18273 a polynomial.
18274
9341dde4
MF
182752014-01-06 Mike Frysinger <vapier@gentoo.org>
18276
18277 * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
18278 Rename to ...
18279 (__ptrace_peeksiginfo_args): ... this.
18280 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
18281 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
18282 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
18283
4cff0293
AM
182842014-01-06 Allan McRae <allan@archlinux.org>
18285
18286 * inet/netinet/in.h: Fix typo in comment.
18287
75595dcf
AJ
182882014-01-05 Andreas Jaeger <aj@suse.de>
18289
18290 * sysdeps/i386/fpu/libm-test-ulps: Update.
18291
79c1e109
AM
182922014-01-05 Allan McRae <allan@archlinux.org>
18293
dd804818
AM
18294 * po/libc.pot: Regenerated.
18295
79c1e109
AM
18296 * malloc/memusagestat.c: Fix gettext call formatting.
18297
0c813d1f
SK
182982014-01-04 Sami Kerola <kerolasa@iki.fi>
18299
18300 * nscd/nscd.c: Improve usage() output.
18301
20f4a8d9
MF
183022014-01-04 Mike Frysinger <vapier@gentoo.org>
18303
18304 * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
18305 * sysdeps/unix/sysv/linux/configure: Regenerated.
18306 * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
18307 * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
18308
22562bb2
JM
183092014-01-03 Joseph Myers <joseph@codesourcery.com>
18310
18311 [BZ #16390]
18312 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
18313 (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
18314
d7ad2d9b
AZ
183152014-01-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18316
18317 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
18318 extra tokens at end of #undef directive.
18319 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
18320 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
18321 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
18322
7dd009d8
JM
183232014-01-03 Joseph Myers <joseph@codesourcery.com>
18324
24db925a
JM
18325 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
18326
7dd009d8
JM
18327 * math/auto-libm-test-in: Mark various tests with
18328 xfail-rounding:ldbl-128ibm.
18329 * math/auto-libm-test-out: Regenerated.
18330
396e3ecf
JM
183312014-01-02 Joseph Myers <joseph@codesourcery.com>
18332
819e5d50
JM
18333 [BZ #16386]
18334 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
18335 numbers with subnormal high part when calculating exponent.
18336
90b6a1e5
JM
18337 [BZ #16385]
18338 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
18339 fabs.
18340
396e3ecf
JM
18341 [BZ #16384]
18342 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
18343 M_LN2l.
18344 (__ieee754_acoshl): Use __log1pl not __log1p.
18345
6c8dbf00
OB
183462013-01-02 Ondřej Bílka <neleai@seznam.cz>
18347
57f41c40
AS
18348 * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
18349 (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
18350 (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
18351 (grow_heap, heap_trim, _int_new_arena, get_free_list)
18352 (reused_arena, arena_get2): Convert to GNU style.
18353 * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
18354 (mem2mem_check, mem2chunk_check, top_check, realloc_check)
18355 (memalign_check, __malloc_set_state): Likewise.
6c8dbf00 18356 * malloc/mallocbug.c (main): Likewise.
57f41c40
AS
18357 * malloc/malloc.c (__malloc_assert, malloc_init_state)
18358 (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
18359 (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
18360 (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
18361 (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
18362 (__posix_memalign, malloc_info): Likewise.
6c8dbf00 18363 * malloc/malloc.h: Likewise.
57f41c40
AS
18364 * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
18365 (mallochook, memalignhook, reallochook, mabort): Likewise.
6c8dbf00 18366 * malloc/mcheck.h: Likewise.
57f41c40
AS
18367 * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
18368 (free, mmap, mmap64, mremap, munmap, dest): Likewise.
6c8dbf00
OB
18369 * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
18370 * malloc/morecore.c (__default_morecore): Likewise.
18371 * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
57f41c40
AS
18372 * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
18373 (_obstack_allocated_p, obstack_free, _obstack_memory_used)
18374 (print_and_abort): Likewise.
6c8dbf00
OB
18375 * malloc/obstack.h: Likewise.
18376 * malloc/set-freeres.c (__libc_freeres): Likewise.
18377 * malloc/tst-mallocstate.c (main): Likewise.
18378 * malloc/tst-mtrace.c (main): Likewise.
18379 * malloc/tst-realloc.c (do_test): Likewise.
18380
d4124212
SP
183812013-01-02 Siddhesh Poyarekar <siddhesh@redhat.com>
18382
9a3c6a6f
SP
18383 [BZ #16366]
18384 * nscd/netgroupcache.c (do_notfound): New function.
18385 (addgetnetgrentX): Use it.
18386
d4124212
SP
18387 [BZ # 16365]
18388 * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
18389 NSS_STATUS_NOTFOUND.
18390
97b9a009
JM
183912014-01-01 Joseph Myers <joseph@codesourcery.com>
18392
18393 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
18394 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18395
d4697bc9
AM
183962014-01-01 Allan McRae <allan@archlinux.org>
18397
ddb3687f
AM
18398 * scripts/update-copyrights: Update configure input file suffix.
18399
88726d48
AM
18400 * NEWS: Update copyright year.
18401 * catgets/gencat.c: Likewise.
18402 * csu/version.c: Likewise.
18403 * debug/catchsegv.sh: Likewise.
18404 * debug/pcprofiledump.c: Likewise.
18405 * debug/xtrace.sh: Likewise.
18406 * elf/ldconfig.c: Likewise.
18407 * elf/ldd.bash.in: Likewise.
18408 * elf/pldd.c: Likewise.
18409 * elf/sotruss.ksh: Likewise.
18410 * elf/sprof.c: Likewise.
18411 * iconv/iconv_prog.c: Likewise.
18412 * iconv/iconvconfig.c: Likewise.
18413 * locale/programs/locale.c: Likewise.
18414 * locale/programs/localedef.c: Likewise.
18415 * login/programs/pt_chown.c: Likewise.
18416 * malloc/memusage.sh: Likewise.
18417 * malloc/memusagestat.c: Likewise.
18418 * malloc/mtrace.pl: Likewise.
18419 * manual/libc.texinfo: Likewise.
18420 * nscd/nscd.c: Likewise.
18421 * nss/getent.c: Likewise.
18422 * nss/makedb.c: Likewise.
18423 * posix/getconf.c: Likewise.
18424 * scripts/test-installation.pl: Likewise.
18425
d4697bc9
AM
18426 * All files with FSF copyright notices: Update copyright dates
18427 using scripts/update-copyrights.
18428 * intl/plural.c: Regenerated.
18429 * locale/programs/charmap-kw.h: Likewise.
18430 * locale/programs/locfile-kw.h: Likewise.
18431
c8590f9d
MF
184322013-12-31 Mike Frysinger <vapier@gentoo.org>
18433
18434 * sysdeps/unix/sysv/linux/configure: Regenerated.
18435 * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
18436 the linux/fanotify.h header.
18437 * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
18438 HAVE_LINUX_FANOTIFY_H is defined.
18439
b19221b9
SP
184402013-12-31 Siddhesh Poyarekar <siddhesh@redhat.com>
18441
dd1d85e5
SP
18442 * benchtests/cos-inputs: New inputs.
18443 * benchtests/sin-inputs: Likewise.
18444
1acbb90f
SP
18445 * benchtests/atan-inputs: New inputs. Fix name of multiple
18446 precision fallback inputs.
18447
4c012ed3
SP
18448 * benchtests/atanh-inputs: New inputs.
18449 * benchtests/tanh-inputs: Likewise.
18450
eff98324
SP
18451 * benchtests/acosh-inputs: New inputs.
18452 * benchtests/asinh-inputs: Likewise.
18453
ce641152
SP
18454 * benchtests/cosh-inputs: New inputs.
18455 * benchtests/sinh-inputs: Likewise.
18456
b19221b9
SP
18457 * benchtests/acos-inputs: Add more inputs.
18458 * benchtests/asin-inputs: Likewise.
18459
030a4976 184602013-12-30 Ville Skytta <ville.skytta@iki.fi>
9dcc8f11 18461
030a4976 18462 [BZ #16375]
9dcc8f11
VS
18463 * manual/arith.texi: Fix spelling.
18464 * manual/charset.texi: Likewise.
18465 * manual/errno.texi: Likewise.
18466 * manual/filesys.texi: Likewise.
18467 * manual/lang.texi: Likewise.
18468 * manual/llio.texi: Likewise.
18469 * manual/locale.texi: Likewise.
18470 * manual/message.texi: Likewise.
18471 * manual/resource.texi: Likewise.
18472 * manual/search.texi: Likewise.
18473 * manual/setjmp.texi: Likewise.
18474 * manual/stdio.texi: Likewise.
18475 * manual/string.texi: Likewise.
18476 * manual/sysinfo.texi: Likewise.
18477 * manual/time.texi: Likewise.
18478
11520a57
CD
184792013-12-27 Carlos O'Donell <carlos@redhat.com>
18480
18481 * po/sl.po: New file.
18482
471103ae
MF
184832013-12-27 Mike Frysinger <vapier@gentoo.org>
18484
18485 * .gitignore: Add core/.gdbinit/.gdb_history.
18486
6c9642ed
AM
184872013-12-27 Allan McRae <allan@archlinux.org>
18488
18489 [BZ #16369]
18490 * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
18491 Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
18492
3f637079
BM
184932013-12-24 Brooks Moses <bmoses@google.com>
18494
18495 * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
18496 all compilers that claim C++98 compliance, not just GCC.
18497 * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
18498 Likewise.
18499
abc26e99
MK
185002013-12-24 Maxim Kuvyrkov <maxim@kugelworks.com>
18501
18502 * NEWS: Restore accidentally deleted bug-fix entries.
18503
362b47fe
MK
185042013-12-24 Maxim Kuvyrkov <maxim@kugelworks.com>
18505 Ondřej Bílka <neleai@seznam.cz>
18506
18507 [BZ #15073]
18508 * malloc/malloc.c (_int_free): Perform sanity check only if we
11520a57 18509 have_lock.
362b47fe 18510
b9bcbbcb
OB
185112013-12-23 Ondřej Bílka <neleai@seznam.cz>
18512
18513 [BZ #12986]
18514 * manual/stdio.texi (String Input Conversions): Clarify that character
18515 classes are not supported.
18516
fb55fcd2
AZ
185172013-12-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18518
18519 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18520
ef7344f0
JM
185212013-12-22 Joseph Myers <joseph@codesourcery.com>
18522
4f40e4b3
JM
18523 [BZ #16337]
18524 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
18525 Calculate results for small negative arguments directly rather
18526 than using reflection formula with special underflow handling.
18527
ef7344f0
JM
18528 * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
18529 * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
18530 sysdeps/unix/bsd/bsd4.4/syscalls.list.
18531 (fchflags): Likewise.
18532 (revoke): Likewise.
18533 (setlogin): Likewise.
18534 (sigaltstack): Likewise.
18535 (wait4): Likewise.
18536 (sigblock): Remove.
18537 (sigsetmask): Likewise.
18538 (wait3): Likewise.
18539 (waitpid): Likewise.
18540 * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
18541 * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
18542 file.
18543 * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
18544 * sysdeps/unix/bsd/Makefile: ... here.
18545 * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
18546 * sysdeps/unix/bsd/Versions: ... here.
18547 * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
18548 * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
18549 * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
18550 * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
18551 * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
18552 * sysdeps/unix/bsd/sigblock.c: ... here.
18553 * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
18554 * sysdeps/unix/bsd/sigsetmask.c: ... here.
18555 * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
18556 * sysdeps/unix/bsd/sigvec.c: ... here.
18557 * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
18558 * sysdeps/unix/bsd/tcdrain.c: ... here.
18559 * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
18560 * sysdeps/unix/bsd/tcgetattr.c: ... here.
18561 * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
18562 * sysdeps/unix/bsd/tcsetattr.c: ... here.
18563 * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
18564 * sysdeps/unix/bsd/wait.c: ... here.
18565 * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
18566 * sysdeps/unix/bsd/wait3.c: ... here.
18567 * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
18568 * sysdeps/unix/bsd/waitpid.c: ... here.
18569
5b0626b9
JM
185702013-12-21 Joseph Myers <joseph@codesourcery.com>
18571
18572 [BZ #16356]
18573 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
18574 round-to-nearest for [!USE_AS_EXPM1L].
18575 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
18576 * math/auto-libm-test-in: Do not expect cosh tests to fail. Add
18577 more tests of exp and exp10. Expect some exp10 tests to miss
18578 exceptions or fail in directed rounding modes.
18579 * math/auto-libm-test-out: Regenerated.
18580 * math/libm-test.inc (exp10_tonearest_test_data): New array.
18581 (exp10_test_tonearest): New function.
18582 (exp10_towardzero_test_data): New array.
18583 (exp10_test_towardzero): New function.
18584 (exp10_downward_test_data): New array.
18585 (exp10_test_downward): New function.
18586 (exp10_upward_test_data): New array.
18587 (exp10_test_upward): New function.
18588 (main): Call the new functions.
18589 * sysdeps/i386/fpu/libm-test-ulps: Update.
18590 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18591
7fda5682
JM
185922013-12-20 Joseph Myers <joseph@codesourcery.com>
18593
31e3a405
JM
18594 * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
18595 asinh, atan, atan2, atanh, cbrt, cos and cosh.
18596 * math/auto-libm-test-out: Regenerated.
18597 * math/libm-test.inc (acosh_test_data): Add more tests.
18598 (atanh_test_data): Likewise.
18599 (ceil_test_data): Likewise.
18600 (copysign_test_data): Likewise.
18601 * sysdeps/i386/fpu/libm-test-ulps: Update.
18602 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18603
85bff96a
JM
18604 * timezone/checktab.awk: Update from tzcode 2013i.
18605 * timezone/private.h: Likewise.
18606 * timezone/scheck.c: Likewise.
18607 * timezone/tzfile.h: Likewise.
18608 * timezone/tzselect.ksh: Likewise.
18609 * timezone/zdump.c: Likewise.
18610 * timezone/zic.c: Likewise.
18611
b7867a3b
JM
18612 * math/auto-libm-test-in: Add tests of cpow.
18613 * math/auto-libm-test-out: Regenerated.
18614 * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
57f41c40 18615 * math/gen-auto-libm-tests.c (func_calc_method): Add value
b7867a3b
JM
18616 mpc_cc_c.
18617 (func_calc_desc): Add mpc_cc_c union field.
18618 (test_functions): Add cpow.
18619 (special_fill_2pi): New function.
18620 (special_real_inputs): Add 2pi.
18621 (calc_generic_results): Handle mpc_cc_c.
18622 * sysdeps/i386/fpu/libm-test-ulps: Update.
18623 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18624
7fda5682
JM
18625 * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
18626 csqrt, ctan and ctanh.
18627 * math/auto-libm-test-out: Regenerated.
18628 * math/libm-test.inc (TEST_COND_x86_64): New macro.
18629 (TEST_COND_x86): Likewise.
18630 (ccos_test_data): Use AUTO_TESTS_c_c.
18631 (ccosh_test_data): Likewise.
18632 (cexp_test_data): Likewise.
18633 (clog_test_data): Likewise.
18634 (csqrt_test_data): Likewise.
18635 (ctan_test_data): Likewise.
18636 (ctan_tonearest_test_data): Likewise.
18637 (ctan_towardzero_test_data): Likewise.
18638 (ctan_downward_test_data): Likewise.
18639 (ctan_upward_test_data): Likewise.
18640 (ctanh_test_data): Likewise.
18641 (ctanh_tonearest_test_data): Likewise.
18642 (ctanh_towardzero_test_data): Likewise.
18643 (ctanh_downward_test_data): Likewise.
18644 (ctanh_upward_test_data): Likewise.
18645 * math/gen-auto-libm-tests.c (func_calc_method): Add value
18646 mpc_c_c.
18647 (func_calc_desc): Add mpc_c_c union field.
18648 (FUNC_mpc_c_c): New macro.
18649 (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
18650 ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
18651 ctanh.
18652 (special_fill_min_subnorm_p120): New function.
18653 (special_real_inputs): Add min_subnorm_p120.
18654 (calc_generic_results): Handle mpc_c_c.
18655 * sysdeps/i386/fpu/libm-test-ulps: Update.
18656 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18657
5ff8d60e
SP
186582013-12-20 Siddhesh Poyarekar <siddhesh@redhat.com>
18659
57f41c40
AS
18660 * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
18661 (do_sin_slow): New functions.
18662 (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
18663 (cslow2, csloww1, csloww2): Use the new functions.
392dd2de 18664
84ba214c
SP
18665 * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
18666 Use M to change sign of result instead of X. Assume X is
18667 positive.
18668 (csloww1): Likewise.
18669 (__sin): Adjust.
18670 (__cos): Adjust.
18671
975195e4
SP
18672 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
18673 arguments A and DA.
18674 (__sin): Adjust.
18675 (__cos): Likewise.
18676
5ff8d60e
SP
18677 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
18678 (__cos): Likewise.
18679 (sloww1): Don't adjust sign of DX.
18680 (csloww1): Likewise.
18681 (sloww2): Use X directly and don't adjust sign of DX.
18682 (csloww2): Likewise.
18683
eb983568
JM
186842013-12-19 Joseph Myers <joseph@codesourcery.com>
18685
64a17f1a
JM
18686 * math/auto-libm-test-in: Add tests of cabs and carg.
18687 * math/auto-libm-test-out: Regenerated.
18688 * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
18689 (carg_test_data): Likewise.
18690 * math/gen-auto-libm-tests.c (func_calc_method): Add value
18691 mpc_c_f.
18692 (func_calc_desc): Add mpc_c_f union field.
18693 (test_functions): Add cabs and carg.
18694 (calc_generic_results): Handle mpc_c_f.
18695
eb983568
JM
18696 * sysdeps/powerpc/powerpc32/libgcc-compat.S
18697 [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
18698 as a macro and a compat symbol.
18699 [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
18700 [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
18701 [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
18702 [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
18703 [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
18704 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
18705 not use .hidden.
18706 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
18707 Likewise.
18708 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
18709 Likewise.
18710 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
18711 Likewise.
18712 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
18713 Likewise.
18714 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
18715 Likewise.
18716 * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
18717 __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
18718 from GLIBC_2.3.2.
18719
6eeb678a
AZ
187202013-12-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18721
18722 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18723
6f6fc482
JM
187242013-12-19 Joseph Myers <joseph@codesourcery.com>
18725
21fea2e2
JM
18726 * manual/texinfo.tex: Update to version 2013-11-26.10 with
18727 trailing whitespace removed.
18728 * scripts/config.guess: Update to version 2013-11-29.
18729 * scripts/config.sub: Update to version 2013-10-01.
18730
6f6fc482
JM
18731 * math/auto-libm-test-in: Add tests of sincos.
18732 * math/auto-libm-test-out: Regenerated.
18733 * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
18734 * math/gen-auto-libm-tests.c (func_calc_method): Add value
18735 mpfr_f_11.
18736 (func_calc_desc): Add mpfr_f_11 union field.
18737 (test_functions): Add sincos.
18738 (calc_generic_results): Handle mpfr_f_11.
18739 * sysdeps/i386/fpu/libm-test-ulps: Update.
18740 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18741
83f5c32d
AS
187422013-12-19 Andreas Schwab <schwab@suse.de>
18743
18744 * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
18745 CALL_MCOUNT.
18746 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
18747 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
18748 [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
18749
c688b419
JM
187502013-12-19 Joseph Myers <joseph@codesourcery.com>
18751
335ee092
JM
18752 * math/gen-libm-test.pl (%beautify): Remove M_* constants.
18753 * sysdeps/i386/fpu/libm-test-ulps: Update.
18754 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18755
f88acd39
JM
18756 [BZ #16293]
18757 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
18758 round-to-nearest mode when using frndint.
18759 * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
18760 * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
18761 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
18762 Likewise.
18763 * math/auto-libm-test-in: Add more tests of expm1. Do not expect
18764 sinh test to fail.
18765 * math/auto-libm-test-out: Regenerated.
18766 * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
18767 (TEST_COND_x86): Likewise.
18768 (expm1_tonearest_test_data): New array.
18769 (expm1_test_tonearest): New function.
18770 (expm1_towardzero_test_data): New array.
18771 (expm1_test_towardzero): New function.
18772 (expm1_downward_test_data): New array.
18773 (expm1_test_downward): New function.
18774 (expm1_upward_test_data): New array.
18775 (expm1_test_upward): New function.
18776 (main): Run the new test functions.
18777 * sysdeps/i386/fpu/libm-test-ulps: Update.
18778 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18779
c688b419
JM
18780 * include/features.h: Update comment documenting feature test
18781 macros. Mention _DEFAULT_SOURCE in comment.
18782 [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
18783 [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
18784 _BSD_SOURCE and _SVID_SOURCE.
18785 [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
18786 !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
18787 !_SVID_SOURCE]: Likewise.
18788 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18789 (__USE_POSIX_IMPLICITLY): Define.
18790 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18791 (_POSIX_SOURCE): Undefine and redefine.
18792 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
18793 (_POSIX_C_SOURCE): Likewise.
18794 * manual/creature.texi (_DEFAULT_SOURCE): Document.
18795 (Feature Test Macros): Update documentation of default features.
18796
9f6e964c
RS
187972013-12-19 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18798
18799 * benchtests/Makefile: Add bench-strtok.
18800 * benchtests/bench-strtok.c: New file: strtok benchtest.
18801
ee0a148a
AM
188022013-12-19 Allan McRae <allan@archlinux.org>
18803
18804 * manual/install.texi: Suppress menu for plain text output.
18805 * INSTALL: Regenerated.
18806
b9ab448f
BM
188072013-12-18 Brooks Moses <bmoses@google.com>
18808
18809 [BZ #15846]
18810 * misc/getauxval.c: Include errno.h.
18811 (__getauxval): Set errno to ENOENT if the requested type is not
18812 found.
18813 * misc/sys/auxv.h (getauxval): Document that it may set errno;
18814 don't declare with __attribute_const__.
18815 * elf/tst-auxv.c: Add tests for errno and type-not-found case.
18816 * manual/startup.texi: Document that getauxval sets errno.
18817
23776487
JM
188182013-12-18 Joseph Myers <joseph@codesourcery.com>
18819
f889953b
JM
18820 * math/auto-libm-test-in: Add tests of jn and yn.
18821 * math/auto-libm-test-out: Regenerated.
18822 * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
18823 (yn_test_data): Likewise.
18824 * math/gen-auto-libm-tests.c (func_calc_method): Add value
18825 mpfr_if_f.
18826 (func_calc_desc): Add mpfr_if_f union field.
18827 (FUNC_mpfr_if_f): New macro.
18828 (test_functions): Add jn and yn.
18829 (calc_generic_results): Assert type of second input for
18830 mpfr_ff_f. Handle mpfr_if_f.
18831 (output_for_one_input_case): Disable all checking for arguments
18832 fitting floating-point types in case of an integer argument.
18833 * sysdeps/i386/fpu/libm-test-ulps: Update.
18834 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18835
23776487
JM
18836 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
18837 Don't expect fegetround reference in libm.so.
18838
cb756c6d
MS
188392013-12-17 Marcus Shawcroft <marcus.shawcroft@linaro.org>
18840
18841 * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
18842 $(config-cflags-nofma).
18843
2dec468f
JM
188442013-12-18 Joseph Myers <joseph@codesourcery.com>
18845
5953eb3a
JM
18846 * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
18847 * math/auto-libm-test-out: Regenerated.
18848
2dec468f
JM
18849 [BZ #16338]
18850 * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
18851 to determine exponent and adjust argument to have exponent of -1.
18852 * math/auto-libm-test-in: Add more tests of log, log10, log1p and
18853 log2.
18854 * math/auto-libm-test-out: Regenerated.
18855 * sysdeps/i386/fpu/libm-test-ulps: Update.
18856 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18857
4d84e6ad
OB
188582013-12-18 Ondřej Bílka <neleai@seznam.cz>
18859
18860 * manual/probes.texi: Remove cases when per-thread arenas are
18861 disabled.
18862
1818483b
AS
188632013-12-18 Andreas Schwab <schwab@suse.de>
18864
18865 * sysdeps/i386/i686/multiarch/strstr.c: Remove.
18866 * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
18867 * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
18868 * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
18869 * sysdeps/i386/i686/multiarch/Makefile: Update.
18870 * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
18871
25de95bf
JM
188722013-12-17 Joseph Myers <joseph@codesourcery.com>
18873
18874 * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
18875 * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
18876
674762d9
PE
188772013-12-17 Paul Eggert <eggert@cs.ucla.edu>
18878
ed27ed83 18879 [BZ #15968]
0748546f
PE
18880 Support TZ transition times < 00:00:00.
18881 This is needed for version-3 tz-format files; it supports time
18882 stamps past 2037 for America/Godthab (the only entry in the tz
18883 database for which this change is relevant).
18884 * manual/time.texi (TZ Variable): Document transition times
18885 from -167:59:59 through -00:00:01.
18886 * time/tzset.c (tz_rule): Time of day is now signed.
18887 (__tzset_parse_tz): Parse negative time of day.
18888
4480e934
PE
18889 Document TZ transition times >= 25:00:00.
18890 * manual/time.texi (TZ Variable): Document transition times from
18891 25:00:00 through 167:59:59. These are already supported, and this
18892 support will help with version-3 tz-format files.
18893
69947401
PE
18894 * manual/time.texi (TZ Variable): Modernize North America example
18895 to reflect current (i.e., 2007-and-later) daylight saving rules.
18896
674762d9
PE
18897 * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
18898
7011c262
JM
188992013-12-17 Joseph Myers <joseph@codesourcery.com>
18900
2fc6557e
JM
18901 * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
18902 * sysdeps/unix/bsd/bits/stat.h: Likewise.
18903 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
18904 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
18905 * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
18906 * sysdeps/unix/bsd/bsdstat.h: Likewise.
18907 * sysdeps/unix/bsd/clock.c: Likewise.
18908 * sysdeps/unix/bsd/i386/vfork.S: Likewise.
18909 * sysdeps/unix/bsd/i386/wait3.S: Likewise.
18910 * sysdeps/unix/bsd/init-posix.c: Likewise.
18911 * sysdeps/unix/bsd/poll.c: Likewise.
18912 * sysdeps/unix/bsd/ptsname.c: Likewise.
18913 * sysdeps/unix/bsd/seekdir.c: Likewise.
18914 * sysdeps/unix/bsd/setegid.c: Likewise.
18915 * sysdeps/unix/bsd/seteuid.c: Likewise.
18916 * sysdeps/unix/bsd/setgid.c: Likewise.
18917 * sysdeps/unix/bsd/setrgid.c: Likewise.
18918 * sysdeps/unix/bsd/setruid.c: Likewise.
18919 * sysdeps/unix/bsd/setsid.c: Likewise.
18920 * sysdeps/unix/bsd/setuid.c: Likewise.
18921 * sysdeps/unix/bsd/sigaction.c: Likewise.
18922 * sysdeps/unix/bsd/sigprocmask.c: Likewise.
18923 * sysdeps/unix/bsd/sigsuspend.c: Likewise.
18924 * sysdeps/unix/bsd/sys/reboot.h: Likewise.
18925 * sysdeps/unix/bsd/telldir.c: Likewise.
18926 * sysdeps/unix/bsd/times.c: Likewise.
18927 * sysdeps/unix/bsd/usleep.c: Likewise.
18928
029c7b25
JM
18929 * misc/Makefile (install-lib): Remove libbsd-compat.a.
18930 ($(objpfx)libbsd-compat.a): Remove rule.
18931
7011c262
JM
18932 * include/features.h (__FAVOR_BSD): Do not define.
18933 * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
18934 features conflicting with POSIX.
18935 (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
18936 (_BSD_SOURCE): Remove description of not being a subset of other
18937 feature test macros.
18938 * manual/job.texi (getpgrp): Do not document BSD version.
18939 (getpgid): Do not document by reference to BSD getpgrp.
18940 * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
18941 * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
18942 * signal/signal.h [__FAVOR_BSD]: Likewise.
18943 * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
18944 instead of making contents conditional on [__FAVOR_BSD].
18945 * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
18946
affb6f78
AZ
189472013-12-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18948
18949 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18950
c88769dd
JM
189512013-12-17 Joseph Myers <joseph@codesourcery.com>
18952
6432a540
JM
18953 [BZ #16314]
18954 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
18955 values below 2**-450, not 2**-500.
18956 * math/auto-libm-test-in: Don't allow spurious underflow from
18957 hypot.
18958 * math/auto-libm-test-out: Regenerated.
18959
c88769dd
JM
18960 [BZ #16316]
18961 [BZ #16330]
18962 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
18963 values of ha and hb and sort them after adjusting subnormal
18964 arguments.
18965 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
18966 Likewise.
18967 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
18968 values of ea and eb and sort them after adjusting subnormal
18969 arguments.
18970 * math/auto-libm-test-in: Do not expect some hypot tests of
18971 subnormals to fail. Add more hypot tests.
18972 * math/auto-libm-test-out: Regenerated.
18973
29618f6b
KK
189742013-12-16 Kaz Kojima <kkojima@rr.iij4u.or.jp>
18975
18976 [BZ #13304]
18977 * sysdeps/sh/s_fma.c: New file.
18978 * sysdeps/sh/s_fmaf.c: New file.
18979 * sysdeps/sh/soft-fp/sfp-machine.h: New file. Based on arm
18980 version.
18981 * sysdeps/sh/Implies: Add sh/soft-fp.
18982
eacfdfbf
RM
189832013-12-16 Roland McGrath <roland@hack.frob.com>
18984
18985 * elf/dl-error.c (struct catch): Add new member `errcode'. Add a
18986 level of indirection to members `objname', `errstring', `malloced'.
18987 (_dl_signal_error): Store through pointers in *LCATCH rather modifying
18988 *LCATCH itself. Set *LCATCH->errcode to ERRCODE rather than passing
18989 it as the __longjmp argument (just pass 1 instead).
18990 (_dl_catch_error): Initialize C with argument pointers and address of
18991 volatile local ERRCODE rather than copying values out of C at return.
18992
ff362e5b
JM
189932013-12-16 Joseph Myers <joseph@codesourcery.com>
18994
18995 * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
18996 * math/auto-libm-test-out: Regenerated.
18997 * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
18998 (hypot_test_data): Likewise.
18999 (pow_test_data): Likewise.
19000 (pow_tonearest_test_data): Likewise.
19001 * math/gen-auto-libm-tests.c (func_calc_method): Add value
19002 mpfr_ff_f.
19003 (func_calc_desc): Add mpfr_ff_f union field.
19004 (FUNC_mpfr_ff_f): New macro.
19005 (test_functions): Add atan2, hypot and pow.
19006 (special_fill_min): New function.
19007 (special_fill_minus_min): Likewise.
19008 (special_fill_min_subnorm): Likewise.
19009 (special_fill_minus_min_subnorm): Likewise.
19010 (special_real_inputs): Add min, -min, min_subnorm and
19011 -min_subnorm.
19012 (calc_generic_results): Handle mpfr_ff_f.
19013 * sysdeps/i386/fpu/libm-test-ulps: Update.
19014 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19015
5764c27f
WN
190162013-12-16 Will Newton <will.newton@linaro.org>
19017
19018 * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
19019 (Aligned Memory Blocks): Add documentation for aligned_alloc
19020 and suggest it as an alternative to posix_memalign.
19021 (Hooks for Malloc): Document __memalign_hook is also called
19022 for aligned_alloc. (Summary of Malloc): Add summary for
19023 aligned alloc. Document __memalign_hook is also called
19024 for aligned_alloc.
19025
0a096e44
WN
190262013-12-16 Will Newton <will.newton@linaro.org>
19027
19028 * manual/memory.texi (Malloc Examples): Clarify default
19029 alignment documentation. Suggest posix_memalign rather
19030 than memalign or valloc.
19031 (Aligned Memory Blocks): Remove suggestion to use memalign
19032 or valloc. Remove obsolete comment about BSD.
19033 Document memalign errno values and mark the function obsolete.
19034 Document posix_memalign returned error codes. Mark valloc
19035 as obsolete. (Hooks for Malloc): __memalign_hook is also
19036 called for posix_memalign and valloc.
19037 (Summary of Malloc): Add posix_memalign to function summary.
19038 __memalign_hook is also called for posix_memalign and valloc.
19039
8d561986
SP
190402013-12-16 Siddhesh Poyarekar <siddhesh@redhat.com>
19041
19042 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
19043 TAYLOR_SIN.
19044 (__sin): Adjust.
19045 (__cos): Likewise.
19046 (sloww): Use mynumber union. Expand ternary operator into
19047 if-else statements.
19048 (cslow): use mynumber union.
19049
73616a74
AM
190502013-12-16 Allan McRae <allan@archlinux.org>
19051
9e8ac24b
AM
19052 * configure.ac: Set AUTOCONF when maintainer-mode is not used.
19053 * configure: Regenerated.
19054
6f8e37eb
AM
19055 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
19056
8894bad3
AM
19057 [BZ #14120]
19058 * configure.ac: Added --enable-maintainer-mode. Check for
19059 autoconf when enabled.
19060 * configure: Regenerated.
19061
73616a74
AM
19062 * nscd/nscd.service: New file.
19063 * nscd/nscd.tmpfiles: New file.
19064
584b18eb
OB
190652013-12-14 Ondřej Bílka <neleai@seznam.cz>
19066
19067 [BZ #12100]
19068 * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
19069 * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
19070 * sysdeps/x86_64/multiarch/strstr.c: ... here.
19071 (strstr): Add __strstr_sse2_unaligned ifunc.
19072 * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
19073 * sysdeps/x86_64/multiarch/strcasestr.c ... here.
19074 (strcasestr): Remove __strcasestr_sse42 ifunc.
19075 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
19076 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
19077 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
19078
8a5c7897
KK
190792013-12-14 Kaz Kojima <kkojima@rr.iij4u.or.jp>
19080
19081 * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
19082 * sysdeps/sh/bits/fenv.h: ... here.
19083 * sysdeps/sh/sh4/fpu/bits: Remove directory.
19084
fd712ef3
AZ
190852013-12-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19086
19087 * NEWS: Mention ppc64 STT_GNU_IFUNC support.
19088
42fcb46c
AZ
19089 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
19090 hypotf multiarch implementations.
19091 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
19092 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
19093 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
19094 multiarch hypot for PPC64.
19095 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
19096 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
19097 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
19098 multiarch hypotf for PPC64.
19099
83efded4
AZ
19100 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
19101 modff multiarch implementations.
19102 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
19103 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
19104 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
19105 multiarch modf for PPC64.
19106 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
19107 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
19108 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
19109 multiarch modff for PPC64.
19110
43e246d2
AZ
19111 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
19112 and logl multiarch implementations.
19113 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
19114 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
19115 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
19116 multiarch logb for PPC64.
19117 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
19118 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
19119 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
19120 multiarch logb for PPC64.
19121 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
19122 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
19123 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
19124 multiarch logb for PPC64.
19125
8fdad123
AZ
19126 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
19127 isinff multiarch implementation.
19128 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
19129 file.
19130 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
19131 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
19132 multiarch isinf for PPC64.
19133 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
19134 file.
19135 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
19136 multiarch isinff for PPC64.
19137
1481d706
AZ
19138 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
19139 finitef multiarch implementation.
19140 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
19141 file.
19142 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
19143 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
19144 multiarch finite for PPC64.
19145 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
19146 file.
19147 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
19148 multiarch finitef for PPC64.
19149
5ccd5fc8
AZ
19150 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
19151 lrint multiarch implementation.
19152 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
19153 file.
19154 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
19155 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
19156 multiarch llrint for PPC64.
19157 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
19158 multiarch lrint for PPC64.
19159
2568f3fa
AZ
19160 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
19161 copysignf multiarch implementation.
19162 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
19163 file.
19164 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
19165 file.
19166 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
19167 multiarch copysign for PPC64.
19168 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
19169 multiarch copysignf for PPC64.
19170
1cb341fd
AZ
19171 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
19172 multiarch implementation.
19173 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
19174 file.
19175 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
19176 file.
19177 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
19178 file.
19179 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
19180 file.
19181 multiarch llround for PPC64.
19182 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
19183 multiarch trunc for PPC64.
19184 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
19185 multiarch truncf for PPC64.
19186
59a3e194
AZ
19187 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
19188 multiarch implementation.
19189 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
19190 file.
19191 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
19192 file.
19193 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
19194 file.
19195 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
19196 file.
19197 multiarch llround for PPC64.
19198 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
19199 multiarch round for PPC64.
19200 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
19201 multiarch roundf for PPC64.
19202
357fd3b4
AZ
19203 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
19204 multiarch implementation.
19205 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
19206 file.
19207 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
19208 file.
19209 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
19210 file.
19211 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
19212 file.
19213 multiarch llround for PPC64.
19214 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
19215 multiarch floor for PPC64.
19216 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
19217 multiarch floorf for PPC64.
19218
96770f12
AZ
19219 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
19220 multiarch implementation.
19221 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
19222 file.
19223 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
19224 file.
19225 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
19226 file.
19227 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
19228 file.
19229 multiarch llround for PPC64.
19230 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
19231 multiarch ceil for PPC64.
19232 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
19233 multiarch ceilf for PPC64.
19234
c3627f6e
AZ
19235 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
19236 multiarch implementation.
19237 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
19238 file.
19239 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
19240 file.
19241 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
19242 file.
19243 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
19244 multiarch llround for PPC64.
19245 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
19246 multiarch lround for PPC64.
19247
b2284ad7
AZ
19248 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
19249 multiarch implementation.
19250 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
19251 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
19252 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
19253 file.
19254 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
19255 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
19256 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
19257 multiarch isnan for PPC64.
19258 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
19259 multiarch isnanf for PPC64.
19260
69bbc63d
AZ
19261 * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
19262 * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
19263 * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
19264 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
19265 * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
19266 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
19267
c24517c9
AZ
19268 * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
19269 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
19270 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
19271 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
19272
a52374e8
AZ
19273 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
19274 multiarch implementations.
19275 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19276 (__libc_ifunc_impl_list): Likewise.
19277 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
19278 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
19279 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
19280 multiarch stpcpy for PPC64.
19281
7f5ec113
AZ
19282 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
19283 multiarch implementations.
19284 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19285 (__libc_ifunc_impl_list): Likewise.
19286 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
19287 * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
19288 * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
19289 multiarch strcpy for PPC64.
19290
e28bcd42
AZ
19291 * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
19292 redefine function name.
19293 (_wordcopy_fwd_dest_aligned): Likewise.
19294 (_wordcopy_bwd_aligned): Likewise.
19295 (_wordcopy_bwd_dest_aligned): Likewise.
19296 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
19297 multiarch implementations.
19298 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19299 (__libc_ifunc_impl_list): Likewise.
19300 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
19301 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
19302 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
19303 * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
19304 multiarch wcscpy for PPC64.
19305
92cacfce
AZ
19306 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
19307 multiarch implementations.
19308 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19309 (__libc_ifunc_impl_list): Likewise.
19310 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
19311 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
19312 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
19313 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
19314 multiarch wcscpy for PPC64.
19315
7b714620
AZ
19316 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
19317 multiarch implementations.
19318 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19319 (__libc_ifunc_impl_list): Likewise.
19320 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
19321 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
19322 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
19323 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
19324 multiarch wcsrchr for PPC64.
19325
16fd2ae3
AZ
19326 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
19327 multiarch implementations.
19328 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19329 (__libc_ifunc_impl_list): Likewise.
19330 * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
19331 * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
19332 * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
19333 * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
19334 multiarch wcschr for PPC64.
19335
9ee2969b
AZ
19336 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
19337 multiarch implementations.
19338 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19339 (__libc_ifunc_impl_list): Likewise.
19340 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
19341 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
19342 * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
19343 multiarch strchrnul for PPC64.
19344
372dc060
AZ
19345 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
19346 implementations.
19347 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19348 (__libc_ifunc_impl_list): Likewise.
19349 * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
19350 * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
19351 * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
19352 * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
19353 strchr for PPC64.
19354
24c2c3b9
AZ
19355 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
19356 implementations.
19357 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19358 (__libc_ifunc_impl_list): Likewise.
19359 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
19360 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
19361 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
19362 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
19363 strncmp for PPC64.
19364
1c92d9a0
AZ
19365 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
19366 multiarch implementations.
19367 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19368 (__libc_ifunc_impl_list): Likewise.
19369 * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
19370 * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
19371 strncasecmp for PPC64.
19372 * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
19373 * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
19374 multiarch strncasecmp_l for PPC64.
19375
17de3ee3
AZ
19376 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
19377 multiarch implementations.
19378 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
19379 (__libc_ifunc_impl_list): Likewise.
19380 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
19381 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
19382 multiarch strcasecmp for PPC64.
19383 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
19384 file.
19385 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
19386 multiarch strcasecmp_l for PPC64.
19387
62982bf9
AZ
19388 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
19389 implementations.
19390 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19391 (__libc_ifunc_impl_list): Likewise.
19392 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
19393 * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
19394 * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
19395 strnlen for PPC64.
19396
a65f4904
AZ
19397 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
19398 implementations.
19399 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19400 (__libc_ifunc_impl_list): Likewise.
19401 * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
19402 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
19403 * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
19404 strlen for PPC64.
19405
1fd005ad
AZ
19406 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
19407 implementations.
19408 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19409 (__libc_ifunc_impl_list): Likewise.
19410 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
19411 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
19412 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
19413 rawmemrchr for PPC64.
19414
cd05ba91
AZ
19415 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
19416 implementation.
19417 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19418 (__libc_ifunc_impl_list): Likewise.
19419 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
19420 * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
19421 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
19422 memrchr for PPC64.
19423
870f8676
AZ
19424 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
19425 implementation.
19426 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19427 (__libc_ifunc_impl_list): Likewise.
19428 * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
19429 * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
19430 * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
19431 memchr for PPC64.
19432
f00be62b
AZ
19433 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
19434 implementation.
19435 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19436 (__libc_ifunc_impl_list): Likewise.
19437 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
19438 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
19439 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
19440 mempcpy for PPC64.
19441
8a29a3d0
AZ
19442 * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
19443 avoid cretion of __bzero symbol.
19444 * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
19445 Likewise.
19446 * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
19447 Likewise.
19448 * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
19449 Likewise.
19450 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
19451 multiarch implementations.
19452 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19453 (__libc_ifunc_impl_list): Likewise.
19454 * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
19455 * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
19456 * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
19457 * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
19458 bzero for PPC32.
19459 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
19460 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
19461 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
19462 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
19463 * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
19464 memset for PPC64.
19465 * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
19466
07253fcf
AZ
19467 * string/memcmp.c (memcmp): Using macro to redefine symbol name.
19468 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
19469 implementations.
19470 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
19471 (__libc_ifunc_impl_list): Likewise.
19472 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
19473 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
19474 * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
19475 * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
19476 memcmp for PPC64.
19477
b5beafbc
AZ
19478 * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
19479 multiarch for POWER/PPC64.
19480 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
19481 * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
19482 * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
19483 * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
19484 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
19485 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
19486 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
19487 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
19488 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
19489 memcpy for PPC64.
19490
5e6a4d4b
AZ
19491 * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
19492 * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
19493 * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
19494 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
19495 * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
19496 * sysdeps/powerpc/powerpc64/power5/Implies: New File.
19497 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
19498 * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
19499 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
19500 * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
19501 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
19502 * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
19503 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
19504 * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
19505 * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
19506 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
19507 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
19508 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
19509 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
19510 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
19511 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
19512 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
19513
ddfab6dc
KK
195142013-12-12 Kaz Kojima <kkojima@rr.iij4u.or.jp>
19515
19516 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
19517
19b5525e
SP
195182013-12-12 Siddhesh Poyarekar <siddhesh@redhat.com>
19519
19520 * benchtests/Makefile (bench): Add exp2 and log2.
19521 (LDLIBS-bench-exp2): Add -lm.
19522 (LDLIBS-bench-log2): Likewise.
19523 * benchtests/exp2-inputs: New inputs file.
19524 * benchtests/log2-inputs: New inputs file.
19525 * benchtests/log-inputs: Add new inputs.
19526 * benchtests/tan-inputs: Likewise.
19527
196f7f5d
SP
195282013-12-11 Siddhesh Poyarekar <siddhesh@redhat.com>
19529
7a74607f
SP
19530 * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
19531 definition...
57f41c40
AS
19532 (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
19533 (csloww2): ... from here.
7a74607f 19534
196f7f5d
SP
19535 * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
19536 instead of structures.
19537 * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
19538 (POLYNOMIAL): Likewise.
19539 (TAYLOR_SLOW): Likewise.
19540 (__sin): Likewise.
19541 (__cos): Likewise.
19542 (slow1): Likewise.
19543 (slow2): Likewise.
19544 (sloww): Likewise.
19545 (sloww1); Likewise.
19546 (sloww2): Likewise.
19547 (bsloww1): Likewise.
19548 (bsloww2): Likewise.
19549 (cslow2): Likewise.
19550 (csloww): Likewise.
19551 (csloww1): Likewise.
19552 (csloww2): Likewise.
19553
0dfa665c
OB
195542013-12-10 Ondřej Bílka <neleai@seznam.cz>
19555
19556 * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
57f41c40
AS
19557 (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
19558 Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
0dfa665c
OB
19559 * malloc/hooks.c (realloc_check): Likewise.
19560
5782a80f
OB
19561 * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
19562 * malloc/arena.c: Remove PER_THREAD conditional.
19563 [!PER_THREAD]: Remove code.
19564 (ptmalloc_unlock_all2): Likewise.
19565 (ptmalloc_init): Likewise.
19566 (_int_new_arena): Likewise.
19567 (arena_get2): Likewise.
19568 * malloc/hooks.c (__malloc_get_state): Likewise.
19569 (__malloc_set_state): Likewise.
19570 * malloc/malloc.c: Likewise.
19571 (struct malloc_state): Likewise.
19572 (struct malloc_par): Likewise.
19573 (__libc_realloc): Likewise.
19574 (__libc_mallopt): Likewise.
19575
aeb95445
AZ
195762013-12-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19577
19578 * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
19579
e8349efd
OB
195802013-12-09 Ondřej Bílka <neleai@seznam.cz>
19581
19582 * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
19583 macro to a function. Check for zero perturb_byte.
19584 (_int_malloc, _int_free): Remove zero perturb_byte checks.
19585
f3eeb3fc 19586 * malloc/malloc.c: (force_reg): Remove.
57f41c40
AS
19587 (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
19588 (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
f3eeb3fc
OB
19589 force_reg by atomic_forced_read.
19590 * malloc/arena.c (ptmalloc_init): Likewise.
19591 * malloc/hooks.c (top_check): Likewise.
19592
be2f9009
AZ
195932013-12-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19594
19595 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
19596
e7b914bd
MT
195972013-12-09 Markus Trippelsdorf <markus@trippelsdorf.de>
19598
19599 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
19600
9f0be4f8
JM
196012013-12-08 Joseph Myers <joseph@codesourcery.com>
19602
19603 * math/auto-libm-test-in: Add tests of lgamma.
19604 * math/auto-libm-test-out: Regenerated.
19605 * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
19606 (M_LOG_2_SQRT_PIl): Likewise.
19607 (lgamma_test_data): Use AUTO_TESTS_f_f1.
19608 * math/gen-auto-libm-tests.c (func_calc_method): Add value
19609 mpfr_f_f1.
19610 (func_calc_desc): Add mpfr_f_f1 union field.
19611 (ARGS1): New macro.
19612 (ARGS2): Likewise.
19613 (ARGS3): Likewise.
19614 (ARGS4): Likewise.
19615 (RET1): Likewise.
19616 (RET2): Likewise.
19617 (CALC): Likewise.
19618 (FUNC): Likewise.
19619 (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
19620 (test_functions): Add lgamma.
19621 (calc_generic_results): Handle mpfr_f_f1.
19622 * sysdeps/i386/fpu/libm-test-ulps: Update.
19623 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19624
24eeafdb
AZ
196252013-12-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19626
19627 * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
19628 __mpn_add_n for PowerPC64/POWER7.
19629 * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
19630 __mpn_sub_n for PowerPC64/POWER7.
19631
4a2c0fd4
AZ
19632 * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
19633 __mpn_addmul_1 for PowerPC64.
19634 * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
19635 __mpn_submul_1 for PowerPC64.
19636 * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
19637 for PowerPC64.
19638 * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
19639 for PowerPC64.
19640
4b5b548c
FS
196412013-12-06 Fernando J. V. da Silva <fernandojvdasilva@gmail.com>
19642
19643 [BZ #15089]
19644 * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
19645
0a3ac0aa
AZ
196462013-12-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19647
19648 * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
19649
ccdc8438
AZ
19650 * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
19651 add multiarch folders.
19652 * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
19653 * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
19654 * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
19655 * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
19656 * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
19657 * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
19658 * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
19659 * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
19660 * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
19661 * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
19662 * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
19663 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
19664 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
19665 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
19666 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
19667 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
19668 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
19669
2e973d99
AZ
19670 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
19671 __ieee754_hypot and __ieee754_hypotf multiarch implementations.
19672 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
19673 New file.
19674 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
19675 New file.
19676 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
19677 multiarch __ieee754_hypot for PowerPC32.
19678 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
19679 New file.
19680 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
19681 New file.
19682 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
19683 multiarch __ieee754_hypotf for PowerPC32.
19684
2d9470b2
AZ
19685 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
19686 long_double_symbol only if __logbl is defined.
19687 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
19688 * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
19689 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
19690 * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
19691 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
19692 * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
19693 * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
19694 path for implementation.
19695 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
19696 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
19697 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
19698 logb, and logbl multiarch implementations for PowerPC32.
19699 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
19700 file.
19701 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
19702 file.
19703 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
19704 multiarch logb for PowerPC32.
19705 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
19706 file.
19707 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
19708 file.
19709 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
19710 multiarch logbf for PowerPC32.
19711 * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
19712 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
19713 file.
19714 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
19715 multiarch logbl implementation for PowerPC32.
19716
5212ffce
AZ
19717 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
19718 and modff multiarch implementations.
19719 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
19720 New file.
19721 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
19722 New file.
19723 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
19724 multiarch modf for PowerPC32.
19725 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
19726 New file.
19727 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
19728 New file.
19729 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
19730 multiarch modff for PowerPC32.
19731
79dccf31
AZ
19732 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
19733 and lrintf multiarch implementations.
19734 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
19735 New file.
19736 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
19737 New file.
19738 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
19739 multiarch lrint for PowerPC32.
19740 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
19741 file: multiarch lrintf for PowerPC32.
19742
deb66480
AZ
19743 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
19744 and lroundf multiarch implementations.
19745 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
19746 New file.
19747 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
19748 New file.
19749 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
19750 New file.
19751 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
19752 multiarch lround for PowerPC32.
19753 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
19754 file: multiarch lroundf for PowerPC32.
19755
264b036b
AZ
19756 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
19757 copysign and copysignf multiarch implementations.
19758 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
19759 New file.
19760 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
19761 New file.
19762 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
19763 file: multiarch copysign for PowerPC32.
19764 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
19765 file: multiarch copysignf for PowerPC32.
19766
d47db6c9
AZ
19767 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
19768 and truncf multiarch implementations.
19769 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
19770 New file.
19771 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
19772 file.
19773 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
19774 multiarch trunc for PowerPC32.
19775 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
19776 New file.
19777 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
19778 New file.
19779 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
19780 multiarch truncf for PowerPC32.
19781
ddb60b5a
AZ
19782 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
19783 and roundf multiarch implementations.
19784 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
19785 New file.
19786 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
19787 file.
19788 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
19789 multiarch round for PowerPC32.
19790 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
19791 New file.
19792 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
19793 New file.
19794 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
19795 multiarch roundf for PowerPC32.
19796
bedcf49b
AZ
19797 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
19798 and floorf multiarch implementations.
19799 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
19800 New file.
19801 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
19802 file.
19803 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
19804 multiarch floor for PowerPC32.
19805 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
19806 New file.
19807 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
19808 New file.
19809 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
19810 multiarch floorf for PowerPC32.
19811
35ae5b40
AZ
19812 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
19813 and ceilf multiarch implementations.
19814 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
19815 New file.
19816 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
19817 file.
19818 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
19819 multiarch ceil for PowerPC32.
19820 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
19821 New file.
19822 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
19823 file.
19824 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
19825 multiarch ceilf for PowerPC32.
19826
ae1a4cd9
AZ
19827 * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
19828 is defined.
19829 * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
19830 FINITEF is defined.
19831 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
19832 and finitef multiarch implementations.
19833 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
19834 New file.
19835 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
19836 file.
19837 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
19838 multiarch finite for PowerPC32.
19839 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
19840 New file.
19841 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
19842 file: multiarch finitef for PowerPC32.
19843
64fffd65
AZ
19844 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
19845 and isinff multiarch implementations.
19846 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
19847 file.
19848 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
19849 file.
19850 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
19851 multiarch isinf for PowerPC32.
19852 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
19853 New file.
19854 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
19855 multiarch isinff for PowerPC32.
19856
8e4e7ba2
AZ
19857 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
19858 alias when __isnan is defined.
19859 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
19860 and isnanf multiarch implementations.
19861 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
19862 file.
19863 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
19864 file.
19865 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
19866 file.
19867 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
19868 file.
19869 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
19870 multiarch isnan for PowerPC32.
19871 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
19872 New file.
19873 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
19874 New file.
19875 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
19876 multiarch isnanf for PowerPC32.
19877
ddba588e
AZ
19878 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
19879 and sqrtf multiarch implementations.
19880 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
19881 file.
19882 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
19883 file.
19884 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
19885 multiarch sqrt for PowerPC32.
19886 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
19887 file.
19888 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
19889 file.
19890 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
19891 multiarch sqrtf for PowerPC32.
19892
0f96a2f0
AZ
19893 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
19894 and llroundf multiarch implementations.
19895 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
19896 New file.
19897 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
19898 New file.
19899 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
19900 New file.
19901 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
19902 file: multiarch llround for PowerPC32.
19903 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
19904 file: multiarch llroundf for PowerPC32.
19905
c9b5d79e
AZ
19906 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
19907 multiarch PowerPC32 fpu implementations.
19908 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
19909 New file.
19910 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
19911 New file.
19912 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
19913 multiarch llrint for PowerPC32.
19914 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
19915 New file.
19916 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
19917 New file.
19918 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
19919 file.
19920
9cbb3aab
AZ
19921 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
19922
ea5a72f8
AZ
19923 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
19924 file.
19925 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
19926 file.
19927 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
19928 file.
19929 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
19930 multiarch wordcopy for PPC32.
19931 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
19932 wordcopy objects.
19933 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
19934 (__libc_ifunc_impl_list): Likewise.
19935 * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
19936 * sysdeps/powerpc/power4/wordcopy.c: ... to here.
19937 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
19938 * sysdeps/powerpc/power6/wordcopy.c: ... to here.
19939 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
19940 * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
19941
93be09e7
AZ
19942 * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
19943 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
19944 file.
19945 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
19946 file.
19947 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
19948 file.
19949 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
19950 multiarch wcscpy for PPC32.
19951 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
19952 multiarch objects.
19953 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
19954 (__libc_ifunc_impl_list): Likewise.
19955 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
19956 * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
19957 * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
19958 sysdeps/powerpc/power6/wcscpy.c.
19959
bb04e529
AZ
19960 * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
19961 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
19962 file.
19963 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
19964 file.
19965 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
19966 file.
19967 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
19968 multiarch wcsrchr for PPC32.
19969 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
19970 multiarch objects.
19971 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
19972 (__libc_ifunc_impl_list): Likewise.
19973 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
19974 * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
19975 * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
19976 sysdeps/powerpc/power6/wcsrchr.c.
19977
05b5cd1c
AZ
19978 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
19979 file.
19980 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
19981 file.
19982 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
19983 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
19984 multiarch wcschr for PPc32.
19985 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
19986 multiarch objects.
19987 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
19988 (__libc_ifunc_impl_list): Likewise.
19989 * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
19990 * sysdeps/powerpc/power6/wcschr.c: ... to here.
19991 * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
19992 sysdeps/powerpc/power6/wcschr.c.
19993
ba964147
AZ
19994 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
19995 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
19996 file.
19997 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
19998 * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
19999 file: multiarch strchr for PPC32.
20000 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
20001 multiarch objects.
20002 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20003 (__libc_ifunc_impl_list): Likewise.
20004
31c81aaa
AZ
20005 * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
20006 name.
20007 * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
20008 file.
20009 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
20010 file.
20011 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
20012 multiarch strchrnul for PPC32.
20013 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
20014 multiarch objects.
20015 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20016 (__libc_ifunc_impl_list): Likewise.
20017
0d0607d9
AZ
20018 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
20019 file.
20020 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
20021 multiarch strncasecmp for PPC32.
20022 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
20023 file.
20024 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
20025 multiarch strncasecmp_l for PPC32.
20026 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
20027 strncasecmp multiarch objects.
20028 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20029 (__libc_ifunc_impl_list): Likewise.
20030
4dfd5c86
AZ
20031 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
20032 file.
20033 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
20034 multiarch strncasecmp for PPC32.
20035 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
20036 New file.
20037 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
20038 multiarch strcasecmp_l for PPC32.
20039 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
20040 multiarch objects.
20041 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20042 (__libc_ifunc_impl_list): Likewise.
20043
a19e01a3
AZ
20044 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
20045 file.
20046 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
20047 file.
20048 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
20049 multiarch strncmp for PPC32.
20050 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
20051 multiarch objects.
20052 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20053 (__libc_ifunc_impl_list): Likewise.
20054
ae9cf7a2
AZ
20055 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
20056 * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
20057 file.
20058 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
20059 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
20060 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
20061 multiarch objects.
20062 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20063 (__libc_ifunc_impl_list): Likewise.
20064
3148bb7d
AZ
20065 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
20066 file.
20067 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
20068 file.
20069 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
20070 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
20071 multiarch objects.
20072 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20073 (__libc_ifunc_impl_list): Likewise.
20074
7af8b946
AZ
20075 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
20076 file.
20077 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
20078 file.
20079 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
20080 multiarch rawmemchr for PPC32.
20081 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
20082 multiarch objects.
20083 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20084 (__libc_ifunc_impl_list): Likewise.
20085
03a6aa6a
AZ
20086 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
20087 file.
20088 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
20089 file.
20090 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
20091 file: memrchr multiarch for PPC32.
20092 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
20093 multiarch objects.
20094 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
20095 (__libc_ifunc_impl_list): Likewise.
20096
1c62e6d9
AZ
20097 * string/memchr.c (__memchr): Using macro to redefine symbol name.
20098 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
20099 file.
20100 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
20101 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
20102 multiarch memchr for PPC32.
20103 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
20104 multiarch objects.
20105 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20106 (__libc_ifunc_impl_list): Likewise.
20107
87da8bdb
AZ
20108 * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
20109 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
20110 file.
20111 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
20112 file.
20113 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
20114 file: multiarch mempcpy for PPC32.
20115 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
20116 multiarch objects.
20117 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20118 (__libc_ifunc_impl_list): Likewise.
20119
20ed4714
AZ
20120 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
20121 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
20122 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
20123 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
20124 multiarch bzero for PPC32.
20125 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
20126 file.
20127 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
20128 file.
20129 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
20130 * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
20131 file: multiarch memset for PPC32.
20132 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
20133 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
20134 memset multiarch objects.
20135 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20136 (__libc_ifunc_impl_list): Likewise.
20137
ab3e3a46
AZ
20138 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
20139 file.
20140 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
20141 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
20142 memcmp for PPC32.
20143 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
20144 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
20145 multiarch objects.
20146 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20147 (__libc_ifunc_impl_list): Likewise.
20148
930de6f0
AZ
20149 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
20150 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
20151 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
20152 file.
20153 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
20154 file.
20155 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
20156 file.
20157 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
20158 multiarch memcpy for PPC32.
20159 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
20160 multiarch objects.
20161 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
20162 (__libc_ifunc_impl_list): Likewise.
20163
4c628e00
AZ
20164 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
20165 support multiarch for POWER/PPC32.
20166 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
20167 Likewise.
20168 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
20169 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
20170 Implies file to make multiarch folder appers before the fpu and
20171 default folder for power4 configuration.
20172
f4479220
SP
201732013-12-06 Siddhesh Poyarekar <siddhesh@redhat.com>
20174
20175 * scripts/bench.pl: Append volatile keyword to type.
20176
8517800f
KK
201772013-12-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
20178
20179 * sysdeps/sh/sotruss-lib.c: New file.
20180 * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
20181
180138f1
AZ
201822013-12-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20183
20184 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20185
bbf37bdc
JM
201862013-12-05 Joseph Myers <joseph@codesourcery.com>
20187
e47cc4e0
JM
20188 [BZ #6810]
20189 * math/w_tgamma.c: Include <errno.h>.
20190 (__tgamma): Use __glibc_unlikely. Set errno on underflow to 0.
20191 * math/w_tgammaf.c: Include <errno.h>.
20192 (__tgammaf): Use __glibc_unlikely. Set errno on underflow to 0.
20193 * math/w_tgammal.c: Include <errno.h>.
20194 (__tgammal): Use __glibc_unlikely. Set errno on underflow to 0.
20195 * math/auto-libm-test-in: Do not allow missing errno on tgamma
20196 underflow. Add more tgamma tests.
20197 * math/auto-libm-test-out: Regenerated.
20198 * sysdeps/i386/fpu/libm-test-ulps: Update.
20199 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20200
bbf37bdc
JM
20201 * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
20202 sin, sinh, tan, tanh, tgamma, y0 and y1.
20203 * math/auto-libm-test-out: Regenerated.
20204 * math/libm-test.inc (TEST_COND_x86_64): New macro.
20205 (TEST_COND_x86): Likewise.
20206 (M_E2l): Remove macro.
20207 (M_E3l): Likewise.
20208 (M_2_SQRT_PIl): Likewise.
20209 (M_SQRT_PIl): Likewise.
20210 (M_1_DIV_El): Likewise.
20211 (log_test_data): Use AUTO_TESTS_f_f.
20212 (log10_test_data): Likewise.
20213 (log1p_test_data): Likewise.
20214 (log2_test_data): Likewise.
20215 (sin_test_data): Likewise.
20216 (sin_tonearest_test_data): Likewise.
20217 (sin_towardzero_test_data): Likewise.
20218 (sin_downward_test_data): Likewise.
20219 (sin_upward_test_data): Likewise.
20220 (sinh_test_data): Likewise.
20221 (sinh_tonearest_test_data): Likewise.
20222 (sinh_towardzero_test_data): Likewise.
20223 (sinh_downward_test_data): Likewise.
20224 (sinh_upward_test_data): Likewise.
20225 (tan_test_data): Likewise.
20226 (tan_tonearest_test_data): Likewise.
20227 (tan_towardzero_test_data): Likewise.
20228 (tan_downward_test_data): Likewise.
20229 (tan_upward_test_data): Likewise.
20230 (tanh_test_data): Likewise.
20231 (tgamma_test_data): Likewise.
20232 (y0_test_data): Likewise.
20233 (y1_test_data): Likewise.
20234 * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
20235 (special_real_inputs): Add pi/4.
20236 * sysdeps/i386/fpu/libm-test-ulps: Update.
20237 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20238
eb5ad6b9
AZ
202392013-12-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20240
20241 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
20242 "longjmp_target" static probes.
20243 (__longjmp): Rename to __longjmp_symbol.
20244 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
20245 * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
20246 on which longjmp to generate.
20247 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
20248 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
20249 probe.
20250 (__sigsetjmp): Rename to __sigsetjmp_symbol.
20251 (__sigjmp_save): Rename to __sigjmp_save_symbol.
20252 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
20253 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
20254 and __sigjmp_save_symbol based on which sigsetjmp to generated.
20255 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
20256 * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
20257 __longjmp_symbol based on which __longjmp to generate.
20258 * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
20259 probe.
20260 (setjmp): Rename to setjmp_symbol.
20261 (__sigsetjmp): Rename to __sigsetjmp_symbol.
20262 (_setjmp): Rename to _setjmp_symbol.
20263 (__sigsetjmp): Rename to __sigsetjmp_symbol.
20264 * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
20265 _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
20266 which setjmp to generate.
20267 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
20268 "longjmp_target" static probes.
20269
d136c6dc
SP
202702013-12-05 Siddhesh Poyarekar <siddhesh@redhat.com>
20271
9298ecba
SP
20272 * benchtests/README: Add note about output arguments.
20273 * benchtests/bench-sincos.c: Remove file.
20274 * benchtests/sincos-inputs: New file.
20275 * scripts/bench.pl: Identify output arguments and define
20276 static variables for them.
20277
232983e9
SP
20278 * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
20279
d136c6dc
SP
20280 [BZ #15941]
20281 * Makefile (INSTALL): Add install-plain.texi as the primary
20282 dependency.
20283 * manual/install-plain.texi: New file.
20284 * manual/install.texi: Include node directive only for
20285 non-plaintext output.
20286
699ff837
JM
202872013-12-04 Joseph Myers <joseph@codesourcery.com>
20288
ab07cea8
JM
20289 * stdlib/longlong.h: Update from GCC.
20290
699ff837
JM
20291 [BZ #6807]
20292 [BZ #15901]
20293 * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
20294 * math/w_j0f.c (y0f): Likewise.
20295 * math/w_j0l.c (__y0l): Likewise.
20296 * math/w_j1.c (y1): Likewise.
20297 * math/w_j1f.c (y1f): Likewise.
20298 * math/w_j1l.c (__y1l): Likewise
20299 * math/w_jn.c (yn): Likewise.
20300 * math/w_jnf.c (ynf): Likewise.
20301 * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
20302 Bessel function pole errors in _POSIX_ mode. Use NAN as return
20303 value for Bessel function domain errors outside _SVID_ mode.
20304 Adjust sign of return value for yn (negative integer, 0).
20305 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
20306 by zero in return for negative x and set sign appropriately for
20307 negative n.
20308 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
20309 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
20310 * math/libm-test.inc (y0_test_data): Add more tests and adjust
20311 expectations in error cases.
20312 (y1_test_data): Likewise.
20313 (yn_test_data): Likewise.
20314 * sysdeps/i386/fpu/libm-test-ulps: Update.
20315 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20316
5b118558
UW
203172013-11-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20318
20319 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
20320 "64" to "64-v1". Add "64-v2".
20321 (abi-64-options): Rename to ...
20322 (abi-64-v1-options): ... this. Redefine _CALL_ELF.
20323 (abi-64-condition): Rename to ...
20324 (abi-64-v1-condition): ... this. Add _CALL_ELF check.,
20325 (abi-64-ld-soname): Rename to ...
20326 (abi-64-v1-ld-soname): ... this.
20327 (abi-64-v2-options): Define.
20328 (abi-64-v2-condition): Likewise.
20329 (abi-64-v2-ld-soname): Likewise.
20330 * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
20331 (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
20332 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
20333 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
20334 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
20335
61cd8fe4
UW
203362013-11-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20337 Alan Modra <amodra@gmail.com>
20338
20339 * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
20340 New versions for use with the ELFv2 ABI.
20341 (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
20342 * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
20343 declaration.
20344 (struct La_ppc64v2_retval): Likewise.
20345 (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
20346 (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
20347 * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
20348 to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
20349 (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
20350 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
20351 Do not save or restore CR.
20352 (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
20353 (_dl_profile_resolve): Do no save or restore CR. Support extended
20354 return values for ELFv2 ABI. Fix location of FPR return registers.
20355 * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
20356 updated values for _CALL_ELF == 2.
20357 (La_regs, La_retval, int_retval): Likewise.
20358
8b8a692c
UW
203592013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20360
20361 * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
20362 (FRAME_MIN_SIZE_PARM): Likewise.
20363 (FRAME_BACKCHAIN): Likewise.
20364 (FRAME_CR_SAVE): Likewise.
20365 (FRAME_LR_SAVE): Likewise.
20366 (FRAME_TOC_SAVE): Likewise.
20367 (FRAME_PARM_SAVE): Likewise.
20368 (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
20369 FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
20370 FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
20371 (call_mcount_parm_offset): New macro.
20372 (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
20373 (PROF): Use symbolic stack frame offsets.
20374 (TAIL_CALL_SYSCALL_ERROR): Likewise.
20375 * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
20376 Redefine in terms of FRAME_MIN_SIZE.
20377 (_dl_runtime_resolve): Use symbolic stack frame offsets.
20378 (_dl_profile_resolve): Likewise. Update comment.
20379 * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
20380 symbols stack frame offsets.
20381 (__sigsetjmp): Likewise.
20382 * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
20383 * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
20384 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
20385 * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
20386
20387 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
20388 (FRAME_BACKCHAIN): Remove.
20389 (FRAME_CR_SAVE): Likewise.
20390 (FRAME_LR_SAVE): Likewise.
20391 (FRAME_COMPILER_DW): Likewise.
20392 (FRAME_LINKER_DW): Likewise.
20393 (FRAME_TOC_SAVE): Likewise.
20394 (FRAME_PARM_SAVE): Likewise.
57f41c40
AS
20395 (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
20396 (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
20397 (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
8b8a692c
UW
20398 * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
20399 (CHECK_SP): Use symbolic stack frame offsets.
20400 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
20401 zone" instead of caller's parameter save area for temp storage.
20402 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
20403 Likewise. Also, use symbolic stack frame offsets.
20404 * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
20405 stackblock): Redefine for _CALL_ELF == 2 to save parameters into
20406 our own stack frame instead of the caller's.
20407 (__socket): Use symbolic stack frame offsets.
20408
122b66de
UW
204092013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20410 Alan Modra <amodra@gmail.com>
20411
20412 * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
20413 Define.
57f41c40
AS
20414 (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
20415 (PPC64_LOCAL_ENTRY_OFFSET): Define.
122b66de
UW
20416 * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
20417 New function.
20418 (elf_machine_fixup_plt): Call it.
20419 (elf_machine_plt_conflict): Likewise. Add map, sym_map, and
20420 reloc arguments.
20421 (elf_machine_rela): Update call to elf_machine_plt_conflict.
57f41c40
AS
20422 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
20423 (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
122b66de
UW
20424 r2 before calling target.
20425
696caf1d
UW
204262013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20427 Alan Modra <amodra@gmail.com>
20428
20429 * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
20430 (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
20431 versions of macros to support ELFv2 ABI.
20432 (LOCALENTRY): New macro.
20433 (ENTRY, EALIGN): Use it.
20434 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
20435 * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
20436 fall through into ENTRY entry point.
20437 * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
20438 Only define if _CALL_ELF != 2.
20439
20440 (elf_machine_matches_host): Verify ABI version matches.
20441 (RTLD_START): Use LOCALENTRY.
20442 (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
20443 (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
20444 (PLT_ENTRY_WORDS): New macro.
20445 (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
20446 (elf_machine_runtime_setup): Support ELFv2 ABI.
20447 (elf_machine_fixup_plt): Likewise.
20448 (elf_machine_plt_conflict): Likewise.
20449 (resolve_ifunc): Likewise.
20450 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
20451 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
20452 Likewise.
20453 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
20454 (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
20455 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
20456 (makecontext): Support ELFv2 ABI.
20457 * elf/elf.h (EF_PPC64_ABI): Define.
20458
d31beafa
UW
204592013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20460
57f41c40
AS
20461 * sysdeps/powerpc/powerpc64/sysdep.h
20462 (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
20463 (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
20464 (ENTRY) [ASSEMBLER]: ... but instead here ...
20465 (EALIGN) [ASSEMBLER]: ... and here.
20466 (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
20467 (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
20468 (ENTRY_2) [!ASSEMBLER]: Use it.
d31beafa
UW
20469 * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
20470 ENTRY_2 changes. Use PPC64_LOAD_FUNCPTR.
57f41c40
AS
20471 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
20472 (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
d31beafa
UW
20473 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
20474 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
20475 Use PPC64_LOAD_FUNCPTR.
20476
b525166b
UW
20477 * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
20478
7ec07d9a
AM
204792013-12-04 Alan Modra <amodra@gmail.com>
20480
20481 * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
20482 (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
20483 (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
20484 (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
20485
20486 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
20487 overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
20488 R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
20489 Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
20490 R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
20491 Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
20492
5162e7dd
UW
204932013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
20494
20495 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
20496 (__makecontext): Fix incorrect CFI when backtracing out of
20497 context created via makecontext.
20498 * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
20499 (__setcontext): Fix incorrect CFI during switch to new context.
20500 (__novec_setcontext): Likewise.
20501
19e3372b
OB
205022013-12-04 Ondřej Bílka <neleai@seznam.cz>
20503
20504 [BZ #4772]
20505 * time/strptime_l.c (__strptime_internal): Allow modifiers
20506 in strptime.
20507 * time/tst-strptime.c (day_tests): Add testcase.
20508
ecaf142d
SP
205092013-12-04 Siddhesh Poyarekar <siddhesh@redhat.com>
20510
20511 * scripts/bench.pl: Skip over blank lines.
20512
fbf964ae
PE
205132013-12-04 Paul Eggert <eggert@cs.ucla.edu>
20514
20515 [BZ #926]
20516 * manual/time.texi (Calendar Time): Clarify what timezone functions
20517 use.
20518
fa60a674
AZ
205192013-12-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20520
20521 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20522
d674f0ef
OB
205232013-12-04 Ondřej Bílka <neleai@seznam.cz>
20524
20525 * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
20526 implementation.
20527 * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
20528 * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
20529 * debug/memset_chk.c (__memset_chk): Likewise.
20530 * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
20531 * debug/strncpy_chk.c: Likewise.
20532
17dea188
JM
205332013-12-03 Joseph Myers <joseph@codesourcery.com>
20534
749008ff
JM
20535 [BZ #15268]
20536 [BZ #15425]
20537 * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
20538 (__ieee754_exp): For possibly underflowing results, check size of
20539 result and force underflow exception if required.
20540 * math/auto-libm-test-in: Add more tests of exp.
20541 * math/auto-libm-test-out: Regenerated.
20542 * sysdeps/i386/fpu/libm-test-ulps: Update.
20543 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20544
17dea188
JM
20545 [BZ #16283]
20546 * math/w_exp2.c (__exp2): Handle a zero result as underflow.
20547 * math/w_exp2f.c (__exp2f): Likewise.
20548 * math/w_exp2l.c (__exp2l): Likewise.
20549 * math/auto-libm-test-in: Do not allow missing errno on exp2
20550 underflow.
20551 * math/auto-libm-test-out: Regenerated.
20552
b20de2c3
OB
205532013-12-03 Ondřej Bílka <neleai@seznam.cz>
20554
20555 [BZ #16274]
20556 * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
20557 handle filename validation.
20558 * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
20559 (do_open): Delete.
20560
d8e2dbe3
JM
205612013-12-03 Joseph Myers <joseph@codesourcery.com>
20562
34e16df5
JM
20563 [BZ #6786]
20564 * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
20565 (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
20566 * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
20567 <float.h>.
20568 (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
20569 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
20570 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20571 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
20572 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20573 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
20574 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
20575 * math/auto-libm-test-in: Don't allow missing errno from erfc.
20576 Add more erfc tests.
20577 * math/auto-libm-test-out: Regenerated.
20578 * sysdeps/i386/fpu/libm-test-ulps: Update.
20579 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20580
d8e2dbe3
JM
20581 * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
20582 exp2, expm1, j0 and j1.
20583 * math/auto-libm-test-out: Regenerated.
20584 * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
20585 (erfc_test_data): Likewise.
20586 (exp_test_data): Likewise.
20587 (exp_tonearest_test_data): Likewise.
20588 (exp_towardzero_test_data): Likewise.
20589 (exp_downward_test_data): Likewise.
20590 (exp_upward_test_data): Likewise.
20591 (exp10_test_data): Likewise.
20592 (exp2_test_data): Likewise.
20593 (expm1_test_data): Likewise.
20594 (j0_test_data): Likewise.
20595 (j1_test_data): Likewise.
20596 * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
20597 (input_flag_type): Add flag_xfail_rounding.
20598 (input_flags): Add xfail-rounding.
20599 (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
20600 (output_for_one_input_case): Handle flag_xfail_rounding.
20601 * sysdeps/i386/fpu/libm-test-ulps: Update.
20602 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20603
18d14251
AJ
206042013-12-03 Aurelien Jarno <aurelien@aurel32.net>
20605
3d2e6075 20606 [BZ #16289]
18d14251
AJ
20607 * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
20608 division by 0.
20609
520d437b
SP
206102013-12-03 Siddhesh Poyarekar <siddhesh@redhat.com>
20611
20612 [BZ #16195]
20613 * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
20614 (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
20615 (STAP_PROBE0): New macro.
20616 (STAP_PROBE1): Likewise.
20617 (STAP_PROBE2): Likewise.
20618 (STAP_PROBE3): Likewise.
20619 (STAP_PROBE4): Likewise.
20620
416e0145
OB
206212013-12-02 Ondřej Bílka <neleai@seznam.cz>
20622
20623 * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
20624
9d17796a
SE
206252013-12-02 Steve Ellcey <sellcey@mips.com>
20626
20627 * benchtests/Makefile (bench): Add sqrt.
20628 (LDLIBS-bench-sqrt): New.
20629 * benchtests/sqrt-input: New.
20630
f524d6a8
PS
206312013-12-02 Pavel Simerda <psimerda@redhat.com>
20632
639a0ef8
PS
20633 * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
20634 (GAIH_EAI): Likewise.
20635 (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
20636 (gaih_inet): Likewise.
20637 (getaddrinfo): Don't use GAIH_EAI.
20638
f524d6a8
PS
20639 * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
20640 (struct gaih): Remove definition.
20641
df3aedaf
SP
206422013-12-02 Siddhesh Poyarekar <siddhesh@redhat.com>
20643
20644 * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
20645 Use HERRNOP directly.
20646
1ab19dec
AZ
206472013-12-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20648
b42ad38d 20649 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
1ab19dec 20650
176b0c79
JM
206512013-11-30 Joseph Myers <joseph@codesourcery.com>
20652
20653 * math/gen-auto-libm-tests.c (test_functions): Add more
20654 single-argument functions.
20655 (special_fill_pi_2): New function.
20656 (special_fill_minus_pi_2): Likewise.
20657 (special_fill_pi_6): Likewise.
20658 (special_fill_minus_pi_6): Likewise.
20659 (special_fill_pi_3): Likewise.
20660 (special_fill_2pi_3): Likewise.
20661 (special_fill_e): Likewise.
20662 (special_fill_1_e): Likewise.
20663 (special_fill_e_minus_1): Likewise.
20664 (special_real_inputs): Add more special inputs.
20665 (output_for_one_input_case): Do not require ERANGE on underflow to
20666 zero if round-to-nearest result does not underflow to zero, unless
20667 exact results required.
20668 * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
20669 atan, atanh, cbrt, cos and cosh.
20670 * math/auto-libm-test-out: Regenerated.
20671 * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
20672 (acos_tonearest_test_data): Likewise.
20673 (acos_towardzero_test_data): Likewise.
20674 (acos_downward_test_data): Likewise.
20675 (acos_upward_test_data): Likewise.
20676 (acosh_test_data): Likewise.
20677 (asin_test_data): Likewise.
20678 (asin_tonearest_test_data): Likewise.
20679 (asin_towardzero_test_data): Likewise.
20680 (asin_upward_test_data): Likewise.
20681 (asinh_test_data): Likewise.
20682 (atan_test_data): Likewise.
20683 (atanh_test_data): Likewise.
20684 (cbrt_test_data): Likewise.
20685 (cos_test_data): Likewise.
20686 (cos_tonearest_test_data): Likewise.
20687 (cos_towardzero_test_data): Likewise.
20688 (cos_downward_test_data): Likewise.
20689 (cos_upward_test_data): Likewise.
20690 (cosh_test_data): Likewise.
20691 (cosh_tonearest_test_data): Likewise.
20692 (cosh_towardzero_test_data): Likewise.
20693 (cosh_downward_test_data): Likewise.
20694 (cosh_upward_test_data): Likewise.
20695 * sysdeps/i386/fpu/libm-test-ulps: Update.
20696 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20697
ffb536d0
JM
206982013-11-29 Joseph Myers <joseph@codesourcery.com>
20699
2a77a467
JM
20700 [BZ #6787]
20701 * math/w_exp10.c (__exp10): Handle a zero result as underflow.
20702 * math/w_exp10f.c (__exp10f): Likewise.
20703 * math/w_exp10l.c (__exp10l): Likewise.
20704 * math/libm-test.inc (exp10_test_data): Add more tests and expect
20705 errno settings in existing tests.
20706
ea3bc4e8
JM
20707 [BZ #14032]
20708 * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
20709 precision control set to double precision.
20710 * sysdeps/i386/fpu/w_sqrt.c: New file.
20711 * math/auto-libm-test-in: Add more tests.
20712 * math/auto-libm-test-out: Update.
20713
0712c9d8
JM
20714 * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
20715 (sqrt_test_tonearest): New function.
20716 (sqrt_towardzero_test_data): New variable.
20717 (sqrt_test_towardzero): New function.
20718 (sqrt_downward_test_data): New variable.
20719 (sqrt_test_downward): New function.
20720 (sqrt_upward_test_data): New variable.
20721 (sqrt_test_upward): New function.
20722 (main): Call the new functions.
20723
ffb536d0
JM
20724 * math/gen-auto-libm-tests.c: New file.
20725 * math/auto-libm-test-in: Likewise.
20726 * math/auto-libm-test-out: New generated file.
20727 * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
20728 variables.
20729 (%beautify): Add generated representations of zero.
20730 (top level): Set $auto_input and call parse_auto_input.
20731 (beautify): Remove trailing "f" from hex float constants.
20732 (parse_args): Handle XFAIL_TEST.
20733 (convert_condition): New function.
20734 (or_value): Likewise.
20735 (or_cond_value): Likewise.
20736 (generate_testfile): Handle AUTO_TESTS_* lines.
20737 (parse_auto_input): New function.
20738 * math/libm-test.inc (XFAIL_TEST): New macro.
20739 (ERRNO_UNCHANGED): Update value.
20740 (ERRNO_EDOM): Likewise.
20741 (ERRNO_ERANGE): Likewise.
20742 (IGNORE_RESULT): Likewise.
20743 (TEST_COND_flt_32): New macro.
20744 (TEST_COND_dbl_64): Likewise.
20745 (TEST_COND_ldbl_96_intel): Likewise.
20746 (TEST_COND_ldbl_96_m68k): Likewise.
20747 (TEST_COND_ldbl_128): Likewise.
20748 (TEST_COND_ldbl_128ibm): Likewise.
20749 (TEST_COND_long32): Likewise.
20750 (TEST_COND_long64): Likewise.
20751 (TEST_COND_before_rounding): Likewise.
20752 (TEST_COND_after_rounding): Likewise.
20753 (enable_test): Handle XFAIL_TEST flag.
20754 (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
20755 with finite results.
20756 * math/Makefile ($(objpfx)libm-test.stmp): Depend on
20757 auto-libm-test-out.
20758
acd98a8e
AK
207592013-11-29 Siddhesh Poyarekar <siddhesh@redhat.com>
20760 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
20761
20762 [BZ #16214]
20763 * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
20764 __tls_get_addr_internal instead of __tls_get_offset in order to
20765 avoid GOT pointer dependency. Make rtld export
20766 __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
20767 __tls_get_addr since we are a __tls_get_offset platform.
20768 * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
20769 GOT pointer being set up before.
20770 * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
20771
3c1c46a6
JM
207722013-11-28 Joseph Myers <joseph@codesourcery.com>
20773
7475aef5
JM
20774 * manual/math.texi (Errors in Math Functions): Document accuracy
20775 goals.
20776
8bca7cd8
JM
20777 [BZ #15004]
20778 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
20779 * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
20780 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
20781 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
20782 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
20783 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
20784 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
20785 * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
20786 * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
20787 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
20788 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
20789 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
20790 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
20791 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
20792 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
20793 * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
20794
91a1f3fe
JM
20795 * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
20796 * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
20797 * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
20798 * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
20799 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
20800 Likewise.
20801 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
20802 Likewise.
20803 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
20804 Likewise.
20805 * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
20806 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
20807 (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
20808 atomic-feupdateenv and flt-rounds.
20809 * sysdeps/powerpc/nofpu/Versions (libc): Add
20810 __atomic_feholdexcept, __atomic_feclearexcept,
20811 __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
20812 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
20813 (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
20814 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
20815 (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
20816 here.
20817 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
20818 Update.
20819
c5df7609
JM
20820 * manual/arith.texi (FP Exceptions): Document that exceptions may
20821 not be raised when matherr is used.
20822 (Math Error Reporting): Document overflow in directed rounding
20823 modes. Document that errno may not be set when finite values are
20824 returned on overflow. Document intent to set errno on underflow
20825 only for underflow to zero.
20826
3c1c46a6
JM
20827 [BZ #16271]
20828 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
20829 round-to-nearest then adjust result for other rounding modes.
20830 * include/fenv.h (fegetround): Use libm_hidden_proto.
20831 * math/fegetround.c (fegetround): Use libm_hidden_def.
20832 * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
20833 * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
20834 * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
20835 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
20836 Likewise.
20837 * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
20838 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
20839 * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
20840 * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
20841
5a4c6d53
SP
208422013-11-28 Siddhesh Poyarekar <siddhesh@redhat.com>
20843
20844 [BZ #16077]
20845 * nss/Versions (libnss_files): Add
20846 _nss_files_gethostbyname3_r.
20847 * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
20848 New function.
20849 (HOST_DB_LOOKUP): Remove macro.
20850 (_nss_files_gethostbyname_r): Implement function without the
20851 HOST_DB_LOOKUP macro.
20852 (_nss_files_gethostbyname2_r): Likewise.
20853
897b98ba
OB
208542013-11-28 Ondřej Bílka <neleai@seznam.cz>
20855
20856 * malloc/malloc.c (__libc_calloc): Make memset a tail call.
20857
6f476861
UB
208582013-11-26 Uros Bizjak <ubizjak@gmail.com>
20859
20860 * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
20861 _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
20862 warning.
20863
bd12ab55
AZ
208642013-11-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20865
20866 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
20867 __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
20868 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
20869 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
20870 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
20871 __fe_nomask_env_priv and attribute_hidden.
20872 * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
20873 (libc_feupdateenv_test_ppc): Likewise.
20874 (libc_feresetround_ppc): Likewise.
20875 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
20876 (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
20877 compat_symbol macro.
20878 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
20879 (__fe_nomask_env): Likewise.
20880 * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
20881
52bb6543
OB
208822013-11-26 Ondřej Bílka <neleai@seznam.cz>
20883
20884 * string/Makefile: Remove ifunc tests.
20885 * string/test-string.h: Define TEST_IFUNC.
20886 * string/test-bcopy-ifunc.c: Remove.
20887 * string/test-bzero-ifunc.c: Likewise.
20888 * string/test-memccpy-ifunc.c: Likewise.
20889 * string/test-memchr-ifunc.c: Likewise.
20890 * string/test-memcmp-ifunc.c: Likewise.
20891 * string/test-memcpy-ifunc.c: Likewise.
20892 * string/test-memmem-ifunc.c: Likewise.
20893 * string/test-memmove-ifunc.c: Likewise.
20894 * string/test-mempcpy-ifunc.c: Likewise.
20895 * string/test-memrchr-ifunc.c: Likewise.
20896 * string/test-memset-ifunc.c: Likewise.
20897 * string/test-rawmemchr-ifunc.c: Likewise.
20898 * string/test-stpcpy-ifunc.c: Likewise.
20899 * string/test-stpncpy-ifunc.c: Likewise.
20900 * string/test-strcasecmp-ifunc.c: Likewise.
20901 * string/test-strcasestr-ifunc.c: Likewise.
20902 * string/test-strcat-ifunc.c: Likewise.
20903 * string/test-strchr-ifunc.c: Likewise.
20904 * string/test-strchrnul-ifunc.c: Likewise.
20905 * string/test-strcmp-ifunc.c: Likewise.
20906 * string/test-strcpy-ifunc.c: Likewise.
20907 * string/test-strcspn-ifunc.c: Likewise.
20908 * string/test-strlen-ifunc.c: Likewise.
20909 * string/test-strncasecmp-ifunc.c: Likewise.
20910 * string/test-strncat-ifunc.c: Likewise.
20911 * string/test-strncmp-ifunc.c: Likewise.
20912 * string/test-strncpy-ifunc.c: Likewise.
20913 * string/test-strnlen-ifunc.c: Likewise.
20914 * string/test-strpbrk-ifunc.c: Likewise.
20915 * string/test-strrchr-ifunc.c: Likewise.
20916 * string/test-strspn-ifunc.c: Likewise.
20917 * string/test-strstr-ifunc.c: Likewise.
20918
ab260039 209192013-11-26 Ondřej Bílka <neleai@seznam.cz>
2787db97
OB
20920
20921 * benchtests/Makefile: Remove ifunc tests.
20922 * benchtests/bench-string.h: Define TEST_IFUNC.
20923 * benchtests/bench-bcopy-ifunc.c: Remove.
20924 * benchtests/bench-bzero-ifunc.c: Likewise.
20925 * benchtests/bench-memccpy-ifunc.c: Likewise.
20926 * benchtests/bench-memchr-ifunc.c: Likewise.
20927 * benchtests/bench-memcmp-ifunc.c: Likewise.
20928 * benchtests/bench-memcpy-ifunc.c: Likewise.
20929 * benchtests/bench-memmem-ifunc.c: Likewise.
20930 * benchtests/bench-memmove-ifunc.c: Likewise.
20931 * benchtests/bench-mempcpy-ifunc.c: Likewise.
20932 * benchtests/bench-memrchr-ifunc.c: Likewise.
20933 * benchtests/bench-memset-ifunc.c: Likewise.
20934 * benchtests/bench-rawmemchr-ifunc.c: Likewise.
20935 * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
20936 * benchtests/bench-stpcpy-ifunc.c: Likewise.
20937 * benchtests/bench-stpncpy-ifunc.c: Likewise.
20938 * benchtests/bench-strcasecmp-ifunc.c: Likewise.
20939 * benchtests/bench-strcasestr-ifunc.c: Likewise.
20940 * benchtests/bench-strcat-ifunc.c: Likewise.
20941 * benchtests/bench-strchr-ifunc.c: Likewise.
20942 * benchtests/bench-strchrnul-ifunc.c: Likewise.
20943 * benchtests/bench-strcmp-ifunc.c: Likewise.
20944 * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
20945 * benchtests/bench-strcpy-ifunc.c: Likewise.
20946 * benchtests/bench-strcspn-ifunc.c: Likewise.
20947 * benchtests/bench-strlen-ifunc.c: Likewise.
20948 * benchtests/bench-strncasecmp-ifunc.c: Likewise.
20949 * benchtests/bench-strncat-ifunc.c: Likewise.
20950 * benchtests/bench-strncmp-ifunc.c: Likewise.
20951 * benchtests/bench-strncpy-ifunc.c: Likewise.
20952 * benchtests/bench-strnlen-ifunc.c: Likewise.
20953 * benchtests/bench-strpbrk-ifunc.c: Likewise.
20954 * benchtests/bench-strrchr-ifunc.c: Likewise.
a9503496 20955 * benchtests/bench-strsep-ifunc.c: Likewise.
2787db97
OB
20956 * benchtests/bench-strspn-ifunc.c: Likewise.
20957 * benchtests/bench-strstr-ifunc.c: Likewise.
20958
209592013-11-26 Ondřej Bílka <neleai@seznam.cz>
20960
ab260039
OB
20961 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
20962
d1d9eaf4 209632013-11-26 Ondřej Bílka <neleai@seznam.cz>
2787db97 20964
d1d9eaf4
OB
20965 * resolv/netdb.h: Use __glibc_reserved instead __unused.
20966 * rt/aio.h: Likewise.
20967 * sysdeps/gnu/bits/utmp.h: Likewise.
20968 * sysdeps/gnu/bits/utmpx.h: Likewise.
20969 * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
20970 * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
20971 * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
20972 * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
20973 * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
20974 * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
20975 * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
20976 * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
20977 * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
20978 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
20979 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
20980 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
20981 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
20982 * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
20983 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
20984 * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
20985 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
20986 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
20987 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
20988 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
20989 * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
20990 * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
20991 * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
20992 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
20993 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
20994 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
20995 * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
20996 * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
20997 * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
20998 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
20999 * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
21000 * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
21001 * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
21002 * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
21003 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
21004 * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
21005 * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
21006 * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
21007 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
21008 * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
21009 * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
21010 * sysdeps/x86/fpu/bits/fenv.h: Likewise.
21011
a7624ed9
CD
210122013-11-25 Carlos O'Donell <carlos@redhat.com>
21013
21014 [BZ #16245]
21015 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
21016 Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
21017
63cfe52b
JM
210182013-11-25 Joseph Myers <joseph@codesourcery.com>
21019
21020 * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
21021 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
21022 Likewise.
21023
41e8926a
AZ
210242013-11-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21025
21026 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
21027 SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
21028 * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
21029 (__fesetround): Remove define.
21030 * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
21031 rounding and exceptions handling.
21032 * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
21033 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
21034 (__fe_nomask_env): Likewise.
21035 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
21036 __fegetround instead of fegetround.
21037 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
21038 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
21039
6851bd4d
RM
210402013-11-21 Roland McGrath <roland@hack.frob.com>
21041
070906ff
RM
21042 * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
21043 it's there.
21044
6851bd4d
RM
21045 * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
21046
84ae135d
MI
210472013-11-21 Meador Inge <meadori@codesourcery.com>
21048
21049 [BZ #11157]
21050 * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
21051 (encrypt_r): Likewise.
21052 * malloc/obstack.h (obstack_free): Likewise.
21053 * posix/unistd.h (encrypt): Likewise.
21054
daf75146
GM
210552013-11-21 Guy Martin <gmsoft@tuxicoman.be>
21056
21057 * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
21058 DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
21059 DL_CALL_DT_FINI() that call the functions directly.
21060 * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
21061 * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
21062 * elf/dl-fini.c: Likewise.
21063
10ad46bc
OB
210642013-11-20 Ondřej Bílka <neleai@seznam.cz>
21065
21066 * malloc/hooks.c (memalign_check): Add alignment rounding.
21067 * malloc/malloc.c (_mid_memalign): New function.
21068 (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
21069 Implement by calling _mid_memalign.
21070 * manual/probes.texi (Memory Allocation Probes): Remove
21071 memory_valloc_retry and memory_pvalloc_retry.
21072
f3fd2628
SP
210732013-11-20 Siddhesh Poyarekar <siddhesh@redhat.com>
21074
4712799f
SP
21075 * locale/programs/locarchive.c (open_archive): Add const
21076 qualifier to ARCHIVEFNAME and copy default fname to
21077 DEFAULT_FNAME.
21078
0417b20f
SP
21079 [BZ #15601]
21080 * libio/tst-widetext.input: Rename Oriya to Odia.
21081 * locale/iso-639.def: Likewise.
21082
f3fd2628
SP
21083 * manual/probes.texi (Mathematical Function Probes): Add
21084 documentation for sin, cos, asin and acos probes.
21085 * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
21086 (__sin32): Add slowasin probe.
21087 (__cos32): Add slowacos probe.
21088 (__mpsin): Add slowsin probe.
21089 (__mpcos): Add slowcos probe.
21090
73c1ce4f
JM
210912013-11-19 Joseph Myers <joseph@codesourcery.com>
21092
21093 [BZ #15483]
21094 * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
21095 thread-local __sim_exceptions_thread and global
21096 __sim_exceptions_global.
21097 (__sim_disabled_exceptions): Change to thread-local
21098 __sim_disabled_exceptions_thread and global
21099 __sim_disabled_exceptions_global.
21100 (__sim_round_mode): Change to thread-local __sim_round_mode_thread
21101 and global __sim_round_mode_global.
21102 (__simulate_exceptions): Use thread-local floating-point state and
21103 set global state from it as needed.
21104 * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
21105 __sim_exceptions_thread, __sim_disabled_exceptions_thread and
21106 __sim_round_mode_thread.
21107 * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
21108 (__sim_exceptions): Change to thread-local __sim_exceptions_thread
21109 and global __sim_exceptions_global.
21110 (__sim_disabled_exceptions): Change to thread-local
21111 __sim_disabled_exceptions_thread and global
21112 __sim_disabled_exceptions_global.
21113 (__sim_round_mode): Change to thread-local __sim_round_mode_thread
21114 and global __sim_round_mode_global.
21115 [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
21116 (SIM_SET_GLOBAL): Likewise.
21117 * sysdeps/powerpc/soft-fp/sfp-machine.h
21118 [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
21119 __sim_round_mode_thread.
21120 [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
21121 __sim_disabled_exceptions_thread.
21122 (__sim_exceptions): Change to __sim_exceptions_thread.
21123 (__sim_disabled_exceptions): Change to
21124 __sim_disabled_exceptions_thread.
21125 (__sim_round_mode): Change to __sim_round_mode_thread.
21126 * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
21127 thread-local floating-point state and set global state from it as
21128 needed.
21129 * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
21130 * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
21131 (__sim_disabled_exceptions): Remove extern declaration.
21132 (feenableexcept): Use thread-local floating-point state and set
21133 global state from it as needed.
21134 * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
21135 extern declaration.
21136 (__sim_disabled_exceptions): Likewise.
21137 (__sim_round_mode): Likewise.
21138 (__fegetenv): Use thread-local floating-point state.
21139 * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
21140 * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
21141 * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
21142 floating-point state and set global state from it as needed.
21143 * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
21144 * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
21145 * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
21146 Likewise.
21147 * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
21148 * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
21149 Likewise.
21150 sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
21151 * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
21152 Use __sim_round_mode_thread.
21153 * math/test-fenv-tls.c: New file.
21154 * math/Makefile (tests): Add test-fenv-tls.
21155 ($(objpfx)test-fenv-tls): Depend on
21156 $(common-objpfx)nptl/libpthread.so.
21157
b5449b12
AS
211582013-11-19 Andreas Schwab <schwab@suse.de>
21159
21160 * locale/programs/locale.c (show_info): Decode wordarray elements.
21161 * locale/categories.def (LC_MONETARY): Add element for
21162 _NL_MONETARY_CRNCYSTR.
21163 * locale/C-monetary.c (conversion_rate): New variable.
21164 (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
21165 element.
21166
e186536b
CM
211672013-11-18 Chris Metcalf <cmetcalf@tilera.com>
21168
21169 * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
21170 Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
21171
5c349950
PP
211722013-11-18 Paul Pluzhnikov <ppluzhnikov@google.com>
21173
21174 * elf/Makefile (tst-auxv): New test.
21175 * elf/tst-auxv.c: New
21176 * elf/rtld.c (dl_main): Adjust AT_EXECFN
21177
699df45b
JM
211782013-11-18 Joseph Myers <joseph@codesourcery.com>
21179
21180 * include/libc-symbols.h (__hidden_proto): Add argument "thread".
21181 (hidden_proto): Caller changed.
21182 (hidden_tls_proto): New macro.
21183 (libc_hidden_tls_proto): Likewise.
21184 (rtld_hidden_tls_proto): Likewise.
21185 (libm_hidden_tls_proto): Likewise.
21186 (libresolv_hidden_tls_proto): Likewise.
21187 (librt_hidden_tls_proto): Likewise.
21188 (libdl_hidden_tls_proto): Likewise.
21189 (libnss_files_hidden_tls_proto): Likewise.
21190 (libnsl_hidden_tls_proto): Likewise.
21191 (libnss_nisplus_hidden_tls_proto): Likewise.
21192 (libutil_hidden_tls_proto): Likewise.
21193
b7589107
OB
211942013-11-18 Ondřej Bílka <neleai@seznam.cz>
21195
21196 [BZ #10253]
21197 * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
21198 (decompose_rpath): Defer expansion to fillin_rpath.
21199 (_dl_init_paths): Pass linkmap to fillin_rpath.
21200
250c23bd
RS
212012013-11-18 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
21202
21203 * benchtests/Makefile: Add strsep.
21204 * benchtests/bench-strsep.c: New file: strsep benchtest.
21205 * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
21206
a7931fcf
AS
212072013-11-18 Andreas Schwab <schwab@suse.de>
21208
21209 * locale/programs/locale.c (show_info) [case byte]: Check for
21210 '\377' instead of '\177'.
21211 * locale/C-monetary.c (not_available): Always use "\377".
21212 * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
21213 unspecified p_sign_posn and n_sign_posn. Check for '\377' to
21214 detect unavailable sign_posn locale elements.
21215 * locale/localeconv.c (__localeconv): For grouping and
21216 mon_grouping handle "\177" and "\377" like no grouping.
21217 (INT_ELEM): New macro. Use it to set all numeric members.
21218 * locale/programs/ld-monetary.c (monetary_read)
21219 <tok_mon_grouping>: Normalize single -1 to the empty string.
21220 * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
21221 Likewise.
21222
728dab0e
OB
212232013-11-07 Ondřej Bílka <neleai@seznam.cz>
21224
21225 [BZ #16055]
21226 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
21227 when we match (nil).
21228 * stdio-common/tst-sscanf.c (struct test): Add testcase.
21229
66294491
JM
212302013-11-16 Joseph Myers <joseph@codesourcery.com>
21231
ce665817
JM
21232 * math/libm-test.inc (TEST_NAN_SIGN): New macro.
21233 (NO_TEST_INLINE): Update value.
21234 (ERRNO_UNCHANGED): Likewise.
21235 (ERRNO_EDOM): Likewise.
21236 (ERRNO_ERANGE): Likewise.
21237 (IGNORE_RESULT): Likewise.
21238 (check_float_internal): Check signs of NaN results if
21239 TEST_NAN_SIGN used.
21240 (check_complex): Pass TEST_NAN_SIGN flag through to second
21241 check_float_internal call.
21242 (copysign_test_data): Add tests with quiet NaNs as second
21243 argument. Use TEST_NAN_SIGN.
21244 (fabs_test_data): Add test of negative quiet NaN argument. Use
21245 TEST_NAN_SIGN.
21246 (signbit_test_data): Add tests of quiet NaN argument.
21247 * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
21248
ee1466a9
JM
21249 * math/gen-libm-test.pl (show_exceptions): Take extra argument
21250 $ignore_result.
21251 (parse_args): Handle function results specified as IGNORE.
21252 * math/libm-test.inc (IGNORE_RESULT): New macro.
21253 (check_float_internal): Do not check numerical result if flag
21254 IGNORE_RESULT set.
21255 (check_complex): Pass through IGNORE_RESULT to second
21256 check_float_internal call.
21257 (check_int): Do not check numerical result if flag IGNORE_RESULT
21258 set.
21259 (check_long): Likewise.
21260 (check_bool): Likewise.
21261 (check_longlong): Likewise.
21262 (lrint_test_data): Add tests of infinite and NaN arguments.
21263 (lrint_tonearest_test_data): Likewise.
21264 (lrint_towardzero_test_data): Likewise.
21265 (lrint_downward_test_data): Likewise.
21266 (lrint_upward_test_data): Likewise.
21267 (llrint_test_data): Likewise.
21268 (llrint_tonearest_test_data): Likewise.
21269 (llrint_towardzero_test_data): Likewise.
21270 (llrint_downward_test_data): Likewise.
21271 (llrint_upward_test_data): Likewise.
21272 (lround_test_data): Likewise.
21273 (llround_test_data): Likewise.
21274
14407b7e
JM
21275 * math/libm-test.inc (NO_TEST_INLINE): New macro.
21276 (ERRNO_UNCHANGED): Update value.
21277 (ERRNO_EDOM): Likewise.
21278 (ERRNO_ERANGE): Likewise.
21279 (NO_TEST_INLINE_FLOAT): New macro.
21280 (NO_TEST_INLINE_DOUBLE): Likewise.
21281 (enable_test): New function.
21282 (RUN_TEST_f_f): Check enable_test before running test.
21283 (RUN_TEST_2_f): Likewise.
21284 (RUN_TEST_fff_f): Likewise.
21285 (RUN_TEST_c_f): Likewise.
21286 (RUN_TEST_f_f1): Likewise.
21287 (RUN_TEST_fF_f1): Likewise.
21288 (RUN_TEST_fI_f1): Likewise.
21289 (RUN_TEST_ffI_f1): Likewise.
21290 (RUN_TEST_c_c): Likewise.
21291 (RUN_TEST_cc_c): Likewise.
21292 (RUN_TEST_f_i): Likewise.
21293 (RUN_TEST_f_i_tg): Likewise.
21294 (RUN_TEST_ff_i_tg): Likewise.
21295 (RUN_TEST_f_b): Likewise.
21296 (RUN_TEST_f_b_tg): Likewise.
21297 (RUN_TEST_f_l): Likewise.
21298 (RUN_TEST_f_L): Likewise.
21299 (RUN_TEST_fFF_11): Likewise.
21300 (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
21301 conditionals.
21302 (cosh_test_data): Likewise.
21303 (exp_test_data): Likewise.
21304 (expm1_test_data): Likewise.
21305 (hypot_test_data): Likewise.
21306 (pow_test_data): Likewise.
21307 (sinh_test_data): Likewise.
21308 (tanh_test_data): Likewise.
21309 * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
21310 flags argument.
21311
ca07f197
JM
21312 * libm-test.inc (acos_test_data): Disallow inexact exceptions for
21313 tests with quiet NaN input and output.
21314 (acosh_test_data): Likewise.
21315 (asin_test_data): Likewise.
21316 (asinh_test_data): Likewise.
21317 (atan_test_data): Likewise.
21318 (atanh_test_data): Likewise.
21319 (atan2_test_data): Likewise.
21320 (cbrt_test_data): Likewise.
21321 (cos_test_data): Likewise.
21322 (cosh_test_data): Likewise.
21323 (erf_test_data): Likewise.
21324 (erfc_test_data): Likewise.
21325 (exp_test_data): Likewise.
21326 (exp10_test_data): Likewise.
21327 (exp2_test_data): Likewise.
21328 (expm1_test_data): Likewise.
21329 (hypot_test_data): Likewise.
21330 (j0_test_data): Likewise.
21331 (j1_test_data): Likewise.
21332 (jn_test_data): Likewise.
21333 (lgamma_test_data): Likewise.
21334 (log_test_data): Likewise.
21335 (log10_test_data): Likewise.
21336 (log1p_test_data): Likewise.
21337 (log2_test_data): Likewise.
21338 (pow_test_data): Likewise.
21339 (scalb_test_data): Likewise.
21340 (sin_test_data): Likewise.
21341 (sincos_test_data): Likewise.
21342 (sinh_test_data): Likewise.
21343 (tan_test_data): Likewise.
21344 (tanh_test_data): Likewise.
21345 (tgamma_test_data): Likewise.
21346 (y0_test_data): Likewise.
21347 (y1_test_data): Likewise.
21348 (yn_test_data): Likewise.
21349
66294491
JM
21350 [BZ #16167]
21351 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
21352 argument being NaN and avoid computations with second argument in
21353 that case.
21354 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
21355 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
21356 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
21357
1820b143
CL
213582013-11-15 Arun Kumar Pyasi <arun@chitwanix.com>
21359
21360 * locale/iso-639.def: Add Chitwani Tharu (the).
21361
714bd261
AS
213622013-11-14 Andreas Schwab <schwab@suse.de>
21363
21364 * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
21365 word instead of empty string.
21366
7ab44563
AZ
213672013-11-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21368
21369 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
21370 (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
21371 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
21372 (__fe_nomask_env): Likewise.
21373
e8470ea2
SE
213742013-11-13 Steve Ellcey <sellcey@mips.com>
21375
21376 * benchtests/bench-timing.h: Include time.h.
21377
17c1d9f0
L
213782013-11-13 H.J. Lu <hongjiu.lu@intel.com>
21379
21380 [BZ #15997]
21381 * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
21382 to 3.4.0 for x32.
21383 * sysdeps/unix/sysv/linux/configure: Regenerated.
21384
9310c284
JM
213852013-11-13 Joseph Myers <joseph@codesourcery.com>
21386
21387 [BZ #16151]
21388 * stdlib/strtod_l.c (round_and_return): Do not consider
21389 retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
21390 exponent one less than half the least subnormal exponent.
21391 * stdlib/test-strtod-round-data: Add more tests.
21392 * stdlib/tst-strtod-round.c (tests): Regenerated.
21393
7a2ad8cf
AZ
213942013-11-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21395
21396 [BZ #14143]
21397 * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
21398 (__fe_mask_env): Likewise.
21399 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
21400 libm_hidden_proto and add function prototype.
21401 (__fe_mask_env): Add function prototype.
21402 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
21403 (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
21404 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
21405 (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
21406 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
21407 (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
21408
50727aa7
MS
214092013-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
21410
b2f386c1 21411 * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
50727aa7
MS
21412 set reference_name to "" to avoid passing NULL to DSO_FILENAME.
21413
a615be46
MS
214142013-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
21415
21416 * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
21417 of htab_find_slot().
21418
7ddace62
DM
214192013-11-11 David S. Miller <davem@davemloft.net>
21420
21421 [BZ #16150]
21422 * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
21423 symbol in the non-vis3 case in static builds.
21424 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
21425 * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
21426 * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
21427 * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
21428
9182aa67
JK
214292013-11-11 Jan Kratochvil <jan.kratochvil@redhat.com>
21430
21431 [BZ #387]
21432 * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
21433 it is empty.
21434
450a2e2d
AZ
214352013-11-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21436
b2f386c1
SP
21437 * benchtests/Makefile: Add bench-strtod.
21438 * benchtests/bench-strtod.c: New file: strtod benchtest
450a2e2d 21439
8ec3f656
AS
214402013-11-11 Andreas Schwab <schwab@suse.de>
21441
21442 [BZ #16153]
21443 * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
21444 terminating NUL in key length.
21445
76a9b998
AZ
214462013-11-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21447
21448 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
21449 Add artificial ODP entry for vDSO symbol for PPC64.
21450 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
21451 * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
21452
e4368156
OB
214532013-11-07 Ondřej Bílka <neleai@seznam.cz>
21454
21455 [BZ #15374]
21456 * nss/getent.c (services_keys): Recognize services starting with digit.
21457
8d6bb57c
DM
214582013-11-06 David S. Miller <davem@davemloft.net>
21459
21460 [BZ #15985]
21461 * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
21462 on pre-v9 cpus, use a fnegs+fmovs sequence instead.
21463
e256c421
WN
214642013-11-06 Will Newton <will.newton@linaro.org>
21465
21466 * manual/memory.texi (Malloc Examples): Remove register
21467 keyword from examples.
21468
f6e12daa 214692013-11-04 Chris Leonard <cjl@sugarlabs.org>
1484e657 21470
f6e12daa 21471 * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
1484e657 21472
9d880655
AS
214732013-11-04 Joseph Myers <joseph@codesourcery.com>
21474
fd2f9486 21475 [BZ #6981]
9d880655
AS
21476 * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
21477 depending on [__GCC_IEC_559 > 0].
21478 [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
21479 depending on [__GCC_IEC_559_COMPLEX > 0].
21480
ae129d3c
CL
214812013-11-03 Chris Leonard <cjl@sugarlabs.org>
21482
21483 * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
21484 to iso-639.def.
21485
4a15c2a4 214862013-11-03 Ondřej Bílka <neleai@seznam.cz>
17c8c3dc
OB
21487
21488 * elf/rtld.c: Remove unused NONTLS_INIT_TP.
21489
8b35e35d
OB
214902013-11-01 Ondřej Bílka <neleai@seznam.cz>
21491
21492 [BZ #16112]
21493 * malloc/malloc (malloc_info): Do not handle first bin as
21494 special case.
21495
1d70fd6c
CL
214962013-11-01 Chris Leonard <cjl@sugarlabs.org>
21497
21498 * locale/iso-639.def: Add Central Nahuatl (nhn).
21499
8c5c2600
BH
215002013-11-01 Bruno Haible <bruno@clisp.org>
21501
21502 [BZ #7003]
21503 * manual/math.texi (BSD Random): Specify range upper bound as
21504 in POSIX.
21505
da5579c2
CL
215062013-10-31 Chris Leonard <cjl@sugarlabs.org>
21507
21508 * locale/iso-639.def: Add Meadow Mari (mhr).
21509
5d30d853
OB
215102013-10-31 Ondřej Bílka <neleai@seznam.cz>
21511
21512 [BZ #14752], [BZ #15763]
21513 * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
21514 Validate name.
21515 * rt/tst_shm.c: Add test for escaping directory.
21516
a4966c61
AS
215172013-10-31 Andreas Schwab <schwab@suse.de>
21518
8a43e768 21519 [BZ #15917]
a4966c61
AS
21520 * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
21521 followed by 'x' as part of digit sequence.
21522 * stdio-common/tst-sscanf.c (double_tests2): New tests.
21523
28d708c4
MAP
215242013-10-31 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
21525
21526 [BZ #16037]
21527 * configure.ac: allow GNU Make 4.0 and greater.
21528 * configure: Regenerated.
21529
a56ee40b
WN
215302013-10-30 Will Newton <will.newton@linaro.org>
21531
21532 [BZ #16038]
21533 * malloc/hooks.c (memalign_check): Limit alignment to the
21534 maximum representable power of two.
21535 * malloc/malloc.c (__libc_memalign): Likewise.
21536 * malloc/tst-memalign.c (do_test): Add test for very
21537 large alignment values.
21538 * malloc/tst-posix_memalign.c (do_test): Likewise.
21539
c6e4925d
OB
215402013-10-30 Ondřej Bílka <neleai@seznam.cz>
21541
21542 [BZ #11087]
21543 * malloc/malloc.c (sysmalloc): Compute statistics atomically.
21544 (munmap_chunk): Likewise.
21545 (mremap_chunk): Likewise.
21546
215472013-10-30 Ondřej Bílka <neleai@seznam.cz>
bbea82f7 21548
8a43e768 21549 [BZ #15799]
bbea82f7
OB
21550 * stdlib/div.c (div): Remove obsolete code.
21551 * stdlib/ldiv.c (ldiv): Likewise.
21552 * stdlib/lldiv.c (lldiv): Likewise.
21553
977f4b31
SP
215542013-10-30 Siddhesh Poyarekar <siddhesh@redhat.com>
21555
21556 [BZ #16071]
21557 * nss/nss_files/files-XXX.c (get_contents_ret): New
21558 enumerator.
21559 (get_contents): New function.
21560 (internal_getent): Use it. Expand size of LINEBUFLEN.
21561
cb8a6dbd
MF
215622013-10-30 Mike Frysinger <vapier@gentoo.org>
21563
21564 * configure.in: Moved to ...
21565 * configure.ac: ... here. Change reference to configure.in
21566 to configure.ac.
21567 * sysdeps/arm/preconfigure.ac: ... here.
21568 configure.in to configure.ac.
21569 * sysdeps/gnu/configure.in: Moved to ...
21570 * sysdeps/gnu/configure.ac: ... here.
21571 * sysdeps/i386/configure.in: Moved to ...
21572 * sysdeps/i386/configure.ac: ... here.
21573 * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
21574 * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
21575 * sysdeps/mach/configure.in: Moved to ...
21576 * sysdeps/mach/configure.ac: ... here.
21577 * sysdeps/mach/hurd/configure.in: Moved to ...
21578 * sysdeps/mach/hurd/configure.ac: ... here.
21579 * sysdeps/powerpc/configure.in: Moved to ...
21580 * sysdeps/powerpc/configure.ac: ... here.
21581 * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
21582 * sysdeps/powerpc/powerpc32/configure.ac: ... here.
21583 * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
21584 * sysdeps/powerpc/powerpc64/configure.ac: ... here.
21585 * sysdeps/s390/s390-32/configure.in: Moved to ...
21586 * sysdeps/s390/s390-32/configure.ac: ... here.
21587 * sysdeps/s390/s390-64/configure.in: Moved to ...
21588 * sysdeps/s390/s390-64/configure.ac: ... here.
21589 * sysdeps/sh/configure.in: Moved to ...
21590 * sysdeps/sh/configure.ac: ... here.
21591 * sysdeps/sparc/configure.in: Moved to ...
21592 * sysdeps/sparc/configure.ac: ... here.
21593 * sysdeps/unix/sysv/linux/configure.in: Moved to ...
21594 * sysdeps/unix/sysv/linux/configure.ac: ... here.
21595 * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
21596 * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
21597 * sysdeps/x86_64/configure.in: Moved to ...
21598 * sysdeps/x86_64/configure.ac: ... here.
21599 * sysdeps/x86_64/preconfigure.in: Moved to ...
21600 * sysdeps/x86_64/preconfigure.ac: ... here.
21601 * aclocal.m4: Change reference to configure.in to configure.ac.
21602 * config.h.in: Likewise.
21603 * manual/install.texi: Likewise.
21604 * manual/maint.texi: Likewise.
21605 * Makefile: Likewise.
21606 * malloc/Makefile: Likewise.
21607 * nscd/Makefile: Likewise.
21608 * Makeconfig: Change reference to configure.in and
21609 preconfigure.in to configure.ac and preconfigure.ac
21610 respectively.
21611 * INSTALL: Regenerated.
21612 * configure: Likewise.
21613 * sysdeps/gnu/configure: Likewise.
21614 * sysdeps/i386/configure: Likewise.
21615 * sysdeps/ieee754/ldbl-opt/configure: Likewise.
21616 * sysdeps/mach/configure: Likewise.
21617 * sysdeps/mach/hurd/configure: Likewise.
21618 * sysdeps/powerpc/configure: Likewise.
21619 * sysdeps/powerpc/powerpc32/configure: Likewise.
21620 * sysdeps/powerpc/powerpc64/configure: Likewise.
21621 * sysdeps/s390/s390-32/configure: Likewise.
21622 * sysdeps/s390/s390-64/configure: Likewise.
21623 * sysdeps/sh/configure: Likewise.
21624 * sysdeps/sparc/configure: Likewise.
21625 * sysdeps/unix/sysv/linux/configure: Likewise.
21626 * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
21627 * sysdeps/x86_64/configure: Likewise.
21628 * sysdeps/x86_64/preconfigure: Likewise.
21629
36a4953a
AS
216302013-10-29 Andreas Schwab <schwab@suse.de>
21631
21632 * stdio-common/Makefile (tst-swscanf-ENV): Define.
21633
c79a1204
SP
216342013-10-28 Siddhesh Poyarekar <siddhesh@redhat.com>
21635
dfa1b402
SP
21636 * benchtests/pow-inputs: Add new inputs.
21637
54f73d9c
SP
21638 * benchtests/exp-inputs: Add new inputs.
21639
c79a1204
SP
21640 * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
21641 conditional check for return value.
21642 (__cos32): Likewise.
21643
67beb545 216442013-10-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
69f13dbf
AZ
21645
21646 * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
21647 to provide a boost for large inputs with word alignment.
21648 * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
21649 implementation based on optimized PPC64 strcpy.
21650 * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
21651 strcpy for PPC64/POWER7 based on both doubleword and word load/store.
21652 * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
21653 stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
21654
151659f6
OB
216552013-10-25 Ondřej Bílka <neleai@seznam.cz>
21656
482a077e 21657 [BZ #2801]
151659f6
OB
21658 * manual/socket.texi (Host Names): Fix gethostbyname_r example.
21659
10b0f26b
OB
216602013-10-25 Ondřej Bílka <neleai@seznam.cz>
21661
21662 [BZ #14876]
21663 * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
21664 * time/tst-strptime.c (day_tests): Add testcase.
21665
ca42d35e
OB
216662013-10-25 Ondřej Bílka <neleai@seznam.cz>
21667
482a077e 21668 [BZ #14029]
ca42d35e
OB
21669 * manual/pattern.texi: Acknowledge that fnmatch can fail.
21670
52e6d801
FB
216712013-10-25 Fabrice Bauzac <fbauzac@debian71.nce.amadeus.net>
21672
21673 [BZ #16074]
21674 * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
21675 MAP_FAILED on error.
21676
7cbcdb36
SP
216772013-10-25 Siddhesh Poyarekar <siddhesh@redhat.com>
21678
21679 [BZ #16072]
21680 * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
21681 heap for large requests.
21682
894f3f10
AM
216832013-10-25 Aurelien Jarno <aurelien@aurel32.net>
21684
21685 [BZ #9954]
21686 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
21687 result if the result has no associated interface.
21688 * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
21689 interface for all 127.X.Y.Z addresses.
21690
b85545a6
CL
216912013-10-24 Chris Leonard <cjl@sugarlabs.org>
21692
21693 * locale/iso-639.def: Add Ligurian (lij)
21694
d1f23d46
OB
216952013-10-21 Ondřej Bílka <neleai@seznam.cz>
21696
21697 [BZ #15825]
21698 * sunrpc/rpc_main.c: Document rpcgen -5.
21699
4db5b08f
MS
217002013-10-19 Michael Stahl <mstahl@redhat.com>
21701
21702 * elf/rtld.c (do_preload): Print the reason why preloading failed.
21703
a471e96a
OB
217042013-10-19 Ondřej Bílka <neleai@seznam.cz>
21705
d1f23d46 21706 [BZ #10278]
a471e96a
OB
21707 * posix/glob.c: Match only directories when trailing slash is present.
21708 * posix/tst-gnuglob.c (my_opendir): Do not open files.
21709 (main): Add testcase.
21710
45c30c61
OB
217112013-10-19 Ondřej Bílka <neleai@seznam.cz>
21712
21713 [BZ #15670]
21714 * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
21715
484c12fb
CD
217162013-10-18 Carlos O'Donell <carlos@redhat.com>
21717
3d7dc513
CD
21718 * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
21719 AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
21720 AUTH_DES and cindex for FIPS 140-2.
21721 (DES Encryption): Add cindex FIPS 46-3.
21722
484c12fb
CD
21723 * locale/locarchive.h (struct locarhandle): Add fname.
21724 * locale/programs/localedef.c (main): Pass ARGV[remaining]
21725 if an optional argument was specified to --list-archive,
21726 otherwise NULL.
21727 * locale/programs/locarchive.c (show_archive_content): Take new
21728 argument fname and pass it via ah.fname to open_archive.
21729 * locale/programs/localedef.h: Update decl.
21730 (open_archive): If AH->fname is non-null, open that file
21731 rather than the default file name, and don't ignore ENOENT.
21732 (create_archive): Set AH.fname to NULL.
21733 (delete_locales_from_archive): Likewise.
21734 (add_locales_to_archive): Likewise.
21735 * locale/programs/locfile.c (write_all_categories): Likewise.
21736
3c8325fb
JM
217372013-10-18 Joseph Myers <joseph@codesourcery.com>
21738 Aldy Hernandez <aldyh@redhat.com>
21739
21740 * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
21741 * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
21742 * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
21743 * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
21744 * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
21745 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
21746 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
21747 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
21748 * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
21749 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
21750 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
21751 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
21752 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
21753 * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
21754 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
21755 Likewise.
21756 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
21757 Likewise.
21758 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
21759 Likewise.
21760 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
21761 Likewise.
21762 * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
21763 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
21764 Likewise.
21765 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
21766 * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
21767 * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
21768 * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
21769 Likewise.
21770 * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
21771 * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
21772 * sysdeps/powerpc/preconfigure: Likewise.
21773 * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
21774 Likewise.
21775 * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
21776 Replace contents of file by #include of <fenv_libc.h>.
21777 * sysdeps/powerpc/soft-fp/sfp-machine.h
21778 [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
21779 and <sys/prctl.h>.
21780 [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
21781 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
21782 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
21783 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
21784 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
21785 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
21786 [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
21787 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
21788 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
21789 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
21790 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
21791 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
21792 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
21793 Allow copysignl PLT reference to be missing.
21794
5abe0682
RS
217952013-10-18 Richard Sandiford <richard@codesourcery.com>
21796 Joseph Myers <joseph@codesourcery.com
21797
21798 [BZ #15948]
21799 * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
21800 single character.
21801 (add_to_tablewc): Assert sequence of wide characters is nonempty.
21802
c7738d08
SP
218032013-10-18 Siddhesh Poyarekar <siddhesh@redhat.com>
21804
21805 * elf/tst-tls-dlinfo.c: Don't include tls.h.
21806 * elf/tst-tls1.c: Likewise.
21807 * elf/tst-tls10.h: Likewise.
21808 * elf/tst-tls14.c: Likewise.
21809 * elf/tst-tls2.c: Likewise.
21810 * elf/tst-tls3.c: Likewise.
21811 * elf/tst-tls4.c: Likewise.
21812 * elf/tst-tls5.c: Likewise.
21813 * elf/tst-tls6.c: Likewise.
21814 * elf/tst-tls7.c: Likewise.
21815 * elf/tst-tls8.c: Likewise.
21816 * elf/tst-tls9.c: Likewise.
21817 * elf/tst-tlsmod1.c: Likewise.
21818 * elf/tst-tlsmod13.c: Likewise.
21819 * elf/tst-tlsmod13a.c: Likewise.
21820 * elf/tst-tlsmod14a.c: Likewise.
21821 * elf/tst-tlsmod16a.c: Likewise.
21822 * elf/tst-tlsmod16b.c: Likewise.
21823 * elf/tst-tlsmod2.c: Likewise.
21824 * elf/tst-tlsmod3.c: Likewise.
21825 * elf/tst-tlsmod4.c: Likewise.
21826 * elf/tst-tlsmod5.c: Likewise.
21827 * elf/tst-tlsmod6.c: Likewise.
21828
0bfcf2c7
OB
218292013-10-18 Ondřej Bílka <neleai@seznam.cz>
21830
21831 [BZ #12486]
21832 * malloc/malloc.c: remove checks for statistics.
21833
264aad1e
OB
218342013-10-17 Ondřej Bílka <neleai@seznam.cz>
21835
21836 [BZ #15277]
21837 * inet/inet_net.c (inet_network): Detect additional invalid strings.
21838 * inet/tst-network.c: Add testcase.
21839
b957ced8
AS
218402013-10-17 Andreas Schwab <schwab@suse.de>
21841
21842 [BZ #15218]
21843 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
21844 to determine canonical name.
21845
c5d5d574
OB
218462013-10-17 Ondřej Bílka <neleai@seznam.cz>
21847
21848 * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
21849 * sysdeps/ieee754/dbl-64/dla.h: Likewise.
21850 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
21851 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
21852 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
21853 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
21854 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
21855 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
21856 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
21857 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
21858 * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
21859 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
21860 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
21861 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
21862 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
21863 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
21864 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
21865 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
21866 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
21867 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
21868 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
21869 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
21870 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
21871 * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
21872 * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
21873 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
21874 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
21875 * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
21876 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
21877 * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
21878 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
21879 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
21880 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
21881 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
21882 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
21883 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
21884 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
21885 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
21886 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
21887 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
21888 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
21889 * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
21890 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
21891 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
21892 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
21893 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
21894 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
21895 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
21896 * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
21897 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
21898 * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
21899 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
21900 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
21901 * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
21902 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
21903 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
21904 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
21905 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
21906
e5c2c2d0
JM
219072013-10-17 Joseph Myers <joseph@codesourcery.com>
21908
21909 [BZ #16041]
21910 * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
21911 make result into a quiet NaN.
21912
51ca9e29
JM
219132013-10-16 Joseph Myers <joseph@codesourcery.com>
21914
21915 * soft-fp/adddf3.c: Fix horizontal whitespace.
21916 * soft-fp/addsf3.c: Likewise.
21917 * soft-fp/addtf3.c: Likewise.
21918 * soft-fp/divdf3.c: Likewise.
21919 * soft-fp/divsf3.c: Likewise.
21920 * soft-fp/divtf3.c: Likewise.
21921 * soft-fp/double.h: Likewise.
21922 * soft-fp/eqdf2.c: Likewise.
21923 * soft-fp/eqsf2.c: Likewise.
21924 * soft-fp/eqtf2.c: Likewise.
21925 * soft-fp/extenddftf2.c: Likewise.
21926 * soft-fp/extended.h: Likewise.
21927 * soft-fp/extendsfdf2.c: Likewise.
21928 * soft-fp/extendsftf2.c: Likewise.
21929 * soft-fp/extendxftf2.c: Likewise.
21930 * soft-fp/fixdfdi.c: Likewise.
21931 * soft-fp/fixdfsi.c: Likewise.
21932 * soft-fp/fixdfti.c: Likewise.
21933 * soft-fp/fixsfdi.c: Likewise.
21934 * soft-fp/fixsfsi.c: Likewise.
21935 * soft-fp/fixsfti.c: Likewise.
21936 * soft-fp/fixtfdi.c: Likewise.
21937 * soft-fp/fixtfsi.c: Likewise.
21938 * soft-fp/fixtfti.c: Likewise.
21939 * soft-fp/fixunsdfdi.c: Likewise.
21940 * soft-fp/fixunsdfsi.c: Likewise.
21941 * soft-fp/fixunsdfti.c: Likewise.
21942 * soft-fp/fixunssfdi.c: Likewise.
21943 * soft-fp/fixunssfsi.c: Likewise.
21944 * soft-fp/fixunssfti.c: Likewise.
21945 * soft-fp/fixunstfdi.c: Likewise.
21946 * soft-fp/fixunstfsi.c: Likewise.
21947 * soft-fp/fixunstfti.c: Likewise.
21948 * soft-fp/floatdidf.c: Likewise.
21949 * soft-fp/floatdisf.c: Likewise.
21950 * soft-fp/floatditf.c: Likewise.
21951 * soft-fp/floatsidf.c: Likewise.
21952 * soft-fp/floatsisf.c: Likewise.
21953 * soft-fp/floatsitf.c: Likewise.
21954 * soft-fp/floattidf.c: Likewise.
21955 * soft-fp/floattisf.c: Likewise.
21956 * soft-fp/floattitf.c: Likewise.
21957 * soft-fp/floatundidf.c: Likewise.
21958 * soft-fp/floatundisf.c: Likewise.
21959 * soft-fp/floatunditf.c: Likewise.
21960 * soft-fp/floatunsidf.c: Likewise.
21961 * soft-fp/floatunsisf.c: Likewise.
21962 * soft-fp/floatunsitf.c: Likewise.
21963 * soft-fp/floatuntidf.c: Likewise.
21964 * soft-fp/floatuntisf.c: Likewise.
21965 * soft-fp/floatuntitf.c: Likewise.
21966 * soft-fp/fmadf4.c: Likewise.
21967 * soft-fp/fmasf4.c: Likewise.
21968 * soft-fp/fmatf4.c: Likewise.
21969 * soft-fp/gedf2.c: Likewise.
21970 * soft-fp/gesf2.c: Likewise.
21971 * soft-fp/getf2.c: Likewise.
21972 * soft-fp/ledf2.c: Likewise.
21973 * soft-fp/lesf2.c: Likewise.
21974 * soft-fp/letf2.c: Likewise.
21975 * soft-fp/muldf3.c: Likewise.
21976 * soft-fp/mulsf3.c: Likewise.
21977 * soft-fp/multf3.c: Likewise.
21978 * soft-fp/negdf2.c: Likewise.
21979 * soft-fp/negsf2.c: Likewise.
21980 * soft-fp/negtf2.c: Likewise.
21981 * soft-fp/op-1.h: Likewise.
21982 * soft-fp/op-2.h: Likewise.
21983 * soft-fp/op-4.h: Likewise.
21984 * soft-fp/op-8.h: Likewise.
21985 * soft-fp/op-common.h: Likewise.
21986 * soft-fp/quad.h: Likewise.
21987 * soft-fp/single.h: Likewise.
21988 * soft-fp/soft-fp.h: Likewise.
21989 * soft-fp/sqrtdf2.c: Likewise.
21990 * soft-fp/sqrtsf2.c: Likewise.
21991 * soft-fp/sqrttf2.c: Likewise.
21992 * soft-fp/subdf3.c: Likewise.
21993 * soft-fp/subsf3.c: Likewise.
21994 * soft-fp/subtf3.c: Likewise.
21995 * soft-fp/truncdfsf2.c: Likewise.
21996 * soft-fp/trunctfdf2.c: Likewise.
21997 * soft-fp/trunctfsf2.c: Likewise.
21998 * soft-fp/trunctfxf2.c: Likewise.
21999 * soft-fp/unorddf2.c: Likewise.
22000 * soft-fp/unordsf2.c: Likewise.
22001 * soft-fp/unordtf2.c: Likewise.
22002
9ebb0332
JM
220032013-10-15 Joseph Myers <joseph@codesourcery.com>
22004
22005 * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
22006 * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
22007
4b1a6d8b
OB
220082013-10-15 Ondřej Bílka <neleai@seznam.cz>
22009
22010 * elf/dl-libc.c: Clear initfini list after freeing.
22011
1e145589
JM
220122013-10-14 Joseph Myers <joseph@codesourcery.com>
22013
22014 * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
22015 * soft-fp/addsf3.c: Likewise.
22016 * soft-fp/addtf3.c: Likewise.
22017 * soft-fp/divdf3.c: Likewise.
22018 * soft-fp/divsf3.c: Likewise.
22019 * soft-fp/divtf3.c: Likewise.
22020 * soft-fp/double.h: Likewise.
22021 * soft-fp/eqdf2.c: Likewise.
22022 * soft-fp/eqsf2.c: Likewise.
22023 * soft-fp/eqtf2.c: Likewise.
22024 * soft-fp/extenddftf2.c: Likewise.
22025 * soft-fp/extended.h: Likewise.
22026 * soft-fp/extendsfdf2.c: Likewise.
22027 * soft-fp/extendsftf2.c: Likewise.
22028 * soft-fp/extendxftf2.c: Likewise.
22029 * soft-fp/fixdfdi.c: Likewise.
22030 * soft-fp/fixdfsi.c: Likewise.
22031 * soft-fp/fixdfti.c: Likewise.
22032 * soft-fp/fixsfdi.c: Likewise.
22033 * soft-fp/fixsfsi.c: Likewise.
22034 * soft-fp/fixsfti.c: Likewise.
22035 * soft-fp/fixtfdi.c: Likewise.
22036 * soft-fp/fixtfsi.c: Likewise.
22037 * soft-fp/fixtfti.c: Likewise.
22038 * soft-fp/fixunsdfdi.c: Likewise.
22039 * soft-fp/fixunsdfsi.c: Likewise.
22040 * soft-fp/fixunsdfti.c: Likewise.
22041 * soft-fp/fixunssfdi.c: Likewise.
22042 * soft-fp/fixunssfsi.c: Likewise.
22043 * soft-fp/fixunssfti.c: Likewise.
22044 * soft-fp/fixunstfdi.c: Likewise.
22045 * soft-fp/fixunstfsi.c: Likewise.
22046 * soft-fp/fixunstfti.c: Likewise.
22047 * soft-fp/floatdidf.c: Likewise.
22048 * soft-fp/floatdisf.c: Likewise.
22049 * soft-fp/floatditf.c: Likewise.
22050 * soft-fp/floatsidf.c: Likewise.
22051 * soft-fp/floatsisf.c: Likewise.
22052 * soft-fp/floatsitf.c: Likewise.
22053 * soft-fp/floattidf.c: Likewise.
22054 * soft-fp/floattisf.c: Likewise.
22055 * soft-fp/floattitf.c: Likewise.
22056 * soft-fp/floatundidf.c: Likewise.
22057 * soft-fp/floatundisf.c: Likewise.
22058 * soft-fp/floatunsidf.c: Likewise.
22059 * soft-fp/floatunsisf.c: Likewise.
22060 * soft-fp/floatuntidf.c: Likewise.
22061 * soft-fp/floatuntisf.c: Likewise.
22062 * soft-fp/floatuntitf.c: Likewise.
22063 * soft-fp/fmadf4.c: Likewise.
22064 * soft-fp/fmasf4.c: Likewise.
22065 * soft-fp/fmatf4.c: Likewise.
22066 * soft-fp/gedf2.c: Likewise.
22067 * soft-fp/gesf2.c: Likewise.
22068 * soft-fp/getf2.c: Likewise.
22069 * soft-fp/ledf2.c: Likewise.
22070 * soft-fp/lesf2.c: Likewise.
22071 * soft-fp/letf2.c: Likewise.
22072 * soft-fp/muldf3.c: Likewise.
22073 * soft-fp/mulsf3.c: Likewise.
22074 * soft-fp/multf3.c: Likewise.
22075 * soft-fp/negdf2.c: Likewise.
22076 * soft-fp/negsf2.c: Likewise.
22077 * soft-fp/negtf2.c: Likewise.
22078 * soft-fp/op-1.h: Likewise.
22079 * soft-fp/op-2.h: Likewise.
22080 * soft-fp/op-4.h: Likewise.
22081 * soft-fp/op-8.h: Likewise.
22082 * soft-fp/op-common.h: Likewise.
22083 * soft-fp/quad.h: Likewise.
22084 * soft-fp/single.h: Likewise.
22085 * soft-fp/soft-fp.h: Likewise.
22086 * soft-fp/sqrtdf2.c: Likewise.
22087 * soft-fp/sqrtsf2.c: Likewise.
22088 * soft-fp/sqrttf2.c: Likewise.
22089 * soft-fp/subdf3.c: Likewise.
22090 * soft-fp/subsf3.c: Likewise.
22091 * soft-fp/subtf3.c: Likewise.
22092 * soft-fp/truncdfsf2.c: Likewise.
22093 * soft-fp/trunctfdf2.c: Likewise.
22094 * soft-fp/trunctfsf2.c: Likewise.
22095 * soft-fp/trunctfxf2.c: Likewise.
22096 * soft-fp/unorddf2.c: Likewise.
22097 * soft-fp/unordsf2.c: Likewise.
22098 * soft-fp/unordtf2.c: Likewise.
22099
17c48a60
OB
221002013-10-14 Ondřej Bílka <neleai@seznam.cz>
22101
22102 [BZ #15672]
22103 * misc/error.c (error_tail): Fix possible buffer overflow.
22104
cabba934
OB
221052013-10-14 Aurelien Jarno <aurelien@aurel32.net>
22106
22107 [BZ #13028]
22108 * res_send.c(__libc_res_nsend): Correctly copy the nameserver
22109 address.
22110
94bf958a
PM
221112013-10-14 P. J. McDermott <pj@pehjota.net>
22112
22113 [BZ #832]
22114 * elf/ldd.bash.in (try_trace): New function. Delete previous code
22115 testing pipefail option.
22116
71b4dea7
JM
221172013-10-12 Joseph Myers <joseph@codesourcery.com>
22118
22119 * soft-fp/double.h: Indent preprocessor directives inside #if.
22120 * soft-fp/extended.h: Likewise.
22121 * soft-fp/op-2.h: Likewise.
22122 * soft-fp/op-4.h: Likewise.
22123 * soft-fp/op-common.h: Likewise.
22124 * soft-fp/quad.h: Likewise.
22125 * soft-fp/single.h: Likewise.
22126 * soft-fp/soft-fp.h: Likewise.
22127
55602758
YC
221282013-10-12 Yuri Chornoivan <yurchor@ukr.net>
22129
22130 * iconv/iconv_prog.c: Fix typos.
22131 * stdio-common/psiginfo-data.h: Likewise.
22132
9cd83302
RT
221332013-10-12 Reuben Thomas <rrt@sc3d.org>
22134
22135 [BZ #15764]
22136 * locale/setlocale.c: Fix typo.
22137
99fd9f47
JM
221382013-10-12 Joseph Myers <joseph@codesourcery.com>
22139
b7ea74f0
JM
22140 [BZ #16036]
22141 * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
22142 signaling NaN arguments.
22143 * soft-fp/unordsf2.c (__unordsf2): Likewise.
22144 * soft-fp/unordtf2.c (__unordtf2): Likewise.
22145
8a509447
JM
22146 [BZ #14910]
22147 * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
22148 unordered operands.
22149 * soft-fp/gesf2.c (__gesf2): Likewise.
22150 * soft-fp/getf2.c (__getf2): Likewise.
22151 * soft-fp/ledf2.c (__ledf2): Likewise.
22152 * soft-fp/lesf2.c (__lesf2): Likewise.
22153 * soft-fp/letf2.c (__letf2): Likewise.
22154
98998e9f
JM
22155 * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
22156 * soft-fp/eqsf2.c (__eqsf2): Likewise.
22157 * soft-fp/eqtf2.c (__eqtf2): Likewise.
22158 * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
22159 * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
22160 * soft-fp/fixdfti.c (__fixdfti): Likewise.
22161 * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
22162 * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
22163 * soft-fp/fixsfti.c (__fixsfti): Likewise.
22164 * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
22165 * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
22166 * soft-fp/fixtfti.c (__fixtfti): Likewise.
22167 * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
22168 * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
22169 * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
22170 * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
22171 * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
22172 * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
22173 * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
22174 * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
22175 * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
22176 * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
22177 * soft-fp/floatdisf.c (__floatdisf): Likewise.
22178 * soft-fp/floatsisf.c (__floatsisf): Likewise.
22179 * soft-fp/floattidf.c (__floattidf): Likewise.
22180 * soft-fp/floattisf.c (__floattisf): Likewise.
22181 * soft-fp/floattitf.c (__floattitf): Likewise.
22182 * soft-fp/floatundidf.c (__floatundidf): Likewise.
22183 * soft-fp/floatundisf.c (__floatundisf): Likewise.
22184 * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
22185 * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
22186 * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
22187 * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
22188 * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
22189 * soft-fp/gesf2.c (__gesf2): Likewise.
22190 * soft-fp/getf2.c (__getf2): Likewise.
22191 * soft-fp/ledf2.c (__ledf2): Likewise.
22192 * soft-fp/lesf2.c (__lesf2): Likewise.
22193 * soft-fp/letf2.c (__letf2): Likewise.
22194
8edc4a11
JM
22195 * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
22196 Undefine and redefine.
22197 [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
22198 [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
22199 [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
22200 * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
22201 (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22202 * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
22203 (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22204 * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
22205 (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22206 * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
22207 (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22208 * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
22209 (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22210 * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
22211 (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
22212
8399acaf
JM
22213 [BZ #16032]
22214 * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
22215 without decrementing exponent if mantissa >= that for the
22216 denominator, not >.
22217 (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
22218 denominator, not >. Decrement exponent in < case instead of
22219 incrementing in >= case.
22220 * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
22221 without decrementing exponent if mantissa >= that for the
22222 denominator, not >.
22223
99fd9f47
JM
22224 * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
22225 computing saturated result for unsigned overflow.
22226
10e1cf6b
SP
222272013-10-11 Siddhesh Poyarekar <siddhesh@redhat.com>
22228 Jeff Law <law@redhat.com>
22229
22230 * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
22231 (atan2Mp): Add systemtap probe marker.
22232 * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
22233 (__ieee754_log): Add systemtap probe marker.
22234 * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
22235 (atanMp): Add systemtap probe marker.
22236 * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
22237 (tanMp): Add systemtap probe marker.
22238 * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
22239 (__slowexp): Add systemtap probe marker.
22240 * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
22241 (__slowpow): Add systemtap probe marker.
22242 * manual/probes.texi: Document probes.
22243
3d110c7c
EB
222442013-10-11 Eric Biggers <ebiggers3@gmail.com>
22245
22246 [BZ #15362]
22247 * libio/fileops.c (_IO_new_file_write): Return count of bytes
22248 written.
22249 (_IO_new_file_xsputn): Don't return EOF if nothing has been
22250 written.
22251 * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
22252 written to buffer but not flushed.
22253 * libio/iofwrite_u.c: Likewise.
22254 * libio/iopadn.c: Return bytes returned even if EOF was
22255 encountered.
22256 * libio/iowpadn.c: Likewise.
22257 * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
22258 if _IO_padn does not write the whole buffer.
22259 [!COMPILE_WPRINTF] (PAD): Likewise.
22260
75b4202a
DM
222612013-10-10 David S. Miller <davem@davemloft.net>
22262
22263 * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
22264 directory block.
22265
6c6352e6
JM
222662013-10-10 Joseph Myers <joseph@codesourcery.com>
22267
33b853c3
JM
22268 * soft-fp/extendxftf2.c: Use copyright year range. Use URL
22269 instead of FSF address.
22270 * soft-fp/fixdfti.c: Likewise.
22271 * soft-fp/fixsfti.c: Likewise.
22272 * soft-fp/fixtfti.c: Likewise.
22273 * soft-fp/fixunsdfti.c: Likewise.
22274 * soft-fp/fixunssfti.c: Likewise.
22275 * soft-fp/fixunstfti.c: Likewise.
22276 * soft-fp/floattidf.c: Likewise.
22277 * soft-fp/floattisf.c: Likewise.
22278 * soft-fp/floattitf.c: Likewise.
22279 * soft-fp/floatuntidf.c: Likewise.
22280 * soft-fp/floatuntisf.c: Likewise.
22281 * soft-fp/floatuntitf.c: Likewise.
22282 * soft-fp/trunctfxf2.c: Likewise.
22283
6c6352e6
JM
22284 * soft-fp/extendxftf2.c: New file. Copied from libgcc.
22285 * soft-fp/fixdfti.c: Likewise.
22286 * soft-fp/fixsfti.c: Likewise.
22287 * soft-fp/fixtfti.c: Likewise.
22288 * soft-fp/fixunsdfti.c: Likewise.
22289 * soft-fp/fixunssfti.c: Likewise.
22290 * soft-fp/fixunstfti.c: Likewise.
22291 * soft-fp/floattidf.c: Likewise.
22292 * soft-fp/floattisf.c: Likewise.
22293 * soft-fp/floattitf.c: Likewise.
22294 * soft-fp/floatuntidf.c: Likewise.
22295 * soft-fp/floatuntisf.c: Likewise.
22296 * soft-fp/floatuntitf.c: Likewise.
22297 * soft-fp/trunctfxf2.c: Likewise.
22298
3bf78b71
DM
222992013-10-10 David S. Miller <davem@davemloft.net>
22300
22301 * sysdeps/sparc/fpu/libm-test-ulps: Update.
22302
6f10289e
JM
223032013-10-10 Joseph Myers <joseph@codsourcery.com>
22304
bd878fc0
JM
22305 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
22306 (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
22307 [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
22308 [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
22309 [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
22310 [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
22311 [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
22312
6f10289e
JM
22313 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
22314 for NaNs before doing comparisons on argument.
22315 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
22316 Likewise.
22317
321e2684
WN
223182013-10-10 Will Newton <will.newton@linaro.org>
22319
22320 * malloc/hooks.c (memalign_check): Ensure the value of bytes
22321 passed to _int_memalign does not overflow.
22322
40fefba1
TR
223232013-10-10 Torvald Riegel <triegel@redhat.com>
22324
22325 * scripts/bench.pl: Add include-sources directive.
22326 * benchtests/README: Update documentation.
22327
2ae21ed2
JM
223282013-10-10 Joseph Myers <joseph@codesourcery.com>
22329
dcc2dd3f
JM
22330 * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
22331 * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
22332 instead of FP_INIT_ROUNDMODE.
22333 * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
22334 * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
22335
2ae21ed2
JM
22336 [BZ #16034]
22337 * soft-fp/op-common.h (_FP_NEG): Document input as raw. Do not
22338 copy class of input value.
22339 * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing. Do
22340 not handle exceptions.
22341 * soft-fp/negsf2.c (__negsf2): Likewise.
22342 * soft-fp/negtf2.c (__negtf2): Likewise.
22343 * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
22344
cb8f9562
JM
223452013-10-09 Joseph Myers <joseph@codesourcery.com>
22346
22347 * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
22348 semicolon. From Linux kernel.
22349
5b60c59d
AB
223502013-10-09 Adam Buchbinder <adam.buchbinder@gmail.com>
22351
22352 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
22353
b86835ca
YC
223542013-10-08 Yogesh Chaudhari <mr.yogesh@gmail.com>
22355
22356 [BZ #156]
22357 * manual/socket.texi: Added statement about buffer
22358 for gethostbyname2_r.
22359
e7044ea7
OB
223602013-10-08 Ondřej Bílka <neleai@seznam.cz>
22361
22362 * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
22363 Use .p2align directive instead, throughout.
22364 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
22365 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
22366 * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
22367 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
22368 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
22369 * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
22370 * sysdeps/x86_64/strchr.S: Likewise.
22371 * sysdeps/x86_64/strrchr.S: Likewise.
22372
09544cbc
SP
223732013-10-08 Siddhesh Poyarekar <siddhesh@redhat.com>
22374
88576635
SP
22375 * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
22376
e7b2d1dd
SP
22377 * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
22378
09544cbc
SP
22379 * sysdeps/generic/math_private.h (__mpsin1): Remove
22380 declaration.
22381 (__mpcos1): Likewise.
22382 (__mpsin): New argument __range_reduce.
22383 (__mpcos): Likewise.
22384 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
22385 (slow): Use __mpsin and __mpcos.
22386 (slow1): Likewise.
22387 (slow2): Likewise.
22388 (sloww): Likewise.
22389 (sloww1): Likewise.
22390 (sloww2): Likewise.
22391 (bsloww): Likewise.
22392 (bsloww1): Likewise.
22393 (bsloww2): Likewise.
22394 (cslow2): Likewise.
22395 (csloww): Likewise.
22396 (csloww1): Likewise.
22397 (csloww2): Likewise.
22398 * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
22399 range_reduce. Merge in __mpsin1.
22400 (__mpcos): Likewise.
22401 (__mpsin1): Remove.
22402 (__mpcos1): Likewise.
22403
7602d070
JM
224042013-10-07 Joseph Myers <joseph@codesourcery.com>
22405
22406 * locale/loadlocale.c (_nl_intern_locale_data): Use
22407 LOCFILE_ALIGNED_P.
22408 * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
22409 LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
22410 * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
22411 obstack data is appropriately aligned.
22412 (obstack_int32_grow_fast): Likewise.
22413 * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
22414 * locale/programs/locfile.c (add_locale_uint32): Likewise.
22415 (add_locale_uint32_array): Likewise.
22416
a357259b
SP
224172013-10-07 Siddhesh Poyarekar <siddhesh@redhat.com>
22418
22419 * benchtests/Makefile: Remove ARGLIST and RET variables.
22420 ($(objpfx)bench-%.c): Pass only function name to the script.
22421 * benchtests/README: Update documentation.
22422 * benchtests/acos-inputs: Add new directives.
22423 * benchtests/acosh-inputs: Likewise.
22424 * benchtests/asin-inputs: Likewise.
22425 * benchtests/asinh-inputs: Likewise.
22426 * benchtests/atan-inputs: Likewise.
22427 * benchtests/atanh-inputs: Likewise.
22428 * benchtests/cos-inputs: Likewise.
22429 * benchtests/cosh-inputs: Likewise.
22430 * benchtests/exp-inputs: Likewise.
22431 * benchtests/log-inputs: Likewise.
22432 * benchtests/pow-inputs: Likewise.
22433 * benchtests/rint-inputs: Likewise.
22434 * benchtests/sin-inputs: Likewise.
22435 * benchtests/sinh-inputs: Likewise.
22436 * benchtests/tan-inputs: Likewise.
22437 * benchtests/tanh-inputs: Likewise.
22438 * scripts/bench.pl: Add support for new directives.
22439
9ec1b13d
AM
224402013-10-07 Alan Modra <amodra@gmail.com>
22441
22442 * README: Fix careless merge.
22443
8b7d57cd
AM
224442013-10-05 Alan Modra <amodra@gmail.com>
22445
22446 * NEWS: Mention powerpc64le support and bugs fixed.
22447 * README: Both big-endian and little-endian powerpc64 supported.
22448
7b7bab13
ST
224492013-10-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
22450
57f41c40
AS
22451 * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
22452 (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
7b7bab13
ST
22453 (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
22454 _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
22455
d39baad1
RA
224562013-10-04 Ryan S. Arnold <ryan.arnold@linaro.org>
22457
22458 * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
22459 match prototype.
22460
cd78f7e7
JM
224612013-10-04 Joseph Myers <joseph@codesourcery.com>
22462
29d73d86
JM
22463 * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
22464 Move -mhard-float appending from
22465 ports/sysdeps/powerpc/powerpc32/Makefile.
22466 [$(with-fp) = yes] (ASFLAGS): Likewise.
22467 [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
22468 * sysdeps/powerpc/nofpu: Move directory from
22469 ports/sysdeps/powerpc/nofpu.
22470 * sysdeps/powerpc/soft-fp: Move directory from
22471 ports/sysdeps/powerpc/soft-fp.
22472 * sysdeps/powerpc/powerpc32/405: Move directory from
22473 ports/sysdeps/powerpc/powerpc32/405.
22474 * sysdeps/powerpc/powerpc32/440: Move directory from
22475 ports/sysdeps/powerpc/powerpc32/440.
22476 * sysdeps/powerpc/powerpc32/464: Move directory from
22477 ports/sysdeps/powerpc/powerpc32/464.
22478 * sysdeps/powerpc/powerpc32/476: Move directory from
22479 ports/sysdeps/powerpc/powerpc32/476.
22480 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
22481 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
22482 * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
22483 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
22484 * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
22485 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
22486 * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
22487 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
22488 * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
22489 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
22490 * README: Update for powerpc-*-linux-gnu software floating point
22491 support in libc.
22492
e246b347
JM
22493 * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
22494 case to powerpc/powerpc32*.
22495 * sysdeps/unix/sysv/linux/configure: Regenerated.
22496
89c2003e
JM
22497 * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
22498 (_FPU_MASK_OM): Define as 0x04.
22499 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
22500 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
22501 0x00c10080.
22502 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
22503 0x0000003c.
22504 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
22505
cd78f7e7
JM
22506 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
22507 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
22508 getcontext_e500.
22509 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
22510 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
22511 setcontext_e500.
22512 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
22513 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
22514 and setcontext_e500.
22515
c755294d
CL
225162013-10-04 Chris Leonard <cjl@sugarlabs,.org>
22517
22518 * locale/iso-3166.def: Update iso-1366.def and related occurrences
22519
e16d221c
SP
225202013-10-04 Siddhesh Poyarekar <siddhesh@redhat.com>
22521
22522 * manual/threads.texi (Default Thread Attributes): Fix typo.
22523
215c7d43
WN
225242013-10-04 Will Newton <will.newton@linaro.org>
22525
22526 * malloc/Makefile: Add tst-memalign.
22527 * malloc/tst-memalign.c: New file.
22528
27d0461b
WN
22529 * malloc/tst-posix_memalign.c: Add comments.
22530 (do_test): Add comments and call free on all potentially
22531 allocated pointers. Add space after cast.
22532
1bc92709
WN
22533 * malloc/tst-pvalloc.c: Add comments.
22534 (do_test): Add comments and call free on all potentially
22535 allocated pointers. Remove duplicate check for NULL pointer.
22536 Add space after cast.
22537
66a9be9d
WN
22538 * malloc/tst-valloc.c: Add comments.
22539 (do_test): Add comments and call free on all potentially
22540 allocated pointers. Remove duplicate check for NULL pointer.
22541 Add space after cast.
22542
4cb81307
AM
225432013-10-04 Alan Modra <amodra@gmail.com>
22544
22545 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
22546 Use stdint types in rather than __attribute__((mode())).
22547 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
22548
f8e3e9f3
AM
225492013-10-04 Alan Modra <amodra@gmail.com>
22550
22551 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
22552 Correct handling of unaligned relocs for little-endian.
22553 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
22554
8f9ebb08
AM
225552013-10-04 Alan Modra <amodra@gmail.com>
22556
22557 * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
22558 * configure: Regenerate.
22559 * nptl/shlib-versions: Powerpc*le starts at 2.18.
22560 * shlib-versions: Likewise.
22561
0edf96c2
AM
225622013-10-04 Alan Modra <amodra@gmail.com>
22563
22564 * string/tester.c (test_memrchr): Increment reported test cycle.
22565
e0f7a380
AM
225662013-10-04 Alan Modra <amodra@gmail.com>
22567
22568 * string/test-memcpy.c (do_one_test): When reporting errors, print
22569 string address and don't overrun end of string.
22570
466b0393
AM
225712013-10-04 Alan Modra <amodra@gmail.com>
22572
22573 * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
22574 insrdi. Make better use of reg selection to speed exit slightly.
22575 Schedule entry path a little better. Remove useless "are we done"
22576 checks on entry to main loop. Handle wrapping around zero address.
22577 Correct main loop count. Handle single left-over word from main
22578 loop inline rather than by using loop_small. Remove extra word
22579 case in loop_small caused by wrong loop count. Add little-endian
22580 support.
22581 * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
22582 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise. Use proper
22583 cache hint.
22584 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
22585 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
22586 support. Avoid rlwimi.
22587 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
22588
3be87c77
AM
225892013-10-04 Alan Modra <amodra@gmail.com>
22590
22591 * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
e3764517 22592 insrdi. Formatting.
3be87c77
AM
22593 * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
22594 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
22595 * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
22596 * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
22597 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
22598 * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
22599
759cfef3
AM
226002013-10-04 Alan Modra <amodra@gmail.com>
22601
22602 * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
22603 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
22604 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
22605 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
22606 * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
22607 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
22608 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
22609 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
22610 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise. Make better
22611 use of regs. Use power7 mtocrf. Tidy function tails.
22612
fe6e95d7
AM
226132013-10-04 Alan Modra <amodra@gmail.com>
22614
22615 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
22616 Formatting. Consistently use rXXX register defines or rN defines.
22617 Use early exit labels that avoid restoring unused non-volatile regs.
22618 Make cr field use more consistent with rWORDn compares. Rename
22619 regs used as shift registers for unaligned loop, using rN defines
22620 for short lifetime/multiple use regs.
22621 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
22622 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise. Exit with
22623 addi 1,1,64 to pop stack frame. Simplify return value code.
22624 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
22625
664318c3
AM
226262013-10-04 Alan Modra <amodra@gmail.com>
22627
22628 * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
22629 support. Correct typos, formatting. Optimize tail. Use insrdi
22630 rather than rlwimi.
22631 * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
22632 * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
22633 little-endian support. Correct typos.
22634 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise. Use insrdi
22635 rather than rlwimi.
22636 * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define. Use
22637 in loop and entry code to keep "and." results.
22638 (strchr): Add little-endian support. Comment. Move cntlzd
22639 earlier in tail.
22640 * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
22641
43b84013
AM
226422013-10-04 Alan Modra <amodra@gmail.com>
22643
22644 * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
22645 * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
22646 * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
22647 * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
22648
8a7413f9
AM
226492013-10-04 Alan Modra <amodra@gmail.com>
22650
22651 * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
22652 (rTMP): Define as r11.
22653 (strcmp): Add little-endian support. Optimise tail.
22654 * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
22655 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
22656 * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
22657 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
22658 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
22659 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
22660 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
22661
33ee81de
AM
226622013-10-04 Alan Modra <amodra@gmail.com>
22663
22664 * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
22665 little-endian support. Remove unnecessary "are we done" tests.
22666 Handle "s" wrapping around zero and extremely large "size".
22667 Correct main loop count. Handle single left-over word from main
22668 loop inline rather than by using small_loop. Correct comments.
22669 Delete "zero" tail, use "end_max" instead.
22670 * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
22671
db9b4570
AM
226722013-10-04 Alan Modra <amodra@gmail.com>
22673
22674 * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
22675 support. Don't branch over align.
22676 * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
22677 * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
22678 support. Rearrange tmp reg use to suit. Comment.
22679 * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
22680
f7c399cf
AM
226812013-10-04 Alan Modra <amodra@gmail.com>
22682
22683 * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
22684
0b2c2ace
AM
226852013-10-04 Alan Modra <amodra@gmail.com>
22686
22687 * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
22688 conditional form of branch and link when obtaining pc.
22689 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
22690
02f04a6c
AM
226912013-10-04 Alan Modra <amodra@gmail.com>
22692
22693 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
22694 HIWORD/LOWORD.
22695 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
22696 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
22697
9b874b2f
AM
226982013-10-04 Alan Modra <amodra@gmail.com>
22699
22700 * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
22701 * sysdeps/powerpc/novmx-longjmp.c: Likewise.
22702 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
22703 * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
22704 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
22705 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
22706 * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
22707 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
22708 * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
22709 * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
22710
be1e5d31
AB
227112013-10-04 Anton Blanchard <anton@au1.ibm.com>
22712 Alistair Popple <alistair@ozlabs.au.ibm.com>
22713 Alan Modra <amodra@gmail.com>
22714
22715 [BZ #15723]
22716 * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
22717 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
22718 _dl_hwcap access for little-endian.
22719 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise. Don't
22720 destroy vmx regs when saving unaligned.
22721 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
22722 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save. Don't
22723 destroy vmx regs when saving unaligned.
22724
fef13a78
AM
227252013-10-04 Alan Modra <amodra@gmail.com>
22726
22727 * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
22728 Don't use a union to pack hi/low value.
22729
76a66d51
AB
227302013-10-04 Anton Blanchard <anton@au1.ibm.com>
22731
22732 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
22733 for little-endian.
22734 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
22735 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
22736 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
22737 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
22738 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
22739
6a31fe7f
AM
227402013-10-04 Alan Modra <amodra@gmail.com>
22741
22742 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
22743 constants to usual value for .cst8 section, and remove redundant
22744 high address load.
22745 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
22746 constant for 0x1p52. Load little-endian words of double from
22747 correct stack offsets.
22748
7b88401f
AM
227492013-10-04 Alan Modra <amodra@gmail.com>
22750
22751 * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
22752 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
22753 words of double from correct stack offsets.
22754 * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
22755 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
22756 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
22757 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
22758 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
22759 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
22760 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
22761 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
22762 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
22763 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
22764 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
22765 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
22766 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
22767 * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
22768 * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
22769 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
22770 * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
22771
9c008155
AM
227722013-10-04 Alan Modra <amodra@gmail.com>
22773
22774 * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
22775 64-bit int/double union.
22776 (_FPU_SETCW): Likewise.
22777 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
22778 (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
22779
da13146d
AM
227802013-10-04 Alan Modra <amodra@gmail.com>
22781
22782 * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
22783 * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
22784
603e8410
AM
227852013-10-04 Alan Modra <amodra@gmail.com>
22786
22787 * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
22788 use vector int constants.
22789 (__float_and_test24, __float_and8, __float_get_exp): Likewise.
22790
4a28b3ca
AB
227912013-10-04 Anton Blanchard <anton@au1.ibm.com>
22792
22793 * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
22794 array with long long.
22795 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
22796 * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
22797 * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
22798 * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
22799 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
22800 * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
22801 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
22802 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
22803 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
22804 * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
22805 * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
22806 * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
22807 * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
22808
2ca85d2b
AB
228092013-10-04 Anton Blanchard <anton@au1.ibm.com>
22810
22811 * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
22812 (__signbit): Likewise. Correct for little-endian.
22813 (__signbitl): Call __signbit.
22814 (lrint): Correct for little-endian.
22815 (lrintf): Call lrint.
22816
62a728ae
AM
228172013-10-04 Alan Modra <amodra@gmail.com>
22818
22819 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
22820 union 32-bit int array member with 64-bit int array.
22821 (t515, tm256): Double rather than long double.
22822 (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
22823
32c301df
AM
228242013-10-04 Alan Modra <amodra@gmail.com>
22825
22826 * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
22827 Delete.
22828 (IEEE854_LONG_DOUBLE_BIAS): Delete.
22829 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
22830 version of math_ldbl.h.
22831
650ef4bd
AM
228322013-10-04 Alan Modra <amodra@gmail.com>
22833
22834 [BZ #15734], [BZ #15735]
22835 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
22836 all uses of ieee875 long double macros and unions. Simplify test
22837 for 0.0L. Correct |x|<|y| and |x|=|y| test. Use
22838 ldbl_extract_mantissa value for ix,iy exponents. Properly
22839 normalize after ldbl_extract_mantissa, and don't add hidden bit
22840 already handled. Don't treat low word of ieee854 mantissa like
22841 low word of IBM long double and mask off bit when testing for
22842 zero.
22843 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
22844 all uses of ieee875 long double macros and unions. Simplify tests
22845 for 0.0L and inf. Correct double adjustment of k. Delete dead code
22846 adjusting ha,hb. Simplify code setting kld. Delete two600 and
22847 two1022, instead use their values. Recognise that tests for large
22848 "a" and small "b" are mutually exclusive. Rename vars. Comment.
22849 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
22850 Rewrite all uses of ieee875 long double macros and unions. Simplify
22851 test for 0.0L and nan. Correct negation.
22852 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
22853 ieee875 long double macros and unions. Correct output for large
22854 magnitude x. Correct absolute value calculation.
22855 (__erfcl): Likewise.
22856 * math/libm-test.inc: Add tests for errors discovered in IBM long
22857 double versions of fmodl, remainderl, erfl and erfcl.
22858
765714ca
AM
228592013-10-04 Alan Modra <amodra@gmail.com>
22860
22861 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
22862 all uses of ieee854 long double macros and unions. Simplify tests
22863 for long doubles that are fully specified by the high double.
22864 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
22865 Likewise.
22866 * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
22867 Remove dead code too.
22868 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
22869 (__ieee754_ynl): Likewise.
22870 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
22871 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
22872 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
22873 Remove dead code too.
22874 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
22875 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
22876 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
22877 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
22878 Simplify.
22879 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
22880 Simplify.
22881 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
22882 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
22883 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
22884 Comment on variable precision.
22885 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
22886 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
22887 Likewise.
22888 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
22889 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
22890 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
22891 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
22892 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
22893
4ebd120c
AM
228942013-10-04 Alan Modra <amodra@gmail.com>
22895
22896 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
22897 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
22898 all uses of ieee854 long double macros and unions.
22899 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
22900 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
22901 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
22902 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
22903 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
22904 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
22905 Likewise.
22906 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
22907 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
22908 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
22909 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
22910 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
22911 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
22912 Simplify sign and nan test too.
22913 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
22914 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
22915 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
22916 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
22917 Likewise.
22918 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
22919 * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
22920 Likewise.
22921 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
22922 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
22923 * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
22924 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
22925 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
22926 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
22927
1b6adf88
AM
229282013-10-04 Alan Modra <amodra@gmail.com>
22929
22930 * stdio-common/printf_size.c (__printf_size): Don't use
22931 union ieee854_long_double in fpnum union.
22932 * stdio-common/printf_fphex.c (__printf_fphex): Likewise. Use
22933 signbit macro to retrieve sign from long double.
22934 * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
22935 retrieve sign from long double.
22936 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
22937 * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
22938 * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
22939 * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
22940 * math/test-misc.c (main): Don't use union ieee854_long_double.
22941
4cf69995
AM
229422013-10-04 Alan Modra <amodra@gmail.com>
22943
22944 [BZ #15680]
22945 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
22946 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
22947 (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
22948 calculation. Remove unnecessary test for denormal exponent.
22949 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
22950 Correct handling of denormals. Avoid undefined shift behaviour.
22951 Correct normalisation of low mantissa when low double is denormal.
22952 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
22953 (ldbl_extract_mantissa): Likewise. Comment. Use uint64_t* for hi64.
22954 (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
22955 Correct normalisation of low mantissa. Test for overflow of high
22956 mantissa and normalise.
22957 (ldbl_nearbyint): Use more readable constant for two52.
22958 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
22959 (__mpn_construct_long_double): Fix test for overflow of high
22960 mantissa and correct normalisation. Avoid undefined shift.
22961
9605ca6c
AM
229622013-10-04 Alan Modra <amodra@gmail.com>
22963
22964 * sysdeps/ieee754/ldbl-128ibm/ieee754.h
22965 (union ibm_extended_long_double): Define as an array of ieee754_double.
22966 (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
22967 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
22968 to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
22969 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
22970 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
22971 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
22972 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
22973 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
22974 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
22975 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
22976 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
22977
975569d0
JM
229782013-10-03 Joseph Myers <joseph@codesourcery.com>
22979
d3d23756
JM
22980 * locale/programs/locarchive.c (add_locale): Use constant 4096 for
22981 page size instead of calling getpagesize.
22982
975569d0
JM
22983 * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
22984 (LOCFILE_ALIGN_MASK): Likewise.
22985 (LOCFILE_ALIGN_UP): Likewise.
22986 (LOCFILE_ALIGNED_P): Likewise.
22987 * locale/programs/ld-collate.c (collate_output): Use the new
22988 macros instead of __alignof__ (int32_t).
22989 * locale/weight.h (findidx): Likewise.
22990
b1fe1f2b
OB
229912013-10-03 Ondřej Bílka <neleai@seznam.cz>
22992
22993 [BZ #431]
22994 * manual/string.texi: Fix strncat and wcsncat.
22995
5f855e35
BM
229962013-10-03 Brooks Moses <bmoses@google.com>
22997
22998 [BZ #15915]
22999 * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
23000 * Makerules: ...here, and adjust associated comments.
23001
3cef6009
WN
230022013-10-02 Will Newton <will.newton@linaro.org>
23003
23004 * malloc/Makefile: Add tst-pvalloc.
23005 * malloc/tst-pvalloc.c: New file.
23006
7815420b
WN
230072013-10-02 Will Newton <will.newton@linaro.org>
23008
23009 * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
23010 improve test coverage.
23011
4868b204
WN
230122013-10-02 Will Newton <will.newton@linaro.org>
23013
23014 * malloc/Makefile: Add tst-posix_memalign.
23015 * malloc/tst-posix_memalign.c: New file.
23016
29c793b3
EB
230172013-10-01 Eric Blake <eblake@redhat.com>
23018
23019 * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
23020 Use __THROWNL rather than __THROW on static functions.
23021
fd967522
PM
230222013-09-30 Petr Machata <pmachata@redhat.com>
23023
23024 * elf/elf.h (R_AARCH64_ABS16): New macro.
23025 (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
23026 (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
23027 (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
23028 (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
23029 (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
23030 (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
23031 (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
23032 (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
23033 (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
23034 (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
23035 (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
23036 (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
23037 (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
23038 (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
23039 (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
23040 (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
23041 (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
23042 (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
23043 (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
23044 (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
23045 (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
23046 (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
23047 (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
23048 (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
23049 (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
23050 (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
23051 (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
23052 (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
23053 (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
23054 (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
23055 (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
23056 (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
23057 (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
23058 (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
23059 (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
23060 (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
23061 (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
23062 (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
23063 (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
23064 (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
23065 (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
23066 (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
23067 (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
23068 (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
23069 (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
23070 (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
23071 (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
23072 (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
23073 (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
23074 (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
23075 (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
23076 (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
23077 (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
23078 (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
23079 (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
23080 (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
23081 (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
23082 (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
23083 (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
23084 (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
23085 (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
23086 (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
23087 (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
23088 (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
23089 (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
23090 (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
23091 (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
23092 (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
23093 (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
23094 (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
23095 (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
23096 (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
23097 (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
23098 (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
23099 (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
23100 (R_AARCH64_TLSDESC_OFF_G1): Likewise.
23101 (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
23102 (R_AARCH64_TLSDESC_LDR): Likewise.
23103 (R_AARCH64_TLSDESC_ADD): Likewise.
23104 (R_AARCH64_TLSDESC_CALL): Likewise.
23105
b2179107
AS
231062013-09-30 Andreas Schwab <schwab@suse.de>
23107
23108 [BZ #15048]
23109 * nscd/aicache.c (addhstaiX): Properly use the cache variable for
23110 the nss database lookup.
23111 * nscd/initgrcache.c (addinitgroupsX): Likewise.
23112 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
23113
47f28d0a
MF
231142013-09-28 Mike Frysinger <vapier@gentoo.org>
23115
23116 * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
23117
231182013-09-28 P. J. McDermott <pj@pehjota.net>
0a834dde
PM
23119
23120 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
23121 ${Bash-specific parameter/pattern/string} parameter expansion.
23122 * sysdeps/unix/make-syscalls.sh: Likewise.
23123
f4518a17
KK
231242013-09-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
23125
23126 * sysdeps/sh/stackguard-macros.h: New file.
23127
dc1a95c7
OB
231282013-09-26 Ondřej Bílka <neleai@seznam.cz>
23129
23130 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
23131 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
23132 * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
23133 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
23134 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
23135 * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
23136
5ebbff8f
AZ
231372013-09-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23138
23139 * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
23140 Fix thread ID register.
23141
4fd2cf9f
JM
231422013-09-25 Joseph Myers <joseph@codesourcery.com>
23143
23144 * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
23145 [POSIX || UNIX98]: Require rather than permitting all symbols from
23146 <time.h>.
23147 [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
23148 element of struct sched_param.
23149 [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
23150 [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
23151 [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
23152 [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
23153 constant.
23154
12c22bc4
OL
231552013-09-24 Olivier Langlois <olivier@olivierlanglois.net>
23156
23157 * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
23158 argument calculation.
23159
a03d8ea7
JM
231602013-09-24 Joseph Myers <joseph@codesourcery.com>
23161
23162 * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
23163 Expect macro.
23164 [POSIX] (pthread_attr_t): Do not require type.
23165 [POSIX] (pthread_cond_t): Likewise.
23166 [POSIX] (pthread_condattr_t): Likewise.
23167 [POSIX] (pthread_key_t): Likewise.
23168 [POSIX] (pthread_mutex_t): Likewise.
23169 [POSIX] (pthread_mutexattr_t): Likewise.
23170 [POSIX] (pthread_once_t): Likewise.
23171 [POSIX] (pthread_t): Likewise.
23172 [POSIX-based standards] (pthread_atfork): Expect function.
23173
6055173a
JM
231742013-09-24 Joseph Myers <joseph@codesourcery.com>
23175 Richard Sandiford <richard@codesourcery.com>
23176
23177 * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
23178 (swap_endianness_p): New extern variable.
23179 (set_big_endian): New inline function.
23180 (maybe_swap_uint32): Likewise.
23181 (maybe_swap_uint32_array): Likewise.
23182 (maybe_swap_uint32_obstack): Likewise.
23183 * locale/programs/locfile.c: Include <stdbool.h>.
23184 (swap_endianness_p): New variable.
23185 (add_locale_uint32): Call maybe_swap_uint32.
23186 (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
23187 (write_locale_data): Call maybe_swap_uint32_array.
23188 * locale/programs/ld-collate.c (obstack_int32_grow): Call
23189 maybe_swap_uint32.
23190 (obstack_int32_grow_fast): Likewise.
23191 (output_weightwc): Call maybe_swap_uint32_obstack.
23192 (collate_output): Likewise.
23193 * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
23194 (OPT_LITTLE_ENDIAN): Likewise.
23195 (options): Add --little-endian and --big-endian options.
23196 (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
23197 * locale/programs/locarchive.c: Include "locfile.h".
23198 (GET): New macro.
23199 (SET): Likewise.
23200 (INC): Likewise.
23201 (create_archive): Use the new macros to access fields of
23202 structures directly mapped from or written to locale archives.
23203 (oldlocrecentcmp): Likewise.
23204 (enlarge_archive): Likewise.
23205 (insert_name): Likewise.
23206 (add_alias): Likewise.
23207 (add_locale): Likewise.
23208 (delete_locales_from_archive): Likewise.
23209 (show_archive_content): Likewise.
23210 (add_locale_to_archive): Likewise. Use maybe_swap_uint32 on
23211 locale data.
23212
39bf0bb4
RM
232132013-09-24 Roland McGrath <roland@hack.frob.com>
23214
23215 * manual/freemanuals.texi: Updated from (newly) canonical copy at
23216 http://www.gnu.org/doc/freemanuals.texi.
23217 * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
23218
f02eed10
WN
232192013-09-24 Will Newton <will.newton@linaro.org>
23220
23221 * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
23222 macro.
23223
a3a6c312
JM
232242013-09-23 Joseph Myers <joseph@codesourcery.com>
23225
23226 * locale/hashval.h (compute_hashval): Interpret bytes of key as
23227 unsigned char.
23228
107375ac
MR
232292013-09-23 Maciej W. Rozycki <macro@codesourcery.com>
23230
23231 * manual/threads.texi (POSIX Threads): Fix a typo.
23232
141f3a77
SP
232332013-09-23 Siddhesh Poyarekar <siddhesh@redhat.com>
23234
303e567a
SP
23235 [BZ #14547]
23236 * string/tst-strcoll-overflow.c: New test case.
23237 * string/Makefile (xtests): Add tst-strcoll-overflow.
23238 * string/strcoll_l.c (STRCOLL): Skip allocating memory for
23239 cache if string sizes may cause integer overflow.
23240
141f3a77
SP
23241 [BZ #14547]
23242 * string/strcoll_l.c (coll_seq): New members rule, idx,
23243 save_idx and back_us.
23244 (get_next_seq_nocache): New function.
23245 (do_compare_nocache): New function.
23246 (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
23247 when malloc fails.
23248
c61b4d41
CD
232492013-09-23 Carlos O'Donell <carlos@redhat.com>
23250
0b1f8e35
CD
23251 [BZ #15754]
23252 * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
23253 __pointer_chk_guard_local, otherwise __pointer_chk_guard.
23254 * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
23255
c61b4d41
CD
23256 [BZ #15754]
23257 * elf/Makefile (tests): Add tst-ptrguard1.
23258 (tests-static): Add tst-ptrguard1-static.
23259 (tst-ptrguard1-ARGS): Define.
23260 (tst-ptrguard1-static-ARGS): Define.
23261 * elf/tst-ptrguard1.c: New file.
23262 * elf/tst-ptrguard1-static.c: New file.
23263 * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
23264 * sysdeps/i386/stackguard-macros.h: Likewise.
23265 * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
23266 * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
23267 * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
23268 * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
23269 * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
23270 * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
23271
232722013-09-23 Hector Marco <hecmargi@upv.es>
23273 Ismael Ripoll <iripoll@disca.upv.es>
23274 Carlos O'Donell <carlos@redhat.com>
23275
23276 [BZ #15754]
23277 * sysdeps/generic/stackguard-macros.h: Define
23278 __pointer_chk_guard_local and POINTER_CHK_GUARD.
23279 * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
23280 Define __pointer_chk_guard_local.
23281 (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
23282 Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
23283
f5f4e7b4
VV
232842013-09-15 Vinitha Vijayan <vinitha.vijayann@gmail.com>
23285
23286 [BZ #15859]
23287 * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
23288
5bb43a43
AS
232892013-09-20 Andreas Schwab <schwab@linux-m68k.org>
23290
23291 * include/string.h (__ffs): Declare as hidden.
23292 * string/ffs.c (__ffs): Define as hidden.
23293 * sysdeps/i386/ffs.c (__ffs): Likewise.
23294 * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
23295 * sysdeps/powerpc/ffs.c (__ffs): Likewise.
23296 * sysdeps/s390/ffs.c (__ffs): Likewise.
23297 * sysdeps/x86_64/ffs.c (__ffs): Likewise.
23298
3ea5be54
AO
232992013-09-20 Alexandre Oliva <aoliva@redhat.com>
23300
ffb89e53
AO
23301 * NEWS: Mention malloc probes.
23302
322dea08
AO
23303 * malloc/arena.c (new_heap): New memory_heap_new probe.
23304 (grow_heap): New memory_heap_more probe.
23305 (shrink_heap): New memory_heap_less probe.
23306 (heap_trim): New memory_heap_free probe.
23307 * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
23308 (systrim): New memory_sbrk_less probe.
23309 * manual/probes.texi: Document them.
23310
655673f3
AO
23311 * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
23312 * manual/probes.texi: Document it.
23313
35fed6f1
AO
23314 * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
23315 (__libc_realloc): Add memory_realloc_retry probe.
23316 (__libc_memalign): Add memory_memalign_retry probe.
23317 (__libc_valloc): Add memory_valloc_retry probe.
23318 (__libc_pvalloc): Add memory_pvalloc_retry probe.
23319 (__libc_calloc): Add memory_calloc_retry probe.
23320 * manual/probes.texi: Document them.
23321
6999d38c
AO
23322 * malloc/arena.c (get_free_list): Add probe
23323 memory_arena_reuse_free_list.
23324 (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
23325 and memory_arena_reuse.
23326 (arena_get2) [!PER_THREAD]: Likewise.
23327 * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
23328 memory_arena_reuse_realloc.
23329 * manual/probes.texi: Document them.
23330
0653427f
AO
23331 * malloc/malloc.c (__libc_free): Add
23332 memory_mallopt_free_dyn_thresholds probe.
23333 (__libc_mallopt): Add multiple memory_mallopt probes.
23334 * manual/probes.texi: Document them.
23335
3ea5be54
AO
23336 * malloc/malloc.c: Include stap-probe.h.
23337 (__libc_mallopt): Add memory_mallopt probe.
23338 * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
23339 * manual/probes.texi: New.
23340 * manual/Makefile (chapters): Add probes.
23341 * manual/threads.texi: Set next node.
23342
e35696c3 233432013-09-19 Wei-Lun Chao <bluebat@member.fsf.org>
3e181dda 23344
e35696c3
CL
23345 [BZ #15963, #13985]
23346 * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
23347 czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
23348 Add `Chinese' to `nan' entry name.
23349
4aafb73c
SP
233502013-09-19 Siddhesh Poyarekar <siddhesh@redhat.com>
23351
23352 * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
23353 (POLYNOMIAL): Likewise.
23354 (TAYLOR_SINCOS): Likewise.
23355 (TAYLOR_SLOW): Likewise.
23356 (__sin): Use TAYLOR_SINCOS.
23357 (__cos): Likewise.
23358 (slow): Use TAYLOR_SLOW.
23359 (sloww): Likewise.
23360 (bsloww): Likewise.
23361 (csloww): Likewise.
23362
d84f25c7
LD
233632013-09-19 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
23364
23365 * stdlib/strtod_l.c: Fix buffer overrun.
23366
5eea0404
SP
233672013-09-19 Siddhesh Poyarekar <siddhesh@redhat.com>
23368
7849ff93
SP
23369 * benchtests/Makefile (bench): Add sincos.
23370 * benchtests/bench-sincos.c: New file.
23371
cfa3c886
SP
23372 * math/libm-test.inc (cos_test_data): New test inputs.
23373 (sin_test_data): Likewise.
23374
b348e1e3
SP
23375 * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
23376 macro.
23377 (__sin): Use it.
23378 (__cos): Likewise.
23379 (slow1): Likewise.
23380 (slow2): Likewise.
23381 (sloww1): Likewise.
23382 (sloww2): Likewise.
23383 (bsloww1): Likewise.
23384 (bsloww2): Likewise.
23385 (cslow2): Likewise.
23386 (csloww1): Likewise.
23387 (csloww2): Likewise.
23388
6cce25f8
SP
23389 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
23390 function.
23391 (__sin): Use it.
23392 (__cos): Likewise.
23393
5eea0404
SP
23394 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
23395 gotos.
23396 (__cos): Likewise.
23397
9c21573c
MR
233982013-09-18 Maciej W. Rozycki <macro@codesourcery.com>
23399
23400 * config.h.in (HAVE_MIPS_NAN2008): New macro.
23401 * elf/elf.h (EF_MIPS_NAN2008): Likewise.
23402 * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
23403 (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
23404 (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
23405 * elf/cache.c (print_entry): Handle the new cache flags.
23406
24d22e65
JM
234072013-09-18 Joseph Myers <joseph@codesourcery.com>
23408 Aldy Hernandez <aldyh@redhat.com>
23409
23410 * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
23411 Change condition to [_SOFT_FLOAT].
23412 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
23413 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
23414 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
23415 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
23416 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
23417 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
23418 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
23419 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
23420 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
23421 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
23422 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
23423 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
23424 [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
23425 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
23426 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
23427 [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
23428 declaration.
23429
d13ef066
JM
234302013-09-18 Joseph Myers <joseph@codesourcery.com>
23431
2e071de0
JM
23432 * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
23433 macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
23434 (__longjmp): Use LOAD_GP to load saved GPRs.
23435 * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
23436 macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
23437 (__sigsetjmp): Use SAVE_GP to save GPRs.
23438
d13ef066
JM
23439 * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
23440 Do not append -msoft-float.
23441 [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
23442
97a0650b
SP
234432013-09-18 Siddhesh Poyarekar <siddhesh@redhat.com>
23444
23445 * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
23446
11ca09e9
JM
234472013-09-17 Joseph Myers <joseph@codesourcery.com>
23448
23449 [BZ #15966]
23450 * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
23451 (_FPU_GETCW): Use initial "__" on variable and field names but not
23452 on macro parameter name.
23453 [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise. Use
23454 parentheses around reference to macro parameter.
23455
08ffcf34
RS
234562013-09-13 Richard Sandiford <richard@codesourcery.com>
23457
23458 * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
23459 prototype.
23460 (ctype_startup): Use uint32_t in cast and sizeof for
23461 ctype->charnames.
23462
ae7080d3
JL
234632013-09-11 Jia Liu <proljc@gmail.com>
23464
23465 * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
23466 __daddr_t_defined.
23467 [__FreeBSD__]: Likewise.
23468
5905e7b3
OB
234692013-09-11 Ondřej Bílka <neleai@seznam.cz>
23470
23471 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
23472 (__libc_ifunc_impl_list): Remove: __strchr_sse42.
23473 * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
23474 (strchr): Remove __strchr_sse42 ifunc selection.
23475 * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
23476 * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
23477
b987c776
WN
234782013-09-11 Will Newton <will.newton@linaro.org>
23479
23480 * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
23481 parameter to RES. Remove hardcoded 1000 value.
23482 * benchtests/bench-skeleton.c (main): Pass RES parameter
23483 to TIMING_INIT and multiply result by 1000.
23484
ddf985af
AZ
234852013-09-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23486
23487 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
23488
ffdd3181
AS
234892013-09-11 Andreas Schwab <schwab@suse.de>
23490
23491 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
23492 if not defined.
23493 (O_TMPFILE) [__USE_GNU]: Define.
23494 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
23495 Define.
23496
b73ed247
WN
234972013-09-11 Will Newton <will.newton@linaro.org>
23498
23499 [BZ #15857]
23500 * malloc/malloc.c (__libc_memalign): Check the value of bytes
23501 does not overflow.
23502
55e17aad
WN
235032013-09-11 Will Newton <will.newton@linaro.org>
23504
23505 [BZ #15856]
23506 * malloc/malloc.c (__libc_valloc): Check the value of bytes
23507 does not overflow.
23508
1159a193
WN
235092013-09-11 Will Newton <will.newton@linaro.org>
23510
23511 [BZ #15855]
23512 * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
23513 does not overflow.
23514
5905e7b3 235152013-09-10 Ondřej Bílka <neleai@seznam.cz>
c7cabd13
OB
23516
23517 * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
23518 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
23519 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
23520 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
23521 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
23522
cdfc721b
AM
235232013-09-10 Allan McRae <allan@archlinux.org>
23524
aa04af00
AM
23525 [BZ #15748]
23526 * manual/arith.texi (Parsing of Floats): Clarify
23527 cross-reference.
23528
cdfc721b
AM
23529 [BZ #15849]
23530 * manual/install.texi (Running make install): Mention
23531 --enable-pt-chown.
23532 * INSTALL: Regenerated.
23533
95e7cf29
MR
235342013-09-09 Maciej W. Rozycki <macro@codesourcery.com>
23535
23536 * csu/init-first.c (_init): Remove the !SHARED condition around
23537 FPU control word initialization.
23538 * elf/dl-support.c (_dl_fpu_control): New variable.
23539 (_dl_aux_init) <AT_FPUCW>: Initialize it.
23540 * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
23541 (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
23542 * math/test-fpucw-static.c: New file.
23543 * math/test-fpucw-ieee.c: New file.
23544 * math/test-fpucw-ieee-static.c: New file.
23545 * math/Makefile (tests): Add `test-fpucw-ieee' and
23546 `$(tests-static)'.
23547 (tests-static): New variable.
23548 [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
23549 dependency to...
23550 [($(build-shared),yes)]
23551 ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
23552 ... this.
23553 [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
23554 New dependency.
23555
83e43bf0
AM
235562013-09-09 Allan McRae <allan@archlinux.org>
23557
a9f5ce09
AM
23558 [BZ #15939]
23559 * manual/string.texi (Collation Functions): Fix typo in
23560 strcoll example.
23561 Reported by Suren Karapetyan <me@suren.karapetyan.name>.
23562
34829bc2
AM
23563 [BZ #15893]
23564 * stdlib/isomac.c (get_null_defines): Fix memory leak.
23565
3932737d
AM
23566 [BZ #15892]
23567 * libio/memstream.c (open_memstream): Fix memory leak.
23568 * libio/wmemstream.c (open_wmemstream): Likewise.
23569
83e43bf0
AM
23570 [BZ #15895]
23571 * nscd/netgroupcache.c: Fix nesting of ifdefs.
23572
0c66b8e9
WN
235732013-09-09 Will Newton <will.newton@linaro.org>
23574
23575 * malloc/Makefile: Add tst-realloc to tests.
23576 * malloc/tst-realloc.c: New file.
23577
f6b00fd1
AM
235782013-09-09 Allan McRae <allan@archlinux.org>
23579
23580 [BZ #15844]
23581 * COPYING: Update from GNU website to fix FSF address.
23582 * COPYING.LIB: Likewise.
23583
eec55e16
DM
235842013-09-06 David S. Miller <davem@davemloft.net>
23585
23586 * po/zh_TW.po: Update Chinese (traditional) translation from
23587 translation project.
23588
1ecbb381
RS
235892013-09-06 Richard Sandiford <richard@codesourcery.com>
23590 Joseph Myers <joseph@codesourcery.com>
23591
23592 * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
23593 "localeinfo.h".
23594 (obstack_chunk_alloc): New macro.
23595 (obstack_chunk_free): Likewise.
23596 (record_offset): New function.
23597 (init_locale_data): Likewise.
23598 (align_locale_data): Likewise.
23599 (add_locale_empty): Likewise.
23600 (add_locale_raw_data): Likewise.
23601 (add_locale_raw_obstack): Likewise.
23602 (add_locale_string): Likewise.
23603 (add_locale_wstring): Likewise.
23604 (add_locale_uint32): Likewise.
23605 (add_locale_uint32_array): Likewise.
23606 (add_locale_char): Likewise.
23607 (start_locale_structure): Likewise.
23608 (end_locale_structure): Likewise.
23609 (start_locale_prelude): Likewise.
23610 (end_locale_prelude): Likewise.
23611 (write_locale_data): Take locale_file structure rather than an
23612 iovec.
23613 * locale/programs/locfile.h: Include "obstack.h".
23614 (struct locale_file): Change to store locale file contents instead
23615 of header.
23616 (init_locale_data): New prototype.
23617 (align_locale_data): Likewise.
23618 (add_locale_empty): Likewise.
23619 (add_locale_raw_data): Likewise.
23620 (add_locale_raw_obstack): Likewise.
23621 (add_locale_string): Likewise.
23622 (add_locale_wstring): Likewise.
23623 (add_locale_uint32): Likewise.
23624 (add_locale_uint32_array): Likewise.
23625 (add_locale_char): Likewise.
23626 (start_locale_structure): Likewise.
23627 (end_locale_structure): Likewise.
23628 (start_locale_prelude): Likewise.
23629 (end_locale_prelude): Likewise.
23630 (write_locale_data): Update prototype.
23631 * locale/programs/3level.h (struct TABLE): Remove result field.
23632 (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
23633 Use new locale_file interface.
23634 [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
23635 (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
23636 * locale/programs/ld-address.c (address_output): Use new
23637 locale_file interface.
23638 * locale/programs/ld-collate.c (NO_FINALIZE): Change to
23639 NO_ADD_LOCALE.
23640 (collate_finish): Don't call collseq_table_finalize.
23641 (collate_output): Use new locale_file interface.
23642 * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
23643 in file.
23644 (NO_FINALIZE): Change to NO_ADD_LOCALE.
23645 (TABLE): Move defines earlier in file.
23646 (ELEMENT): Likewise.
23647 (DEFAULT): Likewise.
23648 (wctrans_table_add): Move macro and inline function earlier in
23649 file.
23650 (struct wctype_table): Move type earlier in file.
23651 (add_locale_wctype_table): New static prototype.
23652 (struct locale_ctype_t): Use logical types instead of struct iovec
23653 pointers for members.
23654 (ctype_output): Use new locale_file interface.
23655 (wctype_table_finalize): Change to add_locale_wctype_table. Use
23656 new locale_file interface.
23657 (allocate_arrays): Update for use of new locale_file interface.
23658 * locale/programs/ld-identification.c (identification_output): Use
23659 new locale_file interface.
23660 * locale/programs/ld-measurement.c (measurement_output): Likewise.
23661 * locale/programs/ld-messages.c (messages_output): Likewise.
23662 * locale/programs/ld-monetary.c (monetary_output): Likewise.
23663 * locale/programs/ld-name.c (name_output): Likewise.
23664 * locale/programs/ld-numeric.c (numeric_output): Likewise.
23665 * locale/programs/ld-paper.c (paper_output): Likewise.
23666 * locale/programs/ld-telephone.c (telephone_output): Likewise.
23667 * locale/programs/ld-time.c (time_output): Likewise.
23668
e029e2e5
AZ
236692013-09-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23670
23671 * benchtests/Makefile: Add memrchr benchmark.
23672 * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
23673 benchmark as memrchr.
23674 * benchtests/bench-memrchr-ifunc.c: New file.
23675 * benchtests/bench-memrchr.c: New file.
23676
bbf6e8e4
WN
236772013-09-06 Will Newton <will.newton@linaro.org>
23678
23679 * benchtests/Makefile (string-bench): Add memcpy.
23680
6c82a2f8
CD
236812013-09-05 Carlos O'Donell <carlos@redhat.com>
23682 Cong Wang <amwang@redhat.com>
23683
e732c5f0 23684 [BZ #15850]
6c82a2f8
CD
23685 * sysdeps/unix/sysv/linux/bits/in.h
23686 [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
23687 * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
23688 before __USE_KERNEL_IPV6_DEFS uses.
23689 * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
23690 IPPROTO_BEETPH.
23691 [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
23692 sockaddr_in6, or ipv6_mreq.
23693
5430fc65
AZ
236942013-09-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23695
23696 * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
23697 memory access for final bytes in some large inputs.
23698 * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
23699
4660856c
AZ
237002013-09-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23701
23702 * string/test-memrchr.c: New file.
23703 * string/test-memrchr-ifunc.c: New file.
23704 * string/Makefile: Add new memrchr testcase.
23705
bb8ea713
MF
237062013-09-05 Mike Frysinger <vapier@gentoo.org>
23707
23708 * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
23709 fanotify_init returns EPERM.
23710
b92a20b5
JM
237112013-09-04 Joseph Myers <joseph@codesourcery.com>
23712
23713 * conform/conformtest.pl (newtoken): Treat tokens not allowed as
23714 errors.
23715 (top level): Treat second token from macro or constant entries for
23716 allowed headers as allowed.
23717 * include/complex.h: Condition internal declarations on
23718 [!_ISOMAC].
23719 * include/fenv.h: Condition include of <stdbool.h> and internal
23720 declarations on [!_ISOMAC].
7447ccd9
CL
23721
237222013-09-04 Chris Leonard <cjl@sugarlabs,.org>
23723
3e181dda 23724 [BZ #15923]
7447ccd9
CL
23725 * locale/iso-4217.def: Update iso-1427.def and related occurrences.
23726
3f2e46a4
JM
237272013-09-04 Joseph Myers <joseph@codesourcery.com>
23728
23729 * configure.in (--enable-versioning): Remove configure option.
23730 (libc_cv_asm_symver_directive): Remove configure test.
23731 (libc_cv_ld_version_script_option): Likewise.
23732 (VERSIONING): Remove variable and AC_SUBST.
23733 (DO_VERSIONING): Remove AC_DEFINE.
23734 * configure: Regenerated.
23735 * config.h.in (DO_VERSIONING): Remove macro.
23736 * Makerules [$(versioning) = yes]: Change conditionals to
23737 [$(build-shared) = yes].
23738 * config.make.in (versioning): Remove variable.
23739 * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
23740 [$(build-shared) = yes].
23741 * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
23742 * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
23743 * elf/Makefile [$(versioning) = yes]: Change conditionals to
23744 [$(build-shared) = yes].
23745 * extra-lib.mk [$(versioning) = yes]: Likewise.
23746 * hurd/Makefile [$(versioning) = yes]: Likewise.
23747 * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
23748 [SHARED].
23749 * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
23750 [SHARED].
23751 [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
23752 [SHARED && !NO_HIDDEN].
23753 * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
23754 [SHARED].
23755 [SHARED && DO_VERSIONING]: Likewise..
23756 * libio/Makefile [$(versioning) = yes]: Change conditionals to
23757 [$(build-shared) = yes].
23758 * manual/install.texi (--disable-versioning): Remove
23759 documentation.
23760 * INSTALL: Regenerated.
23761 * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
23762 to [SHARED].
23763 * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
23764 [$(build-shared) = yes].
23765 * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
23766 * sysdeps/i386/i686/multiarch/strstr-c.c
23767 [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
23768 [SHARED && !NO_HIDDEN].
23769 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
23770 [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
23771 * sysdeps/powerpc/powerpc32/dl-machine.c
23772 [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
23773 * sysdeps/powerpc/powerpc32/sysdep.h
23774 [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
23775 to [SHARED && PIC && !NO_HIDDEN].
23776 * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
23777 conditional to [SHARED].
23778
44558701
WN
237792013-09-04 Will Newton <will.newton@linaro.org>
23780
23781 * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
23782 * benchtests/bench-string.h: Include bench-timing.h instead
23783 of including hp-timing.h directly. (INNER_LOOP_ITERS): New
23784 define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
23785 call to HP_TIMING_DIFF_INIT.
23786 * benchtests/bench-memccpy.c: Use bench-timing.h macros
23787 instead of hp-timing.h macros.
23788 * benchtests/bench-memchr.c: Likewise.
23789 * benchtests/bench-memcmp.c: Likewise.
23790 * benchtests/bench-memcpy.c: Likewise.
23791 * benchtests/bench-memmem.c: Likewise.
23792 * benchtests/bench-memmove.c: Likewise.
23793 * benchtests/bench-memset.c: Likewise.
23794 * benchtests/bench-rawmemchr.c: Likewise.
23795 * benchtests/bench-strcasecmp.c: Likewise.
23796 * benchtests/bench-strcasestr.c: Likewise.
23797 * benchtests/bench-strcat.c: Likewise.
23798 * benchtests/bench-strchr.c: Likewise.
23799 * benchtests/bench-strcmp.c: Likewise.
23800 * benchtests/bench-strcpy.c: Likewise.
23801 * benchtests/bench-strcpy_chk.c: Likewise.
23802 * benchtests/bench-strlen.c: Likewise.
23803 * benchtests/bench-strncasecmp.c: Likewise.
23804 * benchtests/bench-strncat.c: Likewise.
23805 * benchtests/bench-strncmp.c: Likewise.
23806 * benchtests/bench-strncpy.c: Likewise.
23807 * benchtests/bench-strnlen.c: Likewise.
23808 * benchtests/bench-strpbrk.c: Likewise.
23809 * benchtests/bench-strrchr.c: Likewise.
23810 * benchtests/bench-strspn.c: Likewise.
23811 * benchtests/bench-strstr.c: Likewise.
23812
cae16d66
WN
238132013-09-04 Will Newton <will.newton@linaro.org>
23814
23815 * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
23816
ffa3cd7f
JM
238172013-09-03 Joseph Myers <joseph@codesourcery.com>
23818
23819 [BZ #15427]
23820 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
23821 2**-30 instead of 2**-70 as threshold for returning -log(|x|).
23822 * math/libm-test.inc (lgamma_test_data): Add more tests.
23823 * sysdeps/i386/fpu/libm-test-ulps: Update.
23824 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23825
8f02859f
OB
238262013-09-03 Ondřej Bílka <neleai@seznam.cz>
23827
23828 * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
23829 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
23830 Add ifunc.
23831 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
23832 Add strcmp-sse2-unaligned
23833 * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
23834
18d43716
MF
238352013-09-02 Mike Frysinger <vapier@gentoo.org>
23836
23837 * Versions.def (libc): Add GLIBC_2.19.
23838
ac444012
MF
238392013-09-02 Mike Frysinger <vapier@gentoo.org>
23840
23841 * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
23842 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
23843
b7835e32
JM
238442013-09-02 Joseph Myers <joseph@codesourcery.com>
23845
23846 [BZ #14155]
23847 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
23848 intermediate calculations in recurrence.
23849 (__ieee754_ynf): Likewise.
23850 * math/libm-test.inc (jn_test_data): Do not allow spurious
23851 underflow exception. Add more tests.
23852 (yn_test_data): Add more tests.
23853 * sysdeps/i386/fpu/libm-test-ulps: Update.
23854 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23855
8220f4f0
OB
238562013-09-02 Ondřej Bílka <neleai@seznam.cz>
23857
23858 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
23859
f24a6d08
OB
238602013-08-30 Ondřej Bílka <neleai@seznam.cz>
23861
23862 * csu/init-first.c: Fix then/than typos.
23863 * locale/programs/ld-collate.c: Likewise.
23864 * locale/programs/linereader.h: Likewise.
23865 * manual/charset.texi: Likewise.
23866 * manual/filesys.texi: Likewise.
23867 * manual/stdio.texi: Likewise.
23868 * manual/string.texi: Likewise.
23869 * stdlib/fmtmsg.c: Likewise.
23870 * sysdeps/i386/stpncpy.S: Likewise.
23871 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
23872 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
23873 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
23874 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
23875
382466e0
OB
238762013-08-30 Ondřej Bílka <neleai@seznam.cz>
23877
23878 * elf/dl-open.c: Fix typos.
23879 * iconvdata/gbbig5.c: Likewise.
23880 * iconvdata/iso-2022-jp.c: Likewise.
23881 * iconv/gconv_int.h: Likewise.
23882 * iconv/loop.c: Likewise.
23883 * nis/rpcsvc/nis.h: Likewise.
23884 * resolv/ns_name.c: Likewise.
23885 * stdio-common/vfscanf.c: Likewise.
23886 * streams/stropts.h: Likewise.
23887 * sunrpc/rpc_thread.c: Likewise.
23888 * sysdeps/i386/strpbrk.S: Likewise.
23889 * sysdeps/ieee754/k_standard.c: Likewise.
23890 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
23891 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
23892 * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
23893 * sysdeps/mach/hurd/profil.c: Likewise.
23894 * sysdeps/s390/dl-procinfo.h: Likewise.
23895 * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
23896 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
23897 * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
23898 * sysdeps/x86_64/dl-trampoline.S: Likewise.
23899 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
23900
0186c6e9
OB
239012013-08-30 Ondřej Bílka <neleai@seznam.cz>
23902
23903 * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
23904 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
23905
d4e16af1
OB
239062013-08-29 Ondřej Bílka <neleai@seznam.cz>
23907
23908 * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
23909 aix specific files.
23910 * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
23911 * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
23912 * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
23913 * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
23914 * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
23915 * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
23916 * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
23917 * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
23918
88335980
TS
239192013-08-29 Thomas Schwinge <thomas@codesourcery.com>
23920 Roland McGrath <roland@hack.frob.com>
23921
23922 * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
23923 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
23924
ed479b02
ST
239252013-08-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
23926
23927 * sysdeps/mach/hurd/i386/init-first.c (init1): Use
23928 __executable_start symbol instead of _start.
23929
f1cc4c86
TS
239302013-08-29 Thomas Schwinge <thomas@codesourcery.com>
23931
d821f07c
TS
23932 * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
23933 (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
23934 Move macros to...
23935 * sysdeps/gnu/ldsodefs.h: ... this new file.
23936
c54290cf
TS
23937 * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
23938 (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
23939 instead of ELFOSABI_LINUX.
23940
0007fc9b 23941 [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
0007fc9b
TS
23942 * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
23943 * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
23944 * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
23945 Likewise.
23946 * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
23947 * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
23948 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
23949 Likewise.
23950 * sysdeps/ieee754/ldbl-128ibm/ieee754.h
23951 (ibm_extended_long_double): Add ieee_nan member.
23952 * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
23953 (do_test): New function.
23954
f1cc4c86
TS
23955 * math/basic-test.c (TEST_CONVERT): New macro, renamed from
23956 TEST_TRUNC.
23957 (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
23958 functions, renamed from truncdfsf_test, trunctfsf_test,
23959 trunctfdf_test.
23960 (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
23961 functions.
23962 (do_test): Run all these.
23963
6f65e668
OB
239642013-08-29 Ondřej Bílka <neleai@seznam.cz>
23965
23966 * argp/argp-help.c: Fix typos.
23967 * argp/argp-parse.c: Likewise.
23968 * debug/backtracesyms.c: Likewise.
23969 * elf/elf.h: Likewise.
23970 * malloc/malloc.c: Likewise.
23971 * nis/nis_print.c: Likewise.
23972 * resolv/res_comp.c: Likewise.
23973 * stdlib/stdlib.h: Likewise.
23974 * sunrpc/clnt_tcp.c: Likewise.
23975 * sunrpc/clnt_udp.c: Likewise.
23976 * sunrpc/clnt_unix.c: Likewise.
23977 * sysdeps/unix/bsd/ptsname.c: Likewise.
23978 * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
23979 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
99541e80
RM
23980 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
23981 Likewise.
23982 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
23983 Likewise.
23984 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
23985 Likewise.
6f65e668
OB
23986 * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
23987
3a309239
SP
239882013-08-28 Siddhesh Poyarekar <siddhesh@redhat.com>
23989
23990 * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
23991 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
23992
3b813b29
MF
239932013-08-27 Mike Frysinger <vapier@gentoo.org>
23994
23995 [BZ #15897]
23996 * dlfcn/Makefile (tests): Add bug-dl-leaf.
23997 (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
23998 ($(objpfx)bug-dl-leaf): New rule.
23999 ($(objpfx)bug-dl-leaf.so): Likewise.
24000 ($(objpfx)bug-dl-leaf.out): Likewise.
24001 ($(objpfx)bug-dl-leaf-lib.so): Likewise.
24002 ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
24003 * dlfcn/bug-dl-leaf.c: New test.
24004 * dlfcn/bug-dl-leaf-lib.c: Likewise.
24005 * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
24006 * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
24007 (dlclose): Likewise.
24008 (dlmopen): Likewise.
24009
8cc3269f
RM
240102013-08-27 Roland McGrath <roland@hack.frob.com>
24011
7f9d0034
RM
24012 * include/netdb.h [!_ISOMAC]:
24013 Don't include <tls.h>.
24014 (h_errno, __libc_h_errno): Move declaration and macros out of
24015 [_LIBC_REENTRANT].
24016
fb431262
RM
24017 * include/resolv.h [_RESOLV_H_]:
24018 Don't include <tls.h>.
24019 (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
24020 * resolv/res_libc.c: Don't include <tls.h>.
24021 (_res): Use __attribute__ ((nocommon)) in place of
24022 __attribute__ ((section (".bss"))).
24023
bd81123a
RM
24024 * Makefile ($(common-objpfx)linkobj/libc_pic.a):
24025 If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
24026
c4e42566
RM
24027 * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
24028
f890a59b
RM
24029 * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
24030 only under [SIOCGIFCONF && SIOCGIFNETMASK].
24031
24032 * resolv/res_mkquery.c: Include <sys/time.h>.
24033
5d1f0a09
RM
24034 * inet/ifreq.c: Moved to ...
24035 * sysdeps/unix/ifreq.c: ... here.
24036 * inet/ifreq.c: New file, true stub version.
24037
6fcf28b3
RM
24038 * socket/sa_len.c: New file.
24039 * socket/Makefile (aux): Add it.
24040 * sysdeps/unix/sysv/linux/Makefile
24041 [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
24042 * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
24043 and #include <socket/sa_len.c>.
24044 * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
24045 HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
24046
e041fb8b
RM
24047 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
24048 * bits/socket.h: ... here.
24049
8cc3269f
RM
24050 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
24051 Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
24052 (SOCK_MAX, SOCK_TYPE_MASK): New macros.
24053
5d228a43
AS
240542013-08-27 Andreas Schwab <schwab@suse.de>
24055
45b8accc
AS
24056 [BZ #15736]
24057 * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
24058 * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
24059 (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
24060 * string/test-strcasecmp.c (test_main): Run tests in several
24061 locales.
24062 * string/test-strncasecmp.c (test_main): Likewise.
24063
5d228a43
AS
24064 * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
24065 (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
24066 to __strcasecmp_nonascii and __strncasecmp_nonascii.
24067 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
24068 (__strncasecmp_ssse3) [PIC]: Likewise.
24069
59d112a4
RM
240702013-08-26 Roland McGrath <roland@hack.frob.com>
24071
53234cc3
RM
24072 * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
24073
59d112a4
RM
24074 * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
24075 instead of explicitly declaring xdecrypt.
24076 * nis/nss_nis/nis-publickey.c: Likewise.
24077
595aba70
SP
240782013-08-26 Siddhesh Poyarekar <siddhesh@redhat.com>
24079
24080 [BZ #15890]
24081 * nscd/aicache.c: Include res_hconf.h.
24082 (addhstaiX): Initialize res_hconf.
24083
ffabd393
AS
240842013-08-26 Andreas Schwab <schwab@suse.de>
24085
24086 * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
24087 ($(objpfx)tst-tls-atexit): Add dependencies here instead.
24088
e0a69f5c
SP
240892013-08-26 Siddhesh Poyarekar <siddhesh@redhat.com>
24090
24091 * nscd/aicache.c (addhstaiX): Fix indentation.
24092
8c12f01d
MF
240932013-08-25 Mike Frysinger <vapier@gentoo.org>
24094
24095 * configure.ac: Quote $build_pt_chown test.
24096 * configure: Regenerated.
24097
8fe89494
JM
240982013-08-23 Joseph Myers <joseph@codesourcery.com>
24099
24100 [BZ #15532]
24101 * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
24102 * math/s_cexpf.c (__cexpf): Likewise.
24103 * math/s_cexpl.c (__cexpl): Likewise.
24104 * math/libm-test.inc (cexp_test_data): Correct expected return
24105 value for NaN + i0. Add another test.
24106
75b181d6
DM
241072013-08-22 David S. Miller <davem@davemloft.net>
24108
24109 * po/ca.po: Update Catalan translation from translation project.
936241e4 24110 * po/uk.po: Add Ukrainian translations from translation project.
75b181d6 24111
acd06bb1
JM
241122013-08-21 Joseph Myers <joseph@codesourcery.com>
24113
24114 [BZ #15797]
24115 * math/s_fdim.c (__fdim): Check for infinite arguments if result
24116 is infinite, not alongside NaN test.
24117 * math/s_fdimf.c (__fdimf): Likewise.
24118 * math/s_fdiml.c (__fdiml): Likewise.
24119 * math/libm-test.inc (fdim_test_data): Add more tests. Test that
24120 errno is unchanged.
24121
c0c3f78a
OB
241222013-08-21 Ondřej Bílka <neleai@seznam.cz>
24123
24124 * argp/argp-help.c: Fix typos.
24125 * crypt/speeds.c: Likewise.
24126 * csu/check_fds.c: Likewise.
24127 * elf/dl-load.c: Likewise.
24128 * elf/dl-open.c: Likewise.
24129 * elf/reldep3.c: Likewise.
24130 * elf/reldep.c: Likewise.
24131 * elf/sprof.c: Likewise.
24132 * iconv/iconv_charmap.c: Likewise.
24133 * iconv/skeleton.c: Likewise.
24134 * iconv/strtab.c: Likewise.
24135 * io/lockf64.c: Likewise.
24136 * libio/libioP.h: Likewise.
24137 * resolv/gai_notify.c: Likewise.
24138 * resolv/ns_name.c: Likewise.
24139 * resolv/ns_samedomain.c: Likewise.
24140 * resolv/res_send.c: Likewise.
24141 * stdlib/random.c: Likewise.
24142 * sunrpc/rpc/xdr.h: Likewise.
24143 * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
24144 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
24145 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
24146 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
24147 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
24148 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
24149 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
24150 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
24151 * sysdeps/mach/hurd/check_fds.c: Likewise.
24152 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
24153 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
24154 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
24155 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
24156 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
24157 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
24158 * sysdeps/pthread/aio_notify.c: Likewise.
24159 * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
24160 * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
24161 * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
24162 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
24163 * sysdeps/x86/fpu/bits/fenv.h: Likewise.
24164
46ed1038
LD
241652013-08-21 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
24166
24167 * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
24168 version if bit_Slow_SSE4_2 is set.
24169 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
24170 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
24171
d400dcac
AZ
241722013-07-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24173
24174 [BZ #15867]
24175 * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
24176 trampoline stack frame information.
24177 * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
24178 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
24179 (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
24180 (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
24181 (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
24182 * sysdeps/unix/sysv/linux/powerpc/init-first.c
24183 (_libc_vdso_platform_setup): Initialize the signal trampolines.
24184 * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
24185 sa_flags value.
24186 * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
24187 interrupting a syscall and set with option SA_SIGINFO.
24188
42c8fdd8
JM
241892013-08-20 Joseph Myers <joseph@codesourcery.com>
24190
c980f2f4
JM
24191 [BZ #15531]
24192 * math/s_cproj.c (__cproj): Only return an infinity if one part of
24193 argument is infinite.
24194 * math/s_cprojf.c (__cprojf): Likewise.
24195 * math/s_cprojl.c (__cprojl): Likewise.
24196 * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
24197 * math/libm-test.inc (cproj_test_data): Add more tests.
24198
0716c4fc
JM
24199 * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
24200
42c8fdd8
JM
24201 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
24202 [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
24203 size. Use __ffs to determine corresponding shift.
24204
b31469d0
JM
242052013-08-20 Joseph Myers <joseph@codesourcery.com>
24206 Roland McGrath <roland@hack.frob.com>
24207
24208 * Makefile (INSTALL): Remove trailing blank lines from output of
24209 makeinfo.
24210
4e39af6e
AK
242112013-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
24212
24213 * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
24214 Align 32 bit compat elf_greg to 8 bytes.
24215
f315524e
AA
242162013-08-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
24217
24218 * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
24219
1326ba1a
SP
242202013-08-20 Siddhesh Poyarekar <siddhesh@redhat.com>
24221
24222 * string/strcoll_l.c (coll_seq): New structure.
24223 (get_next_seq_cached): New function.
24224 (get_next_seq): New function.
24225 (do_compare): New function.
24226 (STRCOLL): Use GNU style definition. Simplify implementation
24227 by using get_next_seq, get_next_seq_cached and do_compare.
24228
91ce4085
FW
242292013-08-16 Florian Weimer <fweimer@redhat.com>
24230
24231 [BZ #14699]
24232 CVE-2013-4237
24233 * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
24234 member.
24235 * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
24236 member.
24237 * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
24238 * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
24239 Return delayed error code. Remove GETDENTS_64BIT_ALIGNED
24240 conditional.
24241 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
24242 GETDENTS_64BIT_ALIGNED.
24243 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
24244 * manual/filesys.texi (Reading/Closing Directory): Document
24245 ENAMETOOLONG return value of readdir_r. Recommend readdir more
24246 strongly.
24247 * manual/conf.texi (Limits for Files): Add portability note to
24248 NAME_MAX, PATH_MAX.
24249 (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
24250
ca0a6bc4
AS
242512013-08-13 Andreas Schwab <schwab@suse.de>
24252
24253 [BZ #15749]
24254 * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
24255 of fabs.
24256 * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
24257 LDBL_MAX_EXP >= 16384]: Add tests for it.
24258
6c1fd795
DM
242592013-08-12 David S. Miller <davem@davemloft.net>
24260
24261 * version.h (RELEASE): Set to "development".
24262 (VERSION): Set to "2.18.90".
24263 * NEWS: Add 2.19 section.
24264
31ad488d
DM
242652013-08-03 David S. Miller <davem@davemloft.net>
24266
24267 * po/ko.po: Update Korean translation from translation project.
24268
db24e684
DM
242692013-08-01 David S. Miller <davem@davemloft.net>
24270
24271 * manual/contrib.texi: Update entry for Siddhesh Poyarekar. Add
24272 entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
24273 Bilka.
24274
f723285b
DM
242752013-07-30 David S. Miller <davem@davemloft.net>
24276
24277 * po/fr.po: Update French translation from translation project.
24278
3cbc52db
DM
242792013-07-28 David S. Miller <davem@davemloft.net>
24280
30bbc0cc
DM
24281 * po/cs.po: Update Czech translation from translation project.
24282
3cbc52db
DM
24283 * po/sv.po: Update Swedish translation from translation project.
24284
d492e6d0
DM
242852013-07-27 David S. Miller <davem@davemloft.net>
24286
f1a7f492
DM
24287 * po/eo.po: Update Esperanto translation from translation project.
24288
90e62a4a
DM
24289 * po/vi.po: Update Vietnamese translation from translation project.
24290
d492e6d0
DM
24291 * po/de.po: Update German translation from translation project.
24292
d4baa62d
DM
242932013-07-26 David S. Miller <davem@davemloft.net>
24294
641aa7b4
DM
24295 * po/bg.po: Update Bulgarian translation from translation project.
24296
d4baa62d
DM
24297 * po/nl.po: Update Dutch translation from translation project.
24298 * po/pl.po: Update Polish translation from translation project.
24299 * po/ru.po: Update Russian translation from translation project.
24300
61a9dcb9
DM
243012013-07-24 David S. Miller <davem@davemloft.net>
24302
24303 * po/libc.pot: Update.
24304
7b1f8b58
AZ
243052013-07-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24306
24307 * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
24308 variable page size.
24309 * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
24310 * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
24311 * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
24312
a8fc7a03
AK
243132013-07-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
24314
24315 * sysdeps/s390/fpu/libm-test-ulps: Refresh.
24316
e4608715
CD
243172013-07-21 Siddhesh Poyarekar <siddhesh@redhat.com>
24318 Andreas Schwab <schwab@suse.de>
24319 Roland McGrath <roland@hack.frob.com>
24320 Joseph Myers <joseph@codesourcery.com>
24321 Carlos O'Donell <carlos@redhat.com>
24322
24323 [BZ #15755]
24324 * config.h.in: Define HAVE_PT_CHOWN.
24325 * config.make.in (build-pt-chown): New variable.
24326 * configure.in (--enable-pt_chown): New configure option.
24327 * configure: Regenerate.
24328 * login/Makefile: Include Makeconfig. Build pt_chown only if
24329 build-pt-chown is enabled.
24330 * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
24331 pt_chown to fix pty ownership.
24332 * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
24333 CLOSE_ALL_FDS.
24334 * manual/install.texi (Configuring and compiling): Mention
24335 --enable-pt_chown. Add @findex for grantpt.
24336 * INSTALL: Regenerate.
24337
da2d62df
DM
243382013-07-20 David S. Miller <davem@davemloft.net>
24339
24340 * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
24341 difference between 32-bit and 64-bit.
24342
d7e06450
CD
243432013-07-15 Carlos O'Donell <carlos@redhat.com>
24344
24345 [BZ #15711]
24346 * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
24347 Avoid system header dependency with -ffreestanding.
24348 ($(objpfx)bits/syscall%d): Likewise.
24349
f959cfd7
DM
243502013-07-13 David S. Miller <davem@davemloft.net>
24351
24352 * math/libm-test.inc (casin_test_data): Annotate more cases of missing
24353 underflows from atanl/atan2l due to bug 15319.
24354 (casinh_test_data): Likewise.
24355
c61f8513
DM
243562013-07-07 David S. Miller <davem@davemloft.net>
24357
24358 * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
24359
72c90ed0
JA
243602013-07-05 Jeroen Albers <_jeroen_@yahoo.com>
24361
24362 * sysdeps/i386/fpu/libm-test-ulps: Update.
24363 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24364
52dfbe13
SP
243652013-07-04 Siddhesh Poyarekar <siddhesh@redhat.com>
24366
24367 * configure.in (--enable-lock-elision): Fix message text.
24368 * INSTALL: Regenerate.
24369 * configure: Regenerate.
24370
3f169543
AZ
243712013-07-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24372
24373 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
24374
521c6785
AJ
243752013-07-03 Andreas Jaeger <aj@suse.de>
24376
24377 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
24378 define.
24379 (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
24380 (ptrace_peeksiginfo_args): Add.
24381 (__ptrace_peeksiginfo_flags): Add.
24382 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
24383 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
24384 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
24385
d2cc15cb
AM
243862013-07-03 Allan McRae <allan@archlinux.org>
24387
24388 * sysdeps/i386/fpu/libm-test-ulps: Update.
24389
3aaeeca7
DM
243902013-07-02 David S. Miller <davem@davemloft.net>
24391
24392 * sysdeps/sparc/fpu/libm-test-ulps: Update.
24393
5314ed1a
MT
243942013-07-02 Markus Trippelsdorf <markus@trippelsdorf.de>
24395
24396 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
24397
67338156
JM
243982013-07-02 Joseph Myers <joseph@codesourcery.com>
24399
24400 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
24401 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24402
1717da59
AK
244032013-07-02 Andi Kleen <ak@linux.intel.com>
24404
24405 * config.h.in (ENABLE_LOCK_ELISION): Add.
24406 * configure.in (--enable-lock-elision): Add option.
24407 * manual/install.texi: Document --enable lock elision.
24408 * configure: Regenerate
24409 * INSTALL: Regenerate.
24410
1c81621c
L
244112013-07-02 H.J. Lu <hongjiu.lu@intel.com>
24412
24413 * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
24414 SSE4.2 strcasecmp for libc.a.
24415 * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
24416
77f01ab5
JM
244172013-07-02 Joseph Myers <joseph@codesourcery.com>
24418
24419 [BZ #13304]
24420 * soft-fp/op-common.h (_FP_FMA): New macro.
24421 * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
24422 (_FP_MUL_MEAT_DW_1_imm): Likewise. Split out of ...
24423 (_FP_MUL_MEAT_1_imm): ... here.
24424 (_FP_MUL_MEAT_DW_1_wide): New macro. Split out of ...
24425 (_FP_MUL_MEAT_1_wide): ... here.
24426 (_FP_MUL_MEAT_DW_1_hard): Likewise. Split out of ...
24427 (_FP_MUL_MEAT_1_hard): ... here.
24428 * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
24429 (_FP_MUL_MEAT_DW_2_wide): Likewise. Split out of ...
24430 (_FP_MUL_MEAT_2_wide): ... here.
24431 (_FP_MUL_MEAT_DW_2_wide_3mul): New macro. Split out of ...
24432 (_FP_MUL_MEAT_2_wide_3mul): ... here.
24433 (_FP_MUL_MEAT_DW_2_gmp): New macro. Split out of ...
24434 (_FP_MUL_MEAT_2_gmp): ... here.
24435 * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
24436 (_FP_MUL_MEAT_DW_4_wide): Likewise. Split out of ...
24437 (_FP_MUL_MEAT_4_wide): ... here.
24438 (_FP_MUL_MEAT_DW_4_gmp): New macro. Split out of ...
24439 (_FP_MUL_MEAT_4_gmp): ... here.
24440 * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
24441 (_FP_WFRACBITS_DW_S): Likewise.
24442 (_FP_WFRACXBITS_DW_S): Likewise.
24443 (_FP_HIGHBIT_DW_S): Likewise.
24444 (FP_FMA_S): Likewise.
24445 (_FP_FRAC_HIGH_DW_S): Likewise.
24446 * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
24447 (_FP_WFRACBITS_DW_D): Likewise.
24448 (_FP_WFRACXBITS_DW_D): Likewise.
24449 (_FP_HIGHBIT_DW_D): Likewise.
24450 (FP_FMA_D): Likewise.
24451 (_FP_FRAC_HIGH_DW_D): Likewise.
24452 * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
24453 (_FP_WFRACBITS_DW_E): Likewise.
24454 (_FP_WFRACXBITS_DW_E): Likewise.
24455 (_FP_HIGHBIT_DW_E): Likewise.
24456 (FP_FMA_E): Likewise.
24457 (_FP_FRAC_HIGH_DW_E): Likewise.
24458 * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
24459 (_FP_WFRACBITS_DW_Q): Likewise.
24460 (_FP_WFRACXBITS_DW_Q): Likewise.
24461 (_FP_HIGHBIT_DW_Q): Likewise.
24462 (FP_FMA_Q): Likewise.
24463 (_FP_FRAC_HIGH_DW_Q): Likewise.
24464 * soft-fp/fmasf4.c: New file.
24465 * soft-fp/fmadf4.c: Likewise.
24466 * soft-fp/fmatf4.c: Likewise.
24467
6308fd9a
LD
244682013-06-28 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
24469
24470 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
24471 bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
24472 Silvermont.
24473 * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
24474 macro.
24475 (index_Slow_SSE4_2): Likewise.
24476 (index_Prefer_PMINUB_for_stringop): Likewise.
24477 * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
24478 bit_Slow_SSE4_2 is set.
24479 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
24480 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
24481
89cd9569
RA
244822013-06-28 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
24483
24484 * sysdeps/powerpc/Makefile: Add comment about generating an offset to
24485 rtld_global._dl_hwcap2.
24486 * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
24487 POWER8.
24488 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
24489 POWER8 feature descriptions defined in _dl_hwcap2.
24490 * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
24491 string handling for POWER8 feature bits.
24492 (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
24493 (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
24494 _dl_powerpc_cap_flags.
24495 (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
24496 * sysdeps/powerpc/rtld-global-offsets.sym
24497 (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
24498 _dl_hwcap2 in the rtld_global_ro structure.
24499
1ae8bfe0
RA
245002013-06-28 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
24501
24502 * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
24503 hardware capabilities in support of AT_HWCAP2.
24504 (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
24505 * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
24506 GLRO(dl_hwcap2).
24507 (_dl_show_auxv): Add support for calling _dl_procinfo to display
24508 AT_HWCAP2. If a platform doesn't chose to handle displaying AT_HWCAP2
24509 explicitly the unknown a_type display mechanism is used.
24510 * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
24511 * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
24512 struct member.
24513 * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
24514 to macro prototype for AT_HWCAP2 support.
24515 * sysdeps/i386/dl-procinfo.h: Likewise.
24516 * sysdeps/s390/dl-procinfo.h: Likewise.
24517 * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
24518 macro prototype for AT_HWCAP2 support. Make WORD unsigned long int
24519 rather than signed int. Stub in handler for TYPE == AT_HWCAP2 to
24520 return -1 for unknown a_type display fallback.
24521 * sysdeps/sparc/dl-procinfo.h: Likewise.
24522 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
24523 * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
24524
8fbec010
JM
245252013-06-28 Joseph Myers <joseph@codesourcery.com>
24526
24527 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
24528 instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
24529
0432680e
PY
245302013-06-28 Pierre Ynard <linkfanel@yahoo.fr>
24531
24532 [BZ #12492]
24533 * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
24534 mprotect making __stack_prot writable.
24535
ce61a2ad
NF
245362013-06-28 Nathan Froyd <froydnj@codesourcery.com>
24537 Joseph Myers <joseph@codesourcery.com>
24538
24539 * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
24540 as being properly aligned.
24541
f91f1c0f
MR
245422013-06-28 Maciej W. Rozycki <macro@codesourcery.com>
24543
3d0f5d0c
MR
24544 * dlfcn/modstatic5.c: New file.
24545 * dlfcn/tststatic5.c: New file.
24546 * dlfcn/Makefile (tests): Add tststatic5.
24547 (tests-static): Likewise.
24548 (modules-names): Add modstatic5.
24549 (tststatic5-ENV): New variable.
24550 ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
24551
f91f1c0f
MR
24552 [BZ #15022]
24553 * elf/dl-support.c (_dl_main_map): New variable.
24554 (_dl_ns): Use it to initialize [LM_ID_BASE] element.
24555 (_dl_nns, _dl_load_adds): Set to 1.
24556 (_dl_initial_searchlist): Refer to _dl_main_map.
24557 (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
24558 * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
24559 call to _dl_get_origin.
24560 * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
24561 around call_map.
24562 (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
24563 * dlfcn/modstatic3.c: New file.
24564 * dlfcn/tststatic3.c: New file.
24565 * dlfcn/tststatic4.c: New file.
24566 * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
24567 (tests-static): Likewise.
24568 (modules-names): Add modstatic3.
24569 (tststatic3-ENV, tststatic4-ENV): New variables.
24570 ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
24571 ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
24572
cbe7d24b
JM
245732013-06-26 Joseph Myers <joseph@codesourcery.com>
24574
24575 * configure.in (CC): Require GCC version 4.4 or later.
24576 * configure: Regenerated.
24577 * manual/install.texi (Tools for Compilation): Update GCC version
24578 requirement.
24579 * INSTALL: Regenerated.
24580
11b8a0e1
LD
245812013-06-26 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
24582
24583 [BZ #15674]
bb5bb87c
L
24584 * string/test-memcmp.c (check2): New.
24585 (main): Call check2.
24586
11b8a0e1
LD
24587 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
24588
b0037103
MR
245892013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
24590
24591 [BZ #15022]
24592 * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
24593 over to...
24594 (dl_open_worker) [!SHARED]: ... here.
24595
c18c701d
RA
245962013-06-26 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
24597
24598 * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
24599
1d17fa5f
RH
246002013-06-25 Richard Henderson <rth@redhat.com>
24601
24602 * locale/programs/locarchive.c: Include <libc-internal.h>
24603
8fcb833a
JM
246042013-06-25 Joseph Myers <joseph@codesourcery.com>
24605
24606 * manual/texinfo.tex: Update to version 2013-06-21.17, with
24607 trailing whitespace removed.
24608
17db6e8d
MF
246092013-06-24 Mike Frysinger <vapier@gentoo.org>
24610
24611 [BZ #10283]
17db6e8d
MF
24612 * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
24613 * locale/programs/locarchive.c: Include libc-mmap.h.
24614 (prepare_address_space): Take two new outputs (the mmap base and len).
24615 Align p to MAP_FIXED_ALIGNMENT. Set mmap base and len to the right
24616 values.
24617 (create_archive): Declare new mmap base and len values for
24618 prepare_address_space, and store the result in ah.
24619 (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
24620 (enlarge_archive): If ah->mmap_base is not NULL, use that and
24621 ah->mmap_len to unmap rather than ah->addr and ah->reserved.
24622 Declare new mmap base and len values for
24623 prepare_address_space, and store the result in new_ah.
24624 (open_archive): Declare new mmap base and len values for
24625 prepare_address_space, and store the result in ah.
24626 (close_archive): If ah->mmap_base is not NULL, use that and
24627 ah->mmap_len to unmap rather than ah->addr and ah->reserved.
24628 * sysdeps/generic/libc-mmap.h: New file.
24629
d605071e
MF
246302013-06-24 Mike Frysinger <vapier@gentoo.org>
24631
24632 * include/libc-internal.h (ALIGN_DOWN): New helper macro.
24633 (ALIGN_UP): Likewise.
24634 (PTR_ALIGN_DOWN): Likewise.
24635 (PTR_ALIGN_UP): Likewise.
24636
2f063a6e
RA
246372013-06-24 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
24638
24639 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
24640 entry mapped to PPC_PLATFORM_POWER8.
24641 * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
24642 POWER8.
24643 (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
24644 (_dl_string_platform): Add case for exporting platform position for
24645 POWER8.
24646 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
24647 search path to sysdeps/powerpc/powerpc32/power8 directory.
24648 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
24649 search path to sysdeps/powerpc/powerpc64/power8 directory.
24650 * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
24651 power7 directories.
24652 * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
24653 power7 directories.
24654
a31ee4b3
SP
246552013-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
24656
a74ca98f
SP
24657 * INSTALL: Regenerate.
24658
a31ee4b3
SP
24659 * nscd/connections.c (nscd_init): Fix comment.
24660
695c378f
JM
246612013-06-22 Joseph Myers <joseph@codesourcery.com>
24662
d8412221
JM
24663 * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
24664
695c378f
JM
24665 [BZ #15667]
24666 * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
24667 to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
24668
d1d54715
MR
246692013-06-21 Maciej W. Rozycki <macro@codesourcery.com>
24670
24671 * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
24672 DL_DST_REQ_STATIC.
24673 (DL_DST_REQ_STATIC): Remove macro.
24674
8fdda7af
JM
246752013-06-21 Joseph Myers <joseph@codesourcery.com>
24676
24677 [BZ #7006]
24678 * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
24679 with a shift of 0 bits.
24680
f3bc5e5a
MR
246812013-06-21 Maciej W. Rozycki <macro@codesourcery.com>
24682
24683 * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
24684 $(tststatic-ENV).
24685
be09e8c9
KK
246862013-06-21 Kaz Kojima <kkojima@rr.iij4u.or.jp>
24687
24688 [BZ #15655]
24689 * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
24690
85c2e611
AZ
246912013-06-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24692
24693 * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
24694 * configure.in (libc_cv_cc_loop_to_function): Check if compiler
24695 accepts -fno-tree-loop-distribute-patterns.
24696 * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
24697 * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
24698 recursive call.
24699 * string/memset.c (memset): Likewise.
24700 * string/test-memmove.c (simple_memmove): Disable loop transformation
24701 to library calls.
24702 * string/test-memset.c (simple_memset): Likewise.
24703 * benchtests/bench-memmove.c (simple_memmove): Likewise.
24704 * benchtests/bench-memset.c (simple_memset): Likewise.
24705 * configure: Regenerated.
24706
c91e0825
JM
247072013-06-20 Joseph Myers <joseph@codesourcery.com>
24708
b8c792af
JM
24709 * math/test-misc.c (main): Ignore fesetround failure when failures
24710 of subsequent rounding tests would be ignored.
24711
c91e0825
JM
24712 [BZ #15654]
24713 * math/fedisblxcpt.c (fedisableexcept): Return 0.
24714 * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
24715 * math/fegetenv.c (__fegetenv): Return 0.
24716 * math/fegetexcept.c (fegetexcept): Return 0.
24717 * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
24718 FE_TONEAREST.
24719 * math/feholdexcpt.c (feholdexcept): Return 0.
24720 * math/fesetenv.c (__fesetenv): Return 0.
24721 * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
24722 argument FE_TONEAREST.
24723 * math/feupdateenv.c (__feupdateenv): Return 0.
24724 * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
24725
bfcacbde
RM
247262013-06-18 Roland McGrath <roland@hack.frob.com>
24727
24728 * elf/rtld-Rules (rtld-compile-command.S): New variable.
24729 (rtld-compile-command.s, rtld-compile-command.c): New variables.
24730 ($(objpfx)rtld-%.os rules): Use them.
24731
e55a9b25
AZ
247322013-06-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24733
24734 * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
24735 fields.
24736
346d65b3
RM
247372013-06-17 Roland McGrath <roland@hack.frob.com>
24738
12086fb4
RM
24739 * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
24740 length of target pattern, then descending length of dependency pattern.
24741 * configure.in (AWK): Require gawk 3.1.2 or newer.
24742 * manual/install.texi (Tools for Compilation): Say that we do.
24743 * configure: Regenerated.
24744
346d65b3
RM
24745 * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
24746 ($(common-objpfx)sysd-rules): Replace shell logic with running ...
24747 * scripts/sysd-rules.awk: ... this new script.
24748 * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
24749 than a glob-style pattern.
24750
1a846317
JM
247512013-06-17 Joseph Myers <joseph@codesourcery.com>
24752
24753 * math/test-misc.c (main): Do not treat incorrectly rounded
24754 conversions as failure unless ROUNDING_TESTS passes.
24755
8fc75e6f
JM
247562013-06-15 Joseph Myers <joseph@codesourcery.com>
24757
3711a167
JM
24758 [BZ #15631]
24759 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
24760 restore exception state around main square root computation, then
24761 check for inexactness explicitly.
24762
8fc75e6f
JM
24763 * math/libm-test.inc (fma_test_data): Add another test.
24764
61dd6208
SP
247652013-06-15 Siddhesh Poyarekar <siddhesh@redhat.com>
24766
adf23d2c
SP
24767 * manual/threads.texi (Non-POSIX Extensions): New document
24768 node. Document pthread_getattr_default_np and
24769 pthread_setattr_default_np.
24770
61dd6208
SP
24771 * Versions.def (libpthread): Add GLIBC_2.18.
24772 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
24773 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
24774 Likewise.
24775 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
24776 Likewise.
24777 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
24778 Likewise.
24779 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
24780 Likewise.
24781 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
24782 Likewise.
24783 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
24784 Likewise.
24785 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
24786 Likewise.
24787 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
24788 Likewise.
24789 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
24790 Likewise.
24791
d086fc7b
LD
247922013-06-14 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
24793
24794 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
24795 Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
24796
747ef469
SP
247972013-06-14 Siddhesh Poyarekar <siddhesh@redhat.com>
24798 H.J. Lu <hjl.tools@gmail.com>
24799
24800 [BZ #15627]
24801 * sysdeps/x86_64/rtld-memset.c: Remove file.
24802 * sysdeps/x86_64/rtld-memset.S: New file.
24803
1b2feed2
JM
248042013-06-14 Joseph Myers <joseph@codesourcery.com>
24805
24806 * stdlib/tst-strtod-round.c: Include <math-tests.h>.
24807 (test_in_one_mode): Take arguments for whether the rounding mode
24808 is supported for each floating-point type.
24809 (do_test): Pass new arguments to test_in_one_mode using
24810 ROUNDING_TESTS.
24811
a58ad3f8
RM
248122013-06-13 Roland McGrath <roland@hack.frob.com>
24813
24814 * posix/tst-waitid.c (do_test): Distinguish different instances of
24815 stopped/continued in CHECK_SIGCHLD uses. Insert a delay between
24816 sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
24817 before entering the kernel for waitpid.
24818
c204ab28
SP
248192013-06-13 Siddhesh Poyarekar <siddhesh@redhat.com>
24820
24821 * NEWS: Fix note on clock function precision. Text by Roland
24822 McGrath.
24823
f4a29fba
RM
248242013-06-13 Roland McGrath <roland@hack.frob.com>
24825
24826 * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
24827 it into place only when and if the sanity check passes.
24828
1f24b9ad
JM
248292013-06-13 Joseph Myers <joseph@codesourcery.com>
24830
24831 * stdlib/gen-tst-strtod-round.c (round_str): Always generate
24832 output for whether conversion result is exact. Take argument
24833 indicating whether type is IBM long double.
24834 (round_for_all): Change need_exact field to ibm_ld.
24835 * stdlib/tst-strtod-round.c (struct exactness): New type.
24836 (struct test): Change bool ld_ok field to struct exactness exact.
24837 (TEST): Update all definitions for change to field.
24838 (tests): Regenerate array contents.
24839 (test_in_one_mode): Take pointer to new field instead of old ld_ok
24840 field value. Check for IBM long double here.
24841 (do_test): Update calls to test_in_one_mode.
24842
58206c68
SP
248432013-06-13 Siddhesh Poyarekar <siddhesh@redhat.com>
24844
24845 [BZ #12515]
24846 * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
24847 CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
24848
2d6f4c5b 248492013-06-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6a97b62a
AZ
24850
24851 [BZ #15605]
24852 * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
24853 generated by the compiler on loop optimizations.
24854 * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
24855 general definitions.
24856
94f2c076
JM
248572013-06-12 Joseph Myers <joseph@codesourcery.com>
24858
24859 * math/bug-nextafter.c: Include <math-tests.h>.
24860 (main): Only test for exceptions if EXCEPTION_TESTS is true for
24861 the relevant type.
24862 * math/bug-nexttoward.c: Include <math-tests.h>.
24863 (main): Only test for exceptions if EXCEPTION_TESTS is true for
24864 the relevant type.
24865 * math/test-misc.c: Include <math-tests.h>.
24866 (main): Only test for exceptions if EXCEPTION_TESTS is true for
24867 the relevant type.
24868
e0e50a0a
AJ
248692013-06-12 Andreas Jaeger <aj@suse.de>
24870
24871 * po/ia.po: Update Interlingua translation from translation
24872 project.
24873
25061094
SP
248742013-06-12 Siddhesh Poyarekar <siddhesh@redhat.com>
24875
24876 * include/fenv.h: Include stdbool.h.
24877 (struct rm_ctx): New structure.
24878 * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
24879 Define macro.
24880 (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
24881 (SET_RESTORE_ROUNDF): Likewise.
24882 (SET_RESTORE_ROUNDL): Likewise.
24883 (SET_RESTORE_ROUND_NOEX): Likewise.
24884 (SET_RESTORE_ROUND_NOEXF): Likewise.
24885 (SET_RESTORE_ROUND_NOEXL): Likewise.
24886 (SET_RESTORE_ROUND_53BIT): Likewise.
24887 [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
24888 (libc_feresetround_noexf_ctx): Likewise.
24889 (libc_feresetround_noexl_ctx): Likewise.
24890 (libc_feholdsetround_53bit_ctx): Likewise.
24891 (libc_feresetround_53bit_ctx): Likewise.
24892 * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
24893 (libc_feholdexcept_setround_sse_ctx): New function.
24894 (libc_fesetenv_sse_ctx): Likewise.
24895 (libc_feupdateenv_sse_ctx): Likewise.
24896 (libc_feholdexcept_setround_387_prec_ctx): Likewise.
24897 (libc_feholdexcept_setround_387_ctx): Likewise.
24898 (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
24899 (libc_feholdsetround_387_prec_ctx): Likewise.
24900 (libc_feholdsetround_387_ctx): Likewise.
24901 (libc_feholdsetround_387_53bit_ctx): Likewise.
24902 (libc_feholdsetround_sse_ctx): Likewise.
24903 (libc_feresetround_sse_ctx): Likewise.
24904 (libc_feresetround_387_ctx): Likewise.
24905 (libc_feupdateenv_387_ctx): Likewise.
24906 (libc_feholdexcept_setroundf_ctx): Define macro.
24907 (libc_fesetenvf_ctx): Likewise.
24908 (libc_feupdateenvf_ctx): Likewise.
24909 (libc_feholdsetroundf_ctx): Likewise.
24910 (libc_feresetroundf_ctx): Likewise.
24911 (libc_feholdexcept_setround_ctx): Likewise.
24912 (libc_fesetenv_ctx): Likewise.
24913 (libc_feupdateenv_ctx): Likewise.
24914 (libc_feholdsetround_ctx): Likewise.
24915 (libc_feresetround_ctx): Likewise.
24916 (libc_feholdexcept_setroundl_ctx): Likewise.
24917 (libc_feupdateenvl_ctx): Likewise.
24918 (libc_feholdsetroundl_ctx): Likewise.
24919 (libc_feresetroundl_ctx): Likewise.
24920 [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
24921 (libc_feresetround_53bit_ctx): Likewise.
24922
59b30555
SP
249232013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
24924
24925 * locale/iso-639.def: Convert to UTF-8.
24926
f1d73d30
JM
249272013-06-11 Joseph Myers <joseph@codesourcery.com>
24928
24929 * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
24930 (EXCEPTION_TESTS_double): Likewise.
24931 (EXCEPTION_TESTS_long_double): Likewise.
24932 (EXCEPTION_TESTS): Likewise.
24933 * math/libm-test.inc (test_exceptions): Only test exceptions if
24934 EXCEPTION_TESTS (FLOAT).
24935
94aca5e7
SP
249362013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
24937
24938 * benchtests/Makefile (string-bench): Add strcpy_chk and
24939 stpcpy_chk.
24940 * benchtests/bench-stpcpy_chk-ifunc.c: New file.
24941 * benchtests/bench-stpcpy_chk.c: New file.
24942 * benchtests/bench-strcpy_chk-ifunc.c: New file.
24943 * benchtests/bench-strcpy_chk.c: New file.
24944 * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
24945 code.
24946 (do_test): Likewise.
24947
fac0c5f2
RA
249482013-06-11 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
24949
24950 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
24951 ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
24952 * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
24953 with tabs where appropriate.
24954 [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
24955 dl-procinfo.h.
24956 [PPC_PLATFORM_PPC440]: Likewise.
24957 [PPC_PLATFORM_PPC464]: Likewise.
24958 [PPC_PLATFORM_PPC476]: Likewise.
24959 (_dl_string_platform): Add support for detecting ppc405, ppc440,
24960 ppc464, and ppc476 platform strings merging from ports/
24961 dl-procinfo.h.
24962
f22bc486
AS
249632013-06-11 Andreas Schwab <schwab@suse.de>
24964
24965 [BZ #14991]
24966 * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
24967 (from_ucs4_idx): Regenerate.
24968 (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
24969 (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
24970 (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
24971 (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
24972 (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
24973 (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
24974 (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
24975 (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
24976 from FROM_LOOP and TO_LOOP specific macros.
24977 (BODY): Handle combining characters.
24978 * iconvdata/BIG5HKSCS.irreversible: Update.
24979 * iconvdata/BIG5HKSCS.precomposed: New file.
24980 * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
24981 characters.
24982 * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
24983
c1f75dc3
SP
249842013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
24985
4eacded2
SP
24986 * include/sys/time.h: Fix indentation and add copyright header.
24987
fec799f8
SP
24988 * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
24989 (do_test): Likewise.
24990 * string/test-memchr.c (do_one_test): Likewise.
24991 (do_test): Likewise.
24992 * string/test-memcmp.c (do_one_test): Likewise.
24993 (do_test): Likewise.
24994 * string/test-memcpy.c (do_one_test): Likewise.
24995 (do_test): Likewise.
24996 * string/test-memmem.c (do_one_test): Likewise.
24997 (do_test): Likewise.
24998 (do_random_tests): Likewise.
24999 * string/test-memmove.c (do_one_test): Likewise.
25000 (do_test): Likewise.
25001 * string/test-memset.c (do_one_test): Likewise.
25002 (do_test): Likewise.
25003 * string/test-rawmemchr.c (do_one_test): Likewise.
25004 (do_test): Likewise.
25005 * string/test-strcasecmp.c (do_one_test): Likewise.
25006 (do_test): Likewise.
25007 * string/test-strcasestr.c (do_one_test): Likewise.
25008 (do_test): Likewise.
25009 * string/test-strcat.c (do_one_test): Likewise.
25010 (do_test): Likewise.
25011 * string/test-strchr.c (do_one_test): Likewise.
25012 (do_test): Likewise.
25013 * string/test-strcmp.c (do_one_test): Likewise.
25014 (do_test): Likewise.
25015 * string/test-strcpy.c (do_one_test): Likewise.
25016 (do_test): Likewise.
25017 * string/test-string.h: Likewise.
25018 (test_init): Likewise.
25019 * string/test-strlen.c (do_one_test): Likewise.
25020 (do_test): Likewise.
25021 * string/test-strncasecmp.c (do_one_test): Likewise.
25022 (do_test): Likewise.
25023 * string/test-strncat.c (do_one_test): Likewise.
25024 (do_test): Likewise.
25025 * string/test-strncmp.c (do_one_test): Likewise.
25026 (do_test_limit): Likewise.
25027 (do_test): Likewise.
25028 * string/test-strncpy.c (do_one_test): Likewise.
25029 (do_test): Likewise.
25030 * string/test-strnlen.c (do_one_test): Likewise.
25031 (do_test): Likewise.
25032 * string/test-strpbrk.c (do_one_test): Likewise.
25033 (do_test): Likewise.
25034 * string/test-strrchr.c (do_one_test): Likewise.
25035 (do_test): Likewise.
25036 * string/test-strspn.c (do_one_test): Likewise.
25037 (do_test): Likewise.
25038 * string/test-strstr.c (do_one_test): Likewise.
25039 (do_test): Likewise.
25040
97020474
SP
25041 * benchtests/Makefile (string-bench): Add string benchmarks.
25042 * benchtests/bench-bcopy-ifunc.c: New file.
25043 * benchtests/bench-bcopy.c: New file.
25044 * benchtests/bench-bzero-ifunc.c: New file.
25045 * benchtests/bench-bzero.c: New file.
25046 * benchtests/bench-memccpy-ifunc.c: New file.
25047 * benchtests/bench-memccpy.c: New file.
25048 * benchtests/bench-memchr-ifunc.c: New file.
25049 * benchtests/bench-memchr.c: New file.
25050 * benchtests/bench-memcmp-ifunc.c: New file.
25051 * benchtests/bench-memcmp.c: New file.
25052 * benchtests/bench-memmem-ifunc.c: New file.
25053 * benchtests/bench-memmem.c: New file.
25054 * benchtests/bench-memmove-ifunc.c: New file.
25055 * benchtests/bench-memmove.c: New file.
25056 * benchtests/bench-mempcpy-ifunc.c: New file.
25057 * benchtests/bench-mempcpy.c: New file.
25058 * benchtests/bench-memset-ifunc.c: New file.
25059 * benchtests/bench-memset.c: New file.
25060 * benchtests/bench-rawmemchr-ifunc.c: New file.
25061 * benchtests/bench-rawmemchr.c: New file.
25062 * benchtests/bench-stpcpy-ifunc.c: New file.
25063 * benchtests/bench-stpcpy.c: New file.
25064 * benchtests/bench-stpncpy-ifunc.c: New file.
25065 * benchtests/bench-stpncpy.c: New file.
25066 * benchtests/bench-strcasecmp-ifunc.c: New file.
25067 * benchtests/bench-strcasecmp.c: New file.
25068 * benchtests/bench-strcasestr-ifunc.c: New file.
25069 * benchtests/bench-strcasestr.c: New file.
25070 * benchtests/bench-strcat-ifunc.c: New file.
25071 * benchtests/bench-strcat.c: New file.
25072 * benchtests/bench-strchr-ifunc.c: New file.
25073 * benchtests/bench-strchr.c: New file.
25074 * benchtests/bench-strchrnul-ifunc.c: New file.
25075 * benchtests/bench-strchrnul.c: New file.
25076 * benchtests/bench-strcmp-ifunc.c: New file.
25077 * benchtests/bench-strcmp.c: New file.
25078 * benchtests/bench-strcpy-ifunc.c: New file.
25079 * benchtests/bench-strcpy.c: New file.
25080 * benchtests/bench-strcspn-ifunc.c: New file.
25081 * benchtests/bench-strcspn.c: New file.
25082 * benchtests/bench-strlen-ifunc.c: New file.
25083 * benchtests/bench-strlen.c: New file.
25084 * benchtests/bench-strncasecmp-ifunc.c: New file.
25085 * benchtests/bench-strncasecmp.c: New file.
25086 * benchtests/bench-strncat-ifunc.c: New file.
25087 * benchtests/bench-strncat.c: New file.
25088 * benchtests/bench-strncmp-ifunc.c: New file.
25089 * benchtests/bench-strncmp.c: New file.
25090 * benchtests/bench-strncpy-ifunc.c: New file.
25091 * benchtests/bench-strncpy.c: New file.
25092 * benchtests/bench-strnlen-ifunc.c: New file.
25093 * benchtests/bench-strnlen.c: New file.
25094 * benchtests/bench-strpbrk-ifunc.c: New file.
25095 * benchtests/bench-strpbrk.c: New file.
25096 * benchtests/bench-strrchr-ifunc.c: New file.
25097 * benchtests/bench-strrchr.c: New file.
25098 * benchtests/bench-strspn-ifunc.c: New file.
25099 * benchtests/bench-strspn.c: New file.
25100 * benchtests/bench-strstr-ifunc.c: New file.
25101 * benchtests/bench-strstr.c: New file.
25102
c1f75dc3
SP
25103 * benchtests/Makefile: Disable parallel execution of targets.
25104 (string-bench): Add memcpy.
25105 (benchset): New variable to store a list of benchmark sets.
25106 (bench-func): Renamed from bench.
25107 (bench-set): New target.
25108 (bench): Depend on bench-func and bench-set.
25109 * benchtests/README: Add section on benchmark sets.
25110 * benchtests/bench-memcpy-ifunc.c: New file.
25111 * benchtests/bench-memcpy.c: New file.
25112 * benchtests/bench-string.h: New file.
25113
50fd745b
AS
251142013-06-11 Andreas Schwab <schwab@suse.de>
25115
25116 [BZ #15577]
25117 * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
25118 * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
25119 values in the triple.
25120 * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
25121 terminator in the group key.
25122
3ee7e9fe
AJ
251232013-06-11 Andreas Jaeger <aj@suse.de>
25124
25125 * po/zh_TW.po: Update Chinese (traditional) translation from
25126 translation project.
25127
89fb6835
SP
251282013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
25129
25130 * include/time.h (__clock_gettime): Add libc_hidden_proto.
25131 * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
25132 __clock_getcpuclockid. Add weak_alias and libc_hidden_def.
25133 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
25134 (clock_getcpuclockid): Likewise.
25135 * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
25136 Add weak_alias and libc_hidden_def.
25137 * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
25138 * rt/clock_gettime.c (clock_gettime): Rename to
25139 __clock_gettime. Add weak_alias and libc_hidden_def.
25140 * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
25141 * rt/clock_nanosleep.c (clock_nanosleep): Rename to
25142 __clock_nanosleep. Add weak_alias and libc_hidden_def.
25143 * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
25144 * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
25145 Likewise.
25146 * rt/clock_settime.c (clock_settime): Rename to
25147 __clock_settime. Add weak_alias and libc_hidden_def.
25148 * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
25149
0efa6f8b
JM
251502013-06-10 Joseph Myers <joseph@codesourcery.com>
25151
b8c61b4b
JM
25152 * mach/err_boot.sub: Remove trailing whitespace.
25153 * mach/err_ipc.sub: Likewise.
25154 * mach/err_mach.sub: Likewise.
25155
0efa6f8b
JM
25156 * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
25157 (ROUNDING_TESTS_double): Likewise.
25158 (ROUNDING_TESTS_long_double): Likewise.
25159 (ROUNDING_TESTS): Likewise.
25160 * math/libm-test.inc: Include <math-tests.h>.
25161 (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
25162 (IF_ROUND_INIT_FE_TONEAREST): Likewise.
25163 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
25164 (IF_ROUND_INIT_FE_UPWARD): Likewise.
25165
50b818bf
SP
251662013-06-10 Siddhesh Poyarekar <siddhesh@redhat.com>
25167
25168 * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
25169 of assigning.
25170
60d2f8f3
JM
251712013-06-08 Joseph Myers <joseph@codesourcery.com>
25172
4902d2c3
JM
25173 * sysdeps/gnu/errlist.awk: Do not generate space at end of
25174 otherwise empty TRANS lines.
25175 * sysdeps/gnu/errlist.c: Regenerated.
25176
60d2f8f3
JM
25177 * catgets/gencat.c (error_print): Use (void) in function
25178 definition.
25179 * crypt/crypt_util.c (__init_des): Likewise.
25180 * crypt/speeds.c (Stop): Likewise.
25181 (main): Likewise.
25182 * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
25183 * inet/ruserpass.c (token): Likewise.
25184 * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
25185 * intl/localealias.c (extend_alias_table): Likewise.
25186 * intl/plural-exp.c (init_germanic_plural): Likewise.
25187 * libio/fcloseall.c (__fcloseall): Likewise.
25188 * libio/genops.c (_IO_flush_all): Likewise.
25189 (_IO_flush_all_linebuffered): Likewise.
25190 (_IO_cleanup): Likewise.
25191 (_IO_iter_begin): Likewise.
25192 (_IO_iter_end): Likewise.
25193 (_IO_list_lock): Likewise.
25194 (_IO_list_unlock): Likewise.
25195 (_IO_list_resetlock): Likewise.
25196 * libio/getchar.c (getchar): Likewise.
25197 * libio/getchar_u.c (getchar_unlocked): Likewise.
25198 * libio/getwchar.c (getwchar): Likewise.
25199 * libio/getwchar_u.c (getwchar_unlocked): Likewise.
25200 * libio/oldstdfiles.c (_IO_check_libio): Likewise.
25201 * login/getpt.c (__getpt): Likewise.
25202 * login/tst-utmp.c (main): Likewise.
25203 * malloc/hooks.c (__malloc_check_init): Likewise.
25204 * malloc/malloc.c (__malloc_stats): Likewise.
25205 * malloc/mtrace.c (tr_break): Likewise.
25206 (mtrace): Likewise.
25207 (muntrace): Likewise.
25208 * misc/fstab.c (endfsent): Likewise.
25209 * misc/getclktck.c (__getclktck): Likewise.
25210 * misc/getdtsz.c (__getdtablesize): Likewise.
25211 * misc/gethostid.c (gethostid): Likewise.
25212 * misc/getpagesize.c (__getpagesize): Likewise.
25213 * misc/getsysstats.c (__get_nprocs_conf): Likewise.
25214 (__get_nprocs): Likewise.
25215 (__get_phys_pages): Likewise.
25216 (__get_avphys_pages): Likewise.
25217 * misc/getttyent.c (getttyent): Likewise.
25218 (setttyent): Likewise.
25219 (endttyent): Likewise.
25220 * misc/getusershell.c (getusershell): Likewise.
25221 (endusershell): Likewise.
25222 (setusershell): Likewise.
25223 (initshells): Likewise.
25224 * misc/hsearch.c (__hdestroy): Likewise.
25225 * misc/sync.c (sync): Likewise.
25226 * misc/syslog.c (closelog_internal): Likewise.
25227 (closelog): Likewise.
25228 * misc/ttyslot.c (ttyslot): Likewise.
25229 * misc/vhangup.c (vhangup): Likewise.
25230 * posix/fork.c (__fork): Likewise.
25231 * posix/getegid.c (__getegid): Likewise.
25232 * posix/geteuid.c (__geteuid): Likewise.
25233 * posix/getgid.c (__getgid): Likewise.
25234 * posix/getpid.c (__getpid): Likewise.
25235 * posix/getppid.c (__getppid): Likewise.
25236 * posix/getuid.c (__getuid): Likewise.
25237 * posix/pause.c (pause): Likewise.
25238 * posix/setpgrp.c (setpgrp): Likewise.
25239 * posix/setsid.c (__setsid): Likewise.
25240 * posix/test-vfork.c (noop): Likewise.
25241 * resolv/gethnamaddr.c (_endhtent): Likewise.
25242 (_gethtent): Likewise.
25243 (ht_endhostent): Likewise.
25244 (gethostent): Likewise.
25245 (dns_service): Likewise.
25246 * stdlib/drand48.c (drand48): Likewise.
25247 * stdlib/lrand48.c (lrand48): Likewise.
25248 * stdlib/mrand48.c (mrand48): Likewise.
25249 * stdlib/rand.c (rand): Likewise.
25250 * stdlib/random.c (__random): Likewise.
25251 * stdlib/setenv.c (clearenv): Likewise.
25252 * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
25253 * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
25254 * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
25255 * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
25256 (__get_nprocs): Likewise.
25257 (__get_phys_pages): Likewise.
25258 (__get_avphys_pages): Likewise.
25259 * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
25260 * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
25261 * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
25262 * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
25263 * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
25264 * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
25265 * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
25266 * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
25267 * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
25268 * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
25269 * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
25270 * sysdeps/mach/hurd/sync.c (sync): Likewise.
25271 * sysdeps/posix/clock.c (clock): Likewise.
25272 * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
25273 * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
25274 * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
25275 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
25276 * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
25277 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
25278 (__get_nprocs_conf): Likewise.
25279 (__get_phys_pages): Likewise.
25280 (__get_avphys_pages): Likewise.
25281 * time/clock.c (clock): Likewise.
25282 * time/tzset.c (__tzname_max): Likewise.
25283
2e09a79a
JM
252842013-06-07 Joseph Myers <joseph@codesourcery.com>
25285
25286 * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
25287 (__bswap_32): Do not use "register".
25288 * crypt/crypt.c (_ufc_doit_r): Likewise.
25289 * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
25290 * debug/wcscat_chk.c (__wcscat_chk): Likewise.
25291 * gmon/gmon.c (__monstartup): Likewise.
25292 * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
25293 * hurd/hurdmalloc.c (more_memory): Likewise.
25294 (malloc): Likewise.
25295 (free): Likewise.
25296 (realloc): Likewise.
25297 (malloc_fork_prepare): Likewise.
25298 (malloc_fork_parent): Likewise.
25299 (malloc_fork_child): Likewise.
25300 * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
25301 (_svcauth_des): Likewise.
25302 * inet/inet_lnaof.c (inet_lnaof): Likewise.
25303 * inet/inet_net.c (inet_network): Likewise.
25304 * inet/inet_netof.c (inet_netof): Likewise.
25305 * inet/rcmd.c (__validuser2_sa): Likewise.
25306 * io/fts.c (fts_open): Likewise.
25307 (fts_load): Likewise.
25308 (fts_close): Likewise.
25309 (fts_read): Likewise.
25310 (fts_children): Likewise.
25311 (fts_build): Likewise.
25312 (fts_stat): Likewise.
25313 (fts_sort): Likewise.
25314 (fts_alloc): Likewise.
25315 (fts_lfree): Likewise.
25316 * libio/fileops.c (_IO_new_file_xsputn): Likewise.
25317 (_IO_file_xsgetn): Likewise.
25318 (_IO_file_xsgetn_mmap): Likewise.
25319 * libio/iofopncook.c (_IO_cookie_read): Likewise.
25320 (_IO_cookie_write): Likewise.
25321 * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
25322 * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
25323 * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
25324 * malloc/obstack.c (_obstack_begin): Likewise.
25325 (_obstack_begin_1): Likewise.
25326 (_obstack_newchunk): Likewise.
25327 (_obstack_allocated_p): Likewise.
25328 (obstack_free): Likewise.
25329 (_obstack_memory_used): Likewise.
25330 * misc/getttyent.c (getttynam): Likewise.
25331 (getttyent): Likewise.
25332 (skip): Likewise.
25333 (value): Likewise.
25334 * misc/getusershell.c (initshells): Likewise.
25335 * misc/syslog.c (__vsyslog_chk): Likewise.
25336 * misc/ttyslot.c (ttyslot): Likewise.
25337 * nis/nis_hash.c (__nis_hash): Likewise.
25338 * posix/fnmatch_loop.c (FCT): Likewise.
25339 * posix/getconf.c (print_all): Likewise.
25340 (main): Likewise.
25341 * posix/getopt.c (exchange): Likewise.
25342 * posix/glob.c (globfree): Likewise.
25343 (prefix_array): Likewise.
25344 (__glob_pattern_type): Likewise.
25345 * resolv/arpa/nameser.h (NS_GET16): Likewise.
25346 (NS_GET32): Likewise.
25347 (NS_PUT16): Likewise.
25348 (NS_PUT32): Likewise.
25349 * resolv/gethnamaddr.c (getanswer): Likewise.
25350 (gethostbyname2): Likewise.
25351 (gethostbyaddr): Likewise.
25352 (_gethtent): Likewise.
25353 (_gethtbyname2): Likewise.
25354 (_gethtbyaddr): Likewise.
25355 * resolv/ns_print.c (dst_s_get_int16): Likewise.
25356 * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
25357 * resolv/res_init.c (__res_vinit): Likewise.
25358 (net_mask): Likewise.
25359 * resolv/res_mkquery.c (outchar): Likewise.
25360 (PRINT): Likewise.
25361 * stdio-common/printf_fp.c (outchar): Likewise.
25362 (PRINT): Likewise.
25363 * stdio-common/printf_fphex.c (outchar): Likewise.
25364 (PRINT): Likewise.
25365 * stdio-common/printf_size.c (outchar): Likewise.
25366 (PRINT): Likewise.
25367 * stdio-common/test_rdwr.c (main): Likewise.
25368 * stdio-common/tfformat.c (matches): Likewise.
25369 * stdio-common/vfprintf.c (outchar): Likewise.
25370 (printf_unknown): Likewise.
25371 (buffered_vfprintf): Likewise.
25372 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
25373 * stdio-common/xbug.c (AppendToBuffer): Likewise.
25374 (ReadFile): Likewise.
25375 * stdlib/qsort.c (SWAP): Likewise.
25376 (_quicksort): Likewise.
25377 * stdlib/setenv.c (__add_to_environ): Likewise.
25378 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
25379 * stdlib/strtol_l.c (__strtol_l): Likewise.
25380 * stdlib/tst-strtod.c (main): Likewise.
25381 * stdlib/tst-strtol.c (main): Likewise.
25382 * stdlib/tst-strtoll.c (main): Likewise.
25383 * string/bits/string2.h (__strcmp_cc): Likewise.
25384 (__strcmp_cg): Likewise.
25385 (__strcspn_c1): Likewise.
25386 (__strcspn_c2): Likewise.
25387 (__strcspn_c3): Likewise.
25388 (__strspn_c1): Likewise.
25389 (__strspn_c2): Likewise.
25390 (__strspn_c3): Likewise.
25391 (__strsep_1c): Likewise.
25392 (__strsep_2c): Likewise.
25393 (__strsep_3c): Likewise.
25394 * string/memccpy.c (__memccpy): Likewise.
25395 * string/stpcpy.c (__stpcpy): Likewise.
25396 * string/strcmp.c (strcmp): Likewise.
25397 * string/strrchr.c (strrchr): Likewise.
25398 * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
25399 Likewise.
25400 * sysdeps/mach/hurd/getcwd.c
25401 (_hurd_canonicalize_directory_name_internal): Likewise.
25402 * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
25403 * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
25404 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
25405 * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
25406 Likewise, in both definitions.
25407 * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
25408 definitions.
25409 [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
25410 64] (__bswap_64): Likewise.
25411 * time/test_time.c (main): Likewise.
25412 * time/tzfile.c (__tzfile_read): Likewise.
25413 (__tzfile_compute): Likewise.
25414 * time/tzset.c (__tzset_parse_tz): Likewise.
25415 (tzset_internal): Likewise.
25416 (compute_change): Likewise.
25417 * wcsmbs/wcscat.c (__wcscat): Likewise.
25418 * wcsmbs/wcschr.c (wcschr): Likewise.
25419 * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
25420 * wcsmbs/wcscspn.c (wcscspn): Likewise.
25421 * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
25422 * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
25423 * wcsmbs/wcsspn.c (wcsspn): Likewise.
25424 * wcsmbs/wcsstr.c (wcsstr): Likewise.
25425 * wcsmbs/wmemchr.c (wmemchr): Likewise.
25426 * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
25427 * wcsmbs/wmemset.c (wmemset): Likewise.
25428
9e54314b
JM
254292013-06-06 Joseph Myers <joseph@codesourcery.com>
25430
25431 * scripts/config.guess: Update to version 2013-05-16.
25432 * scripts/config.sub: Update to version 2013-04-24.
25433 * scripts/install-sh: Update to version 2011-11-20.07.
25434 * scripts/mkinstalldirs: Update to version 2009-04-28.21.
25435 * scripts/move-if-change: Update to version 2012-01-06 07:23.
25436
350635a5
OB
254372013-06-06 Ondřej Bílka <neleai@seznam.cz>
25438
25439 * debug/fgetws_u_chk.c: Fix leading whitespaces.
25440 * elf/sln.c: Likewise.
25441 * hurd/hurd/ioctl.h: Likewise.
25442 * hurd/hurdmalloc.c: Likewise.
25443 * hurd/xattr.c: Likewise.
25444 * include/shlib-compat.h: Likewise.
25445 * inet/ruserpass.c: Likewise.
25446 * libio/iofgets_u.c: Likewise.
25447 * libio/iofgetws_u.c: Likewise.
25448 * locale/programs/ld-identification.c: Likewise.
25449 * locale/programs/ld-time.c: Likewise.
25450 * mach/msg-destroy.c: Likewise.
25451 * nss/nss_files/files-netgrp.c: Likewise.
25452 * resolv/res_data.c: Likewise.
25453 * soft-fp/op-1.h: Likewise.
25454 * soft-fp/op-2.h: Likewise.
25455 * soft-fp/op-4.h: Likewise.
25456 * soft-fp/op-common.h: Likewise.
25457 * stdio-common/printf_fphex.c: Likewise.
25458 * stdlib/strtod_l.c: Likewise.
25459 * sunrpc/rpc/clnt.h: Likewise.
25460 * sysdeps/generic/framestate.c: Likewise.
25461 * sysdeps/i386/bsd-_setjmp.S: Likewise.
25462 * sysdeps/i386/bsd-setjmp.S: Likewise.
25463 * sysdeps/i386/__longjmp.S: Likewise.
25464 * sysdeps/i386/setjmp.S: Likewise.
25465 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
25466 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
25467 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
25468 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
25469 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
25470 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
25471 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
25472 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
25473 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
25474 * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
25475 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
25476 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
25477 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
25478 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
25479 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
25480 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
25481 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
25482 * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
25483 * sysdeps/ieee754/support.c: Likewise.
25484 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
25485 * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
25486 * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
25487 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
25488 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
25489 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
25490 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
25491 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
25492 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
25493 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
25494 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
25495 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
25496 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
25497 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
25498 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
25499 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
25500 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
25501 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
25502
44a988af
OB
255032013-06-05 Ondřej Bílka <neleai@seznam.cz>
25504
25506f09 25505 * posix/transbug.c: Remove executable mode.
44a988af 25506
9c84384c
JM
255072013-06-05 Joseph Myers <joseph@codesourcery.com>
25508
25509 * crypt/speeds.c: Remove trailing whitespace.
25510 * dlfcn/default.c: Likewise.
25511 * elf/ifuncdep2.c: Likewise.
25512 * elf/ifuncmain1.c: Likewise.
25513 * elf/ifuncmain1vis.c: Likewise.
25514 * elf/testobj.h: Likewise.
25515 * elf/tst-stackguard1.c: Likewise.
25516 * gmon/sys/gmon.h: Likewise.
25517 * hurd/hurdmsg.c: Likewise.
25518 * hurd/new-fd.c: Likewise.
25519 * hurd/ports-get.c: Likewise.
25520 * iconvdata/ibm1008_420.c: Likewise.
25521 * inet/tst-getni1.c: Likewise.
25522 * inet/tst-getni2.c: Likewise.
25523 * libio/ioungetc.c: Likewise.
25524 * libio/wfiledoalloc.c: Likewise.
25525 * manual/libm-err-tab.pl: Likewise.
25526 * math/w_dremf.c: Likewise.
25527 * misc/ftruncate.c: Likewise.
25528 * posix/bug-glob2.c: Likewise.
25529 * posix/tst-pcre.c: Likewise.
25530 * posix/wait4.c: Likewise.
25531 * resolv/README: Likewise.
25532 * resolv/res_debug.h: Likewise.
25533 * resolv/tst-inet_ntop.c: Likewise.
25534 * setjmp/bug269-setjmp.c: Likewise.
25535 * soft-fp/extended.h: Likewise.
25536 * soft-fp/op-1.h: Likewise.
25537 * soft-fp/op-2.h: Likewise.
25538 * soft-fp/op-4.h: Likewise.
25539 * soft-fp/op-8.h: Likewise.
25540 * soft-fp/testit.c: Likewise.
25541 * stdio-common/bug16.c: Likewise.
25542 * stdlib/random.c: Likewise.
25543 * sunrpc/rpcsvc/rquota.x: Likewise.
25544 * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
25545 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
25546 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
25547 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
25548 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
25549 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
25550 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
25551 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
25552 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
25553 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
25554 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
25555 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
25556 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
25557 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
25558 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
25559 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
25560 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
25561 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
25562 * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
25563 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
25564 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
25565 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
25566 * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
25567 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
25568 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
25569 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
25570 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
25571 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
25572 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
25573 * sysdeps/ieee754/s_lib_version.c: Likewise.
25574 * sysdeps/mach/hurd/check_fds.c: Likewise.
25575 * sysdeps/mach/hurd/getsockname.c: Likewise.
25576 * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
25577 * sysdeps/mach/hurd/recvfrom.c: Likewise.
25578 * sysdeps/powerpc/bits/link.h: Likewise.
25579 * sysdeps/powerpc/dl-procinfo.c: Likewise.
25580 * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
25581 * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
25582 * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
25583 * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
25584 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
25585 * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
25586 * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
25587 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
25588 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
25589 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
25590 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
25591 * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
25592 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
25593 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
25594 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
25595 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
25596 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
25597 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
25598 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
25599 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
25600 * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
25601 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
25602 * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
25603 * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
25604 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
25605 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
25606 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
25607 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
25608 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
25609 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
25610 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
25611 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
25612 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
25613 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
25614 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
25615 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
25616 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
25617 * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
25618 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
25619 * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
25620 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
25621 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
25622 * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
25623 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
25624 * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
25625 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
25626 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
25627 * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
25628 * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
25629 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
25630 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
25631 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
25632 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
25633 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
25634 * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
25635 * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
25636 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
25637 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
25638 * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
25639 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
25640 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
25641 * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
25642 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
25643 * sysdeps/powerpc/sysdep.h: Likewise.
25644 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
25645 * sysdeps/s390/s390-64/sub_n.S: Likewise.
25646 * sysdeps/sh/dl-trampoline.S: Likewise.
25647 * sysdeps/sh/memset.S: Likewise.
25648 * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
25649 * sysdeps/sh/strlen.S: Likewise.
25650 * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
25651 * sysdeps/sparc/sparc32/dotmul.S: Likewise.
25652 * sysdeps/sparc/sparc32/memcpy.S: Likewise.
25653 * sysdeps/sparc/sparc32/rem.S: Likewise.
25654 * sysdeps/sparc/sparc32/sdiv.S: Likewise.
25655 * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
25656 * sysdeps/sparc/sparc32/strchr.S: Likewise.
25657 * sysdeps/sparc/sparc32/udiv.S: Likewise.
25658 * sysdeps/sparc/sparc32/urem.S: Likewise.
25659 * sysdeps/sparc/sparc64/add_n.S: Likewise.
25660 * sysdeps/sparc/sparc64/memcpy.S: Likewise.
25661 * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
25662 * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
25663 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
25664 * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
25665 * sysdeps/sparc/sparc64/strncmp.S: Likewise.
25666 * sysdeps/sparc/sparc64/strncpy.S: Likewise.
25667 * sysdeps/unix/bsd/times.c: Likewise.
25668 * sysdeps/unix/sysv/linux/a.out.h: Likewise.
25669 * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
25670 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
25671 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
25672 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
25673 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
25674 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
25675 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
25676 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
25677 * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
25678 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
25679 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
25680 * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
25681 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
25682 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
25683 * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
25684 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
25685 * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
25686 * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
25687 * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
25688 * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
25689 * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
25690 * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
25691 * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
25692 * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
25693 * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
25694 * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
25695 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
25696 * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
25697 * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
25698 * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
25699 * sysdeps/x86_64/strcspn.S: Likewise.
25700
869378a5
RA
257012013-06-05 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
25702
25703 * locale/C-translit.h: Revert #include <stdint.h> because this is a
25704 generated file. Regenerate properly from gen-translit.pl.
25705 * locale/gen-translit.pl: Add #include <stdint.h>. This generates
25706 locale/C-translit.h.
25707
840e2943
AS
257082013-06-05 Andreas Schwab <schwab@suse.de>
25709
25710 [BZ #15100]
25711 * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
25712 week as 6 instead of -1.
25713 * time/tst-strptime.c (day_tests): Add test case.
25714
4c60cb0c
SP
257152013-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
25716
25717 * sysdeps/generic/math_private.h
25718 (libc_feholdexcept_setround_53bit): Replace with
25719 libc_feholdsetround_53bit.
25720 (libc_feupdateenv_53bit): Replace with
25721 libc_feresetround_53bit.
25722 (SET_RESTORE_ROUND_53BIT): Adjust.
25723
d180203e
SP
257242013-06-03 Siddhesh Poyarekar <siddhesh@redhat.com>
25725
96df079a
SP
25726 * string/test-strchrnul.c: Add copyright header.
25727
d180203e
SP
25728 * posix/tst-getaddrinfo4.c: Increase test timeout.
25729
8b0ccb2d
CD
257302013-06-03 Carlos O'Donell <carlos@redhat.com>
25731
25732 [BZ #15536]
25733 * math/libm-test.inc (MAX_EXP): Remove
25734 (MIN_EXP): Define.
25735 (ulp): Use MIN_EXP - MANT_DIG.
25736 (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
25737
3b3c4d40
CD
257382013-05-31 Carlos O'Donell <carlos@redhat.com>
25739
25740 * po/be.po: Revert last change.
25741 * po/zh_CN.po: Likewise.
25742 * po/header.pot: Likewise.
25743
fab7ce3f
JM
257442013-05-31 Joseph Myers <joseph@codesourcery.com>
25745
25746 * Makefile ($(common-objpfx)linkobj/libc.so): Define
25747 link-libc-deps to empty as target-specific variable.
25748 * Makerules (link-libc-args): New variable.
25749 (libc-for-link): Likewise.
25750 (link-libc-deps): Likewise.
25751 (lib%.so): Depend on $(link-libc-deps). Link with
25752 $(link-libc-args).
25753 (build-module): Link with $(link-libc-args).
25754 (build-module-asneeded): Likewise.
25755 (build-module-helper-objlist): Filter out $(link-libc-deps) from
25756 list of objects.
25757 ($(common-objpfx)libc.so): Define link-libc-deps to empty as
25758 target-specific variable.
25759 ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
25760 $(link-libc-deps) instead of libc.so and libc_nonshared.a.
25761 * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
25762 libc.
25763 * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
25764 libc and ld.so.
25765 ($(objpfx)libpcprofile.so): Likewise.
25766 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
25767 libc_nonshared.a.
25768 ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
25769 * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
25770 * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
25771 $(link-libc-deps).
25772 ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
25773 * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
25774 * login/Makefile ($(objpfx)libutil.so): Likewise.
25775 * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
25776 * math/Makefile ($(objpfx)libm.so): Likewise.
25777 * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
25778 $(objpfx)libnsl.so): Define libc-for-link as target-specific
25779 variable instead of depending directly on libc.
25780 * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
25781 ($(objpfx)/libnss_test1.so): Change dependencies on libc to
25782 $(link-libc-deps).
25783 * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
25784 libc.
25785 [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
25786 ($(objpfx)libnss_dns.so): Remove dependencies on libc.
25787 ($(objpfx)libanl.so): Likewise.
25788 * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
25789 ld.so.
25790 * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
25791 $(link-libc-deps).
25792 * sysdeps/i386/fpu/Makefile: Remove file.
25793 * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
25794 ($(objpfx)libm.so): Remove dependency on ld.so.
25795
eca5920c
PF
257962013-05-30 Patsy Franklin <pfrankli@redhat.com>
25797
25798 [BZ # 15553]
25799 * nis/yp_xdr.c (XDRMAXNAME): Define.
25800 (XDRMAXRECORD): Define.
25801 (xdr_domainname): Use XDRMAXNAME.
25802 (xdr_mapname): Likewise.
25803 (xdr_peername): Likewise.
25804 (xdr_keydat): Use XDRMAXRECORD.
25805 (xdr_valdat): Likewise.
25806
258072013-05-30 Jeff Law <law@redhat.com>
96945714
JL
25808
25809 [BZ #14256]
25810 * manual/errno.texi (ESTALE): Update to account for more than
25811 just NFS file systems.
25812 * sysdeps/gnu/errlist.c: Regenerated.
25813
b9375348
SP
258142013-05-29 Siddhesh Poyarekar <siddhesh@redhat.com>
25815
25816 [BZ #15465]
25817 * elf/Makefile (tests): Add tst-null-argv.
25818 (modules-names): Add tst-null-argv-lib.
25819 ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
25820 (tst-null-argv-ENV): Set environment for tst-null-argv.
25821 * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
25822 (RTLD_PROGNAME): New macro.
25823 * elf/tst-null-argv.c: New test case.
25824 * elf/tst-null-argv-lib.c: Library for test case.
25825 * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
25826 * elf/dl-deps.c (_dl_map_object_deps): Likewise.
25827 * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
25828 * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
25829 * elf/dl-init.c (call_init): Likewise.
25830 (_dl_init): Likewise.
25831 * elf/dl-load.c (print_search_path): Likewise.
25832 (_dl_map_object): Likewise.
25833 * elf/dl-lookup.c (do_lookup_x): Likewise.
25834 (add_dependency): Likewise.
25835 (_dl_lookup_symbol_x): Likewise.
25836 (_dl_debug_bindings): Likewise.
25837 * elf/dl-open.c (_dl_show_scope): Likewise.
25838 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
25839 * elf/dl-version.c (match_symbol): Likewise.
25840 (_dl_check_map_versions): Likewise.
25841 * elf/rtld.c (dl_main): Likewise.
25842 (print_unresolved): Use RTLD_PROGNAME.
25843 (print_missing_version): Likewise.
25844 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
25845 (elf_machine_rela): Likewise.
25846 * sysdeps/powerpc/powerpc32/dl-machine.c
25847 (__process_machine_rela): Likewise.
25848 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
25849 Likewise.
25850 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
25851 Likewise.
25852 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
25853 Likewise.
25854 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
25855 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
25856 Likewise.
25857 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
25858 Likewise.
25859 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
25860
8a9f20c8
CD
258612013-05-28 Carlos O'Donell <carlos@redhat.com>
25862
25863 * po/be.po: Add descriptive title.
25864 * po/zh_CN.po: Likewise.
25865 * po/header.pot: Likewise.
25866
0e60d68e
MF
258672013-05-28 Mike Frysinger <vapier@gentoo.org>
25868
25869 * locale/programs/locarchive.c (create_archive): Inlucde fname in
25870 error message.
25871 (enlarge_archive): Likewise.
25872
56b672e9
BN
258732013-05-28 Ben North <ben@redfrontdoor.org>
25874
25875 * manual/arith.texi (frexp): It is the magnitude of the return
25876 value which lies in [0.5, 1), not the return value itself.
25877
5e056687
AZ
258782013-05-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25879
25880 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25881
2b66ef5d
TS
258822013-05-26 Thomas Schwinge <thomas@codesourcery.com>
25883
528c2405
TS
25884 * stdio-common/bug26.c (main): Correct fscanf template.
25885
07b4c13d
TS
25886 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
25887 declare _dl_skip_args.
25888
ec9dd97c
TS
25889 * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
25890 Don't declare.
25891
2b66ef5d
TS
25892 * manual/platform.texi: Add missing @end deftypefun.
25893
4f8dfe27
JM
258942013-05-24 Joseph Myers <joseph@codesourcery.com>
25895
0323d086
JM
25896 [BZ #15529]
25897 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
25898 bit of mantissa of 2^16382.
25899 * math/libm-test.inc (hypot_test_data): Add more tests.
25900
dd4259b9
JM
25901 * math/libm-test.inc: Add drem and pow10 to list of tested
25902 functions.
25903 (pow10_test): New function.
25904 (drem_test): Likewise.
25905 (drem_test_tonearest): Likewise.
25906 (drem_test_towardzero): Likewise.
25907 (drem_test_downward): Likewise.
25908 (drem_test_upward): Likewise.
25909 (main): Call the new functions.
25910
4f8dfe27
JM
25911 * math/libm-test.inc (finite_test_data): Remove.
25912 (finite_test): Run tests from isfinite_test_data.
25913 (gamma_test_data): Remove.
25914 (gamma_test): Run tests from lgamma_test_data.
25915 * sysdeps/i386/fpu/libm-test-ulps: Update.
25916 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25917
d116b7c4
AZ
259182013-05-24 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25919
25920 * manual/platform.texi: Add PowerPC PPR function set documentation.
25921 * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
25922 implementation.
25923
e96e3767
CD
259242013-05-24 Carlos O'Donell <carlos@redhat.com>
25925
25926 * math/libm-test.inc (MAX_EXP): Define.
25927 (ULPDIFF): Define.
25928 (ulp): New function.
25929 (check_float_internal): Use ULPDIFF.
25930 (cpow_test): Disable failing test.
25931 (check_ulp): Test ulp() implemetnation.
25932 (main): Call check_ulp before starting tests.
25933
b679a606
JM
259342013-05-24 Joseph Myers <joseph@codesourcery.com>
25935
e8bdba36
JM
25936 * math/gen-libm-test.pl (generate_testfile): Do not handle
25937 START_DATA and END_DATA.
25938 * math/libm-test.inc (acos_test_data): Do not use START_DATA and
25939 END_DATA.
25940 (acos_tonearest_test_data): Likewise.
25941 (acos_towardzero_test_data): Likewise.
25942 (acos_downward_test_data): Likewise.
25943 (acos_upward_test_data): Likewise.
25944 (acosh_test_data): Likewise.
25945 (asin_test_data): Likewise.
25946 (asin_tonearest_test_data): Likewise.
25947 (asin_towardzero_test_data): Likewise.
25948 (asin_downward_test_data): Likewise.
25949 (asin_upward_test_data): Likewise.
25950 (asinh_test_data): Likewise.
25951 (atan_test_data): Likewise.
25952 (atanh_test_data): Likewise.
25953 (atan2_test_data): Likewise.
25954 (cabs_test_data): Likewise.
25955 (cacos_test_data): Likewise.
25956 (cacosh_test_data): Likewise.
25957 (carg_test_data): Likewise.
25958 (casin_test_data): Likewise.
25959 (casinh_test_data): Likewise.
25960 (catan_test_data): Likewise.
25961 (catanh_test_data): Likewise.
25962 (cbrt_test_data): Likewise.
25963 (ccos_test_data): Likewise.
25964 (ccosh_test_data): Likewise.
25965 (ceil_test_data): Likewise.
25966 (cexp_test_data): Likewise.
25967 (cimag_test_data): Likewise.
25968 (clog_test_data): Likewise.
25969 (clog10_test_data): Likewise.
25970 (conj_test_data): Likewise.
25971 (copysign_test_data): Likewise.
25972 (cos_test_data): Likewise.
25973 (cos_tonearest_test_data): Likewise.
25974 (cos_towardzero_test_data): Likewise.
25975 (cos_downward_test_data): Likewise.
25976 (cos_upward_test_data): Likewise.
25977 (cosh_test_data): Likewise.
25978 (cosh_tonearest_test_data): Likewise.
25979 (cosh_towardzero_test_data): Likewise.
25980 (cosh_downward_test_data): Likewise.
25981 (cosh_upward_test_data): Likewise.
25982 (cpow_test_data): Likewise.
25983 (cproj_test_data): Likewise.
25984 (creal_test_data): Likewise.
25985 (csin_test_data): Likewise.
25986 (csinh_test_data): Likewise.
25987 (csqrt_test_data): Likewise.
25988 (ctan_test_data): Likewise.
25989 (ctan_tonearest_test_data): Likewise.
25990 (ctan_towardzero_test_data): Likewise.
25991 (ctan_downward_test_data): Likewise.
25992 (ctan_upward_test_data): Likewise.
25993 (ctanh_test_data): Likewise.
25994 (ctanh_tonearest_test_data): Likewise.
25995 (ctanh_towardzero_test_data): Likewise.
25996 (ctanh_downward_test_data): Likewise.
25997 (ctanh_upward_test_data): Likewise.
25998 (erf_test_data): Likewise.
25999 (erfc_test_data): Likewise.
26000 (exp_test_data): Likewise.
26001 (exp_tonearest_test_data): Likewise.
26002 (exp_towardzero_test_data): Likewise.
26003 (exp_downward_test_data): Likewise.
26004 (exp_upward_test_data): Likewise.
26005 (exp10_test_data): Likewise.
26006 (exp2_test_data): Likewise.
26007 (expm1_test_data): Likewise.
26008 (fabs_test_data): Likewise.
26009 (fdim_test_data): Likewise.
26010 (finite_test_data): Likewise.
26011 (floor_test_data): Likewise.
26012 (fma_test_data): Likewise.
26013 (fma_towardzero_test_data): Likewise.
26014 (fma_downward_test_data): Likewise.
26015 (fma_upward_test_data): Likewise.
26016 (fmax_test_data): Likewise.
26017 (fmin_test_data): Likewise.
26018 (fmod_test_data): Likewise.
26019 (fpclassify_test_data): Likewise.
26020 (frexp_test_data): Likewise.
26021 (gamma_test_data): Likewise.
26022 (hypot_test_data): Likewise.
26023 (ilogb_test_data): Likewise.
26024 (isfinite_test_data): Likewise.
26025 (isgreater_test_data): Likewise.
26026 (isgreaterequal_test_data): Likewise.
26027 (isinf_test_data): Likewise.
26028 (isless_test_data): Likewise.
26029 (islessequal_test_data): Likewise.
26030 (islessgreater_test_data): Likewise.
26031 (isnan_test_data): Likewise.
26032 (isnormal_test_data): Likewise.
26033 (issignaling_test_data): Likewise.
26034 (isunordered_test_data): Likewise.
26035 (j0_test_data): Likewise.
26036 (j1_test_data): Likewise.
26037 (jn_test_data): Likewise.
26038 (ldexp_test_data): Likewise.
26039 (lgamma_test_data): Likewise.
26040 (lrint_test_data): Likewise.
26041 (lrint_tonearest_test_data): Likewise.
26042 (lrint_towardzero_test_data): Likewise.
26043 (lrint_downward_test_data): Likewise.
26044 (lrint_upward_test_data): Likewise.
26045 (llrint_test_data): Likewise.
26046 (llrint_tonearest_test_data): Likewise.
26047 (llrint_towardzero_test_data): Likewise.
26048 (llrint_downward_test_data): Likewise.
26049 (llrint_upward_test_data): Likewise.
26050 (log_test_data): Likewise.
26051 (log10_test_data): Likewise.
26052 (log1p_test_data): Likewise.
26053 (log2_test_data): Likewise.
26054 (logb_test_data): Likewise.
26055 (logb_downward_test_data): Likewise.
26056 (lround_test_data): Likewise.
26057 (llround_test_data): Likewise.
26058 (modf_test_data): Likewise.
26059 (nearbyint_test_data): Likewise.
26060 (nextafter_test_data): Likewise.
26061 (nexttoward_test_data): Likewise.
26062 (pow_test_data): Likewise.
26063 (pow_tonearest_test_data): Likewise.
26064 (pow_towardzero_test_data): Likewise.
26065 (pow_downward_test_data): Likewise.
26066 (pow_upward_test_data): Likewise.
26067 (remainder_test_data): Likewise.
26068 (remainder_tonearest_test_data): Likewise.
26069 (remainder_towardzero_test_data): Likewise.
26070 (remainder_downward_test_data): Likewise.
26071 (remainder_upward_test_data): Likewise.
26072 (remquo_test_data): Likewise.
26073 (rint_test_data): Likewise.
26074 (rint_tonearest_test_data): Likewise.
26075 (rint_towardzero_test_data): Likewise.
26076 (rint_downward_test_data): Likewise.
26077 (rint_upward_test_data): Likewise.
26078 (round_test_data): Likewise.
26079 (scalb_test_data): Likewise.
26080 (scalbn_test_data): Likewise.
26081 (scalbln_test_data): Likewise.
26082 (signbit_test_data): Likewise.
26083 (sin_test_data): Likewise.
26084 (sin_tonearest_test_data): Likewise.
26085 (sin_towardzero_test_data): Likewise.
26086 (sin_downward_test_data): Likewise.
26087 (sin_upward_test_data): Likewise.
26088 (sincos_test_data): Likewise.
26089 (sinh_test_data): Likewise.
26090 (sinh_tonearest_test_data): Likewise.
26091 (sinh_towardzero_test_data): Likewise.
26092 (sinh_downward_test_data): Likewise.
26093 (sinh_upward_test_data): Likewise.
26094 (sqrt_test_data): Likewise.
26095 (tan_test_data): Likewise.
26096 (tan_tonearest_test_data): Likewise.
26097 (tan_towardzero_test_data): Likewise.
26098 (tan_downward_test_data): Likewise.
26099 (tan_upward_test_data): Likewise.
26100 (tanh_test_data): Likewise.
26101 (tgamma_test_data): Likewise.
26102 (trunc_test_data): Likewise.
26103 (y0_test_data): Likewise.
26104 (y1_test_data): Likewise.
26105 (yn_test_data): Likewise.
26106 (significand_test_data): Likewise.
26107
b679a606
JM
26108 * math/gen-libm-test.pl (@functions): Remove variable.
26109 (generate_testfile): Don't handle START and END lines.
26110 * math/libm-test.inc (START): New macro.
26111 (END): Likewise.
26112 (END_COMPLEX): Likewise.
26113 (acos_test): Use END macro without arguments.
26114 (acos_test_tonearest): Likewise.
26115 (acos_test_towardzero): Likewise.
26116 (acos_test_downward): Likewise.
26117 (acos_test_upward): Likewise.
26118 (acosh_test): Likewise.
26119 (asin_test): Likewise.
26120 (asin_test_tonearest): Likewise.
26121 (asin_test_towardzero): Likewise.
26122 (asin_test_downward): Likewise.
26123 (asin_test_upward): Likewise.
26124 (asinh_test): Likewise.
26125 (atan_test): Likewise.
26126 (atanh_test): Likewise.
26127 (atan2_test): Likewise.
26128 (cabs_test): Likewise.
26129 (cacos_test): Use END_COMPLEX macro without arguments.
26130 (cacosh_test): Likewise.
26131 (carg_test): Use END macro without arguments.
26132 (casin_test): Use END_COMPLEX macro without arguments.
26133 (casinh_test): Likewise.
26134 (catan_test): Likewise.
26135 (catanh_test): Likewise.
26136 (cbrt_test): Use END macro without arguments.
26137 (ccos_test): Use END_COMPLEX macro without arguments.
26138 (ccosh_test): Likewise.
26139 (ceil_test): Use END macro without arguments.
26140 (cexp_test): Use END_COMPLEX macro without arguments.
26141 (cimag_test): Use END macro without arguments.
26142 (clog_test): Use END_COMPLEX macro without arguments.
26143 (clog10_test): Likewise.
26144 (conj_test): Likewise.
26145 (copysign_test): Use END macro without arguments.
26146 (cos_test): Likewise.
26147 (cos_test_tonearest): Likewise.
26148 (cos_test_towardzero): Likewise.
26149 (cos_test_downward): Likewise.
26150 (cos_test_upward): Likewise.
26151 (cosh_test): Likewise.
26152 (cosh_test_tonearest): Likewise.
26153 (cosh_test_towardzero): Likewise.
26154 (cosh_test_downward): Likewise.
26155 (cosh_test_upward): Likewise.
26156 (cpow_test): Use END_COMPLEX macro without arguments.
26157 (cproj_test): Likewise.
26158 (creal_test): Use END macro without arguments.
26159 (csin_test): Use END_COMPLEX macro without arguments.
26160 (csinh_test): Likewise.
26161 (csqrt_test): Likewise.
26162 (ctan_test): Likewise.
26163 (ctan_test_tonearest): Likewise.
26164 (ctan_test_towardzero): Likewise.
26165 (ctan_test_downward): Likewise.
26166 (ctan_test_upward): Likewise.
26167 (ctanh_test): Likewise.
26168 (ctanh_test_tonearest): Likewise.
26169 (ctanh_test_towardzero): Likewise.
26170 (ctanh_test_downward): Likewise.
26171 (ctanh_test_upward): Likewise.
26172 (erf_test): Use END macro without arguments.
26173 (erfc_test): Likewise.
26174 (exp_test): Likewise.
26175 (exp_test_tonearest): Likewise.
26176 (exp_test_towardzero): Likewise.
26177 (exp_test_downward): Likewise.
26178 (exp_test_upward): Likewise.
26179 (exp10_test): Likewise.
26180 (exp2_test): Likewise.
26181 (expm1_test): Likewise.
26182 (fabs_test): Likewise.
26183 (fdim_test): Likewise.
26184 (finite_test): Likewise.
26185 (floor_test): Likewise.
26186 (fma_test): Likewise.
26187 (fma_test_towardzero): Likewise.
26188 (fma_test_downward): Likewise.
26189 (fma_test_upward): Likewise.
26190 (fmax_test): Likewise.
26191 (fmin_test): Likewise.
26192 (fmod_test): Likewise.
26193 (fpclassify_test): Likewise.
26194 (frexp_test): Likewise.
26195 (gamma_test): Likewise.
26196 (hypot_test): Likewise.
26197 (ilogb_test): Likewise.
26198 (isfinite_test): Likewise.
26199 (isgreater_test): Likewise.
26200 (isgreaterequal_test): Likewise.
26201 (isinf_test): Likewise.
26202 (isless_test): Likewise.
26203 (islessequal_test): Likewise.
26204 (islessgreater_test): Likewise.
26205 (isnan_test): Likewise.
26206 (isnormal_test): Likewise.
26207 (issignaling_test): Likewise.
26208 (isunordered_test): Likewise.
26209 (j0_test): Likewise.
26210 (j1_test): Likewise.
26211 (jn_test): Likewise.
26212 (ldexp_test): Likewise.
26213 (lgamma_test): Likewise.
26214 (lrint_test): Likewise.
26215 (lrint_test_tonearest): Likewise.
26216 (lrint_test_towardzero): Likewise.
26217 (lrint_test_downward): Likewise.
26218 (lrint_test_upward): Likewise.
26219 (llrint_test): Likewise.
26220 (llrint_test_tonearest): Likewise.
26221 (llrint_test_towardzero): Likewise.
26222 (llrint_test_downward): Likewise.
26223 (llrint_test_upward): Likewise.
26224 (log_test): Likewise.
26225 (log10_test): Likewise.
26226 (log1p_test): Likewise.
26227 (log2_test): Likewise.
26228 (logb_test): Likewise.
26229 (logb_test_downward): Likewise.
26230 (lround_test): Likewise.
26231 (llround_test): Likewise.
26232 (modf_test): Likewise.
26233 (nearbyint_test): Likewise.
26234 (nextafter_test): Likewise.
26235 (nexttoward_test): Likewise.
26236 (pow_test): Likewise.
26237 (pow_test_tonearest): Likewise.
26238 (pow_test_towardzero): Likewise.
26239 (pow_test_downward): Likewise.
26240 (pow_test_upward): Likewise.
26241 (remainder_test): Likewise.
26242 (remainder_test_tonearest): Likewise.
26243 (remainder_test_towardzero): Likewise.
26244 (remainder_test_downward): Likewise.
26245 (remainder_test_upward): Likewise.
26246 (remquo_test): Likewise.
26247 (rint_test): Likewise.
26248 (rint_test_tonearest): Likewise.
26249 (rint_test_towardzero): Likewise.
26250 (rint_test_downward): Likewise.
26251 (rint_test_upward): Likewise.
26252 (round_test): Likewise.
26253 (scalb_test): Likewise.
26254 (scalbn_test): Likewise.
26255 (scalbln_test): Likewise.
26256 (signbit_test): Likewise.
26257 (sin_test): Likewise.
26258 (sin_test_tonearest): Likewise.
26259 (sin_test_towardzero): Likewise.
26260 (sin_test_downward): Likewise.
26261 (sin_test_upward): Likewise.
26262 (sincos_test): Likewise.
26263 (sinh_test): Likewise.
26264 (sinh_test_tonearest): Likewise.
26265 (sinh_test_towardzero): Likewise.
26266 (sinh_test_downward): Likewise.
26267 (sinh_test_upward): Likewise.
26268 (sqrt_test): Likewise.
26269 (tan_test): Likewise.
26270 (tan_test_tonearest): Likewise.
26271 (tan_test_towardzero): Likewise.
26272 (tan_test_downward): Likewise.
26273 (tan_test_upward): Likewise.
26274 (tanh_test): Likewise.
26275 (tgamma_test): Likewise.
26276 (trunc_test): Likewise.
26277 (y0_test): Likewise.
26278 (y1_test): Likewise.
26279 (yn_test): Likewise.
26280 (significand_test): Likewise.
26281
bae143d2
OB
262822013-05-24 Ondřej Bílka <neleai@seznam.cz>
26283
26284 [BZ #15381]
26285 * libio/genops.c (_IO_no_init): Initialize wide struct info.
26286
9323d39b
EM
262872013-05-23 Edjunior Machado <emachado@linux.vnet.ibm.com>
26288
d4ea44a0 26289 [BZ #14894]
9323d39b
EM
26290 * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
26291 __ppc_mdoio and __ppc_mdoom.
26292 * manual/platform.texi: Document new functions __ppc_yield,
26293 __ppc_mdoio and __ppc_mdoom.
26294
13e23af7
CD
262952013-05-22 Carlos O'Donell <carlos@redhat.com>
26296
26297 * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
26298 (main): Mention "tls" pseudo-hwcap is legacy.
26299 * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
26300
351fe550
JM
263012013-05-22 Joseph Myers <joseph@codesourcery.com>
26302
26303 * math/gen-libm-test.pl (parse_args): Output only string of
26304 arguments as text for test name, not full call or descriptions of
26305 tests for extra outputs.
26306 (generate_testfile): Do not pass function name to parse_args.
26307 Generate this_func variable from START.
26308 * math/libm-test.inc (struct test_f_f_data): Rename test_name
26309 field to arg_str.
26310 (struct test_ff_f_data): Likewise.
26311 (test_ff_f_data_nexttoward): Likewise.
26312 (struct test_fi_f_data): Likewise.
26313 (struct test_fl_f_data): Likewise.
26314 (struct test_if_f_data): Likewise.
26315 (struct test_fff_f_data): Likewise.
26316 (struct test_c_f_data): Likewise.
26317 (struct test_f_f1_data): Likewise. Remove field extra_name.
26318 (struct test_fF_f1_data): Likewise.
26319 (struct test_ffI_f1_data): Likewise.
26320 (struct test_c_c_data): Rename test_name field to arg_str.
26321 (struct test_cc_c_data): Likewise.
26322 (struct test_f_i_data): Likewise.
26323 (struct test_ff_i_data): Likewise.
26324 (struct test_f_l_data): Likewise.
26325 (struct test_f_L_data): Likewise.
26326 (struct test_fFF_11_data): Likewise. Remove fields extra1_name
26327 and extra2_name.
26328 (COMMON_TEST_SETUP): New macro.
26329 (EXTRA_OUTPUT_TEST_SETUP): Likewise.
26330 (COMMON_TEST_CLEANUP): Likewise.
26331 (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
26332 (RUN_TEST_f_f): Take argument string. Call new setup and cleanup
26333 macros.
26334 (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
26335 (RUN_TEST_2_f): Take argument string. Call new setup and cleanup
26336 macros.
26337 (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
26338 (RUN_TEST_fff_f): Take argument string. Call new setup and
26339 cleanup macros.
26340 (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
26341 (RUN_TEST_c_f): Take argument string. Call new setup and cleanup
26342 macros.
26343 (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
26344 (RUN_TEST_f_f1): Take argument string. Call new setup and cleanup
26345 macros.
26346 (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
26347 (RUN_TEST_fF_f1): Take argument string. Call new setup and
26348 cleanup macros.
26349 (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
26350 (RUN_TEST_fI_f1): Take argument string. Call new setup and
26351 cleanup macros.
26352 (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
26353 (RUN_TEST_ffI_f1): Take argument string. Call new setup and
26354 cleanup macros.
26355 (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
26356 (RUN_TEST_c_c): Take argument string. Call new setup and cleanup
26357 macros.
26358 (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
26359 (RUN_TEST_cc_c): Take argument string. Call new setup and cleanup
26360 macros.
26361 (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
26362 (RUN_TEST_f_i): Take argument string. Call new setup and cleanup
26363 macros.
26364 (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
26365 (RUN_TEST_f_i_tg): Take argument string. Call new setup and
26366 cleanup macros.
26367 (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
26368 (RUN_TEST_ff_i_tg): Take argument string. Call new setup and
26369 cleanup macros.
26370 (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
26371 (RUN_TEST_f_b): Take argument string. Call new setup and cleanup
26372 macros.
26373 (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
26374 (RUN_TEST_f_b_tg): Take argument string. Call new setup and
26375 cleanup macros.
26376 (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
26377 (RUN_TEST_f_l): Take argument string. Call new setup and cleanup
26378 macros.
26379 (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
26380 (RUN_TEST_f_L): Take argument string. Call new setup and cleanup
26381 macros.
26382 (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
26383 (RUN_TEST_fFF_11): Take argument string. Call new setup and
26384 cleanup macros.
26385 (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
26386
85118d4d
EBM
263872013-05-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
26388
26389 * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
26390 to _sifields.sigfault.
26391 (si_addr_lsb): Define new macro.
26392 (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
26393 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
26394 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
26395
7a44c18f
CD
263962013-05-03 Carlos O'Donell <carlos at redhat.com>
26397
26398 [BZ #15441]
26399 * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
26400 returns -1.
26401 (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
26402 null return -1.
26403 * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
26404 loading the domain.
26405
b50a7181
JM
264062013-05-22 Joseph Myers <joseph@codesourcery.com>
26407
26408 * math/gen-libm-test.pl (parse_args): Do not include expected
26409 result in test name.
26410 * sysdeps/i386/fpu/libm-test-ulps: Update test names.
26411 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
26412 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
26413 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
26414 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
26415 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26416
051063c8
SP
264172013-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
26418
3ce9e010
SP
26419 * benchtests/Makefile: Sort function entries.
26420
051063c8
SP
26421 * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
26422 tanh, asinh, acosh, atanh.
26423 * benchtests/acos-inputs: New file.
26424 * benchtests/acosh-inputs: New file.
26425 * benchtests/asin-inputs: New file.
26426 * benchtests/asinh-inputs: New file.
26427 * benchtests/atanh-inputs: New file.
26428 * benchtests/cosh-inputs: New file.
26429 * benchtests/log-inputs: New file.
26430 * benchtests/sinh-inputs: New file.
26431 * benchtests/tanh-inputs: New file.
26432
47c22455
DL
264332013-05-21 Dmitry V. Levin <ldv@altlinux.org>
26434
26435 [BZ #15339]
26436 * posix/tst-getaddrinfo4.c: New test.
26437 * posix/Makefile (tests): Add it.
26438
3d04f5db
SP
264392013-05-21 Siddhesh Poyarekar <siddhesh@redhat.com>
26440
26441 [BZ #15339]
26442 * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
26443 when no services were used.
26444 * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
26445 Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
26446
d5dd6189
AS
264472013-05-21 Andreas Schwab <schwab@suse.de>
26448
26449 [BZ #15014]
26450 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
26451 [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
26452 successful.
26453 * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
26454 redundant variable declarations and reallocation of buffer when
26455 parsing as IPv6 address. Always set NSS status when called from
26456 reentrant functions. Use NETDB_INTERNAL instead of TRY_AGAIN when
26457 buffer too small. Correct computation of needed size.
26458 * nss/Makefile (tests): Add test-digits-dots.
26459 * nss/test-digits-dots.c: New test.
26460
fef94eab
SP
264612013-05-21 Siddhesh Poyarekar <siddhesh@redhat.com>
26462
26463 * benchtests/Makefile: Remove instructions for adding
26464 benchmark tests.
26465 * benchtests/README: New file to explain how to execute and
26466 enhance the benchmark tests.
26467
e39adf43
AS
264682013-05-21 Andreas Schwab <schwab@suse.de>
26469
26470 [BZ #15493]
26471 * setjmp/Makefile (tests): Add tst-sigsetjmp.
26472 * setjmp/tst-sigsetjmp.c: New test.
26473
b2b671b6
OB
264742013-05-20 Ondřej Bílka <neleai@seznam.cz>
26475
26476 * sysdeps/x86_64/memset.S (memset): New implementation.
26477 (__bzero): Likewise.
26478 (__memset_tail): New function.
26479
2d48b41c
OB
264802013-05-20 Ondřej Bílka <neleai@seznam.cz>
26481
26482 * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
26483 * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
26484 __memcpy_sse2_unaligned ifunc selection.
26485 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
26486 Add memcpy-sse2-unaligned.S.
26487 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
26488 Add: __memcpy_sse2_unaligned.
26489
f16cc3eb
JM
264902013-05-19 Joseph Myers <joseph@codesourcery.com>
26491
3e694268
JM
26492 [BZ #15490]
26493 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
26494 math_force_eval before restoring floating-point envrionment.
26495 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
26496 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
26497 Likewise.
26498 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
26499 <math_private.h>.
26500 (__nearbyintl): Use math_force_eval before restoring
26501 floating-point environment.
26502 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
26503
db62a907
JM
26504 * math/gen-libm-test.pl (special_functions): Remove.
26505 (parse_args): Don't handle TEST_extra. Handle functions with no
26506 return value.
26507 * math/libm-test.inc (struct test_sincos_data): Replace with
26508 struct test_fFF_11_data.
26509 (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
26510 (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
26511 (sincos_test_data): Change element type to struct
26512 test_fFF_11_data. Use TEST_fFF_11 instead of TEST_extra.
26513 (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
26514 RUN_TEST_LOOP_sincos.
26515 * math/README.libm-test: Don't mention special handling of
26516 individual functions.
26517 * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
26518 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
26519 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
26520 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
26521 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
26522 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26523
f16cc3eb
JM
26524 * math/gen-libm-test.pl (get_variable): Remove function.
26525 (parse_args): Don't show pointer parameters to call in test
26526 names. Use "extra output N" in test names for extra outputs
26527 rather than naming variables.
26528
3779b5b6
JM
265292013-05-18 Joseph Myers <joseph@codesourcery.com>
26530
2ee094ff
JM
26531 [BZ #15488]
26532 * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
26533 __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
26534 * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
26535 double tests.
26536 * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
26537 disable.
26538 (do_test) [NO_LONG_DOUBLE]: Do not disable call to
26539 check_long_double.
26540
3779b5b6
JM
26541 * math/gen-libm-test.pl (@tests): Remove variable.
26542 ($count): Likewise.
26543 (new_test): Remove function.
26544 (show_exceptions): New function.
26545 (special_functions): Use show_exceptions instead of new_test.
26546 (parse_args): Likewise.
26547 (generate_testfile): Pass only function name in generated call to
26548 print_max_error or print_complex_max_error.
26549 (get_ulps): Do not handle complex tests specially.
26550 (output_test): Rename to ...
26551 (get_all_ulps_for_test): ... this. Return a string rather than
26552 printing to a file. Require ulps to be present.
26553 (output_ulps): Generate arrays rather than #defines.
26554 * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
26555 (struct ulp_data): New type.
26556 (BUILD_COMPLEX_ULP): Remove macro.
26557 (compare_ulp_data): New function.
26558 (find_ulps): Likewise.
26559 (find_test_ulps): Likewise.
26560 (find_function_ulps): Likewise.
26561 (find_complex_function_ulps): Likewise.
26562 (print_max_error): Determine allowed ulps using
26563 find_function_ulps.
26564 (print_complex_max_error): Determine allowed ulps using
26565 find_complex_function_ulps.
26566 (check_float_internal): Determine max ulps using find_test_ulps.
26567 (check_float): Do not take max_ulp parameter. Update call to
26568 check_float_internal.
26569 (check_complex): Likewise.
26570 (check_int): Do not take max_ulp parameter.
26571 (check_long): Likewise.
26572 (check_bool): Likewise.
26573 (check_longlong): Likewise.
26574 (struct test_f_f_data): Remove max_ulp field.
26575 (struct test_ff_f_data): Likewise.
26576 (struct test_ff_f_data_nexttoward): Likewise.
26577 (struct test_fi_f_data): Likewise.
26578 (struct test_fl_f_data): Likewise.
26579 (struct test_if_f_data): Likewise.
26580 (struct test_fff_f_data): Likewise.
26581 (struct test_c_f_data): Likewise.
26582 (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
26583 (struct test_fF_f1_data): Likewise.
26584 (struct test_ffI_f1_data): Likewise.
26585 (struct test_c_c_data): Remove max_ulp field.
26586 (struct test_cc_c_data): Likewise.
26587 (struct test_f_i_data): Likewise.
26588 (struct test_ff_i_data): Likewise.
26589 (struct test_f_l_data): Likewise.
26590 (struct test_f_L_data): Likewise.
26591 (struct test_sincos_data): Likewise.
26592 (RUN_TEST_f_f): Do not handle ulps.
26593 (RUN_TEST_LOOP_f_f): Likewise.
26594 (RUN_TEST_2_f): Likewise.
26595 (RUN_TEST_LOOP_2_f): Likewise.
26596 (RUN_TEST_fff_f): Likewise.
26597 (RUN_TEST_LOOP_fff_f): Likewise.
26598 (RUN_TEST_c_f): Likewise.
26599 (RUN_TEST_LOOP_c_f): Likewise.
26600 (RUN_TEST_f_f1): Likewise.
26601 (RUN_TEST_LOOP_f_f1): Likewise.
26602 (RUN_TEST_fF_f1): Likewise.
26603 (RUN_TEST_LOOP_fF_f1): Likewise.
26604 (RUN_TEST_fI_f1): Likewise.
26605 (RUN_TEST_LOOP_fI_f1): Likewise.
26606 (RUN_TEST_ffI_f1): Likewise.
26607 (RUN_TEST_LOOP_ffI_f1): Likewise.
26608 (RUN_TEST_c_c): Likewise.
26609 (RUN_TEST_LOOP_c_c): Likewise.
26610 (RUN_TEST_cc_c): Likewise.
26611 (RUN_TEST_LOOP_cc_c): Likewise.
26612 (RUN_TEST_f_i): Likewise.
26613 (RUN_TEST_LOOP_f_i): Likewise.
26614 (RUN_TEST_f_i_tg): Likewise.
26615 (RUN_TEST_LOOP_f_i_tg): Likewise.
26616 (RUN_TEST_ff_i_tg): Likewise.
26617 (RUN_TEST_LOOP_ff_i_tg): Likewise.
26618 (RUN_TEST_f_b): Likewise.
26619 (RUN_TEST_LOOP_f_b): Likewise.
26620 (RUN_TEST_f_b_tg): Likewise.
26621 (RUN_TEST_LOOP_f_b_tg): Likewise.
26622 (RUN_TEST_f_l): Likewise.
26623 (RUN_TEST_LOOP_f_l): Likewise.
26624 (RUN_TEST_f_L): Likewise.
26625 (RUN_TEST_LOOP_f_L): Likewise.
26626 (RUN_TEST_sincos): Likewise.
26627 (RUN_TEST_LOOP_sincos): Likewise.
26628
8269107f
JM
266292013-05-17 Joseph Myers <joseph@codesourcery.com>
26630
bb38759d
JM
26631 [BZ #15480]
26632 [BZ #15485]
26633 * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
26634 main case of finite arguments, set rounding mode to FE_TONEAREST
26635 and discard exceptions.
26636 * math/libm-test.inc (remainder_test_data): Disallow "inexact"
26637 exceptions.
26638 (remainder_tonearest_test_data): New variable.
26639 (remainder_test_tonearest): New function.
26640 (remainder_towardzero_test_data): New variable.
26641 (remainder_test_towardzero): New function.
26642 (remainder_downward_test_data): New variable.
26643 (remainder_test_downward): New function.
26644 (remainder_upward_test_data): New variable.
26645 (remainder_test_upward): New function.
26646 (main): Call the new test functions.
26647
a00bdcf0
JM
26648 * math/libm-test.inc (struct test_f_f1_data): Remove field
26649 extra_init.
26650 (struct test_fF_f1_data): Likewise.
26651 (struct test_ffI_f1_data): Likewise.
26652 (RUN_TEST_f_f1): Remove argument EXTRA_INIT. Initialize EXTRA_VAR
26653 based on value of EXTRA_EXPECTED.
26654 (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
26655 (RUN_TEST_fF_f1): Remove argument EXTRA_INIT. Initialize
26656 EXTRA_VAR based on value of EXTRA_EXPECTED.
26657 (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
26658 (RUN_TEST_fI_f1): Remove argument EXTRA_INIT. Initialize
26659 EXTRA_VAR based on value of EXTRA_EXPECTED.
26660 (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
26661 (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT. Initialize
26662 EXTRA_VAR based on value of EXTRA_EXPECTED.
26663 (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
26664 * math/gen-libm-test.pl (parse_args): Don't output initializers
26665 for extra output values.
26666
de407f79
JM
26667 * math/libm-test.inc (check_int): Expect result to be exactly
26668 equal to expected value and do not handle ulps.
26669 (check_long): Likewise.
26670 (check_longlong): Likewise.
26671
8269107f
JM
26672 * math/libm-test.inc (ceil_test_data): Test for "inexact"
26673 exceptions.
26674 (cimag_test_data): Likewise.
26675 (conj_test_data): Likewise.
26676 (copysign_test_data): Likewise.
26677 (cproj_test_data): Likewise.
26678 (creal_test_data): Likewise.
26679 (fabs_test_data): Likewise.
26680 (fdim_test_data): Likewise.
26681 (finite_test_data): Likewise.
26682 (floor_test_data): Likewise.
26683 (fmax_test_data): Likewise.
26684 (fmin_test_data): Likewise.
26685 (fmod_test_data): Likewise.
26686 (fpclassify_test_data): Likewise.
26687 (frexp_test_data): Likewise.
26688 (ilogb_test_data): Likewise.
26689 (isfinite_test_data): Likewise.
26690 (isgreater_test_data): Likewise.
26691 (isgreaterequal_test_data): Likewise.
26692 (isinf_test_data): Likewise.
26693 (isless_test_data): Likewise.
26694 (islessequal_test_data): Likewise.
26695 (islessgreater_test_data): Likewise.
26696 (isnan_test_data): Likewise.
26697 (isnormal_test_data): Likewise.
26698 (issignaling_test_data): Likewise.
26699 (isunordered_test_data): Likewise.
26700 (ldexp_test_data): Likewise.
26701 (lrint_test_data): Likewise.
26702 (lrint_test_data) [TEST_FLOAT]: Disable one test.
26703 (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
26704 (lrint_tonearest_test_data): Test for "inexact" exceptions.
26705 (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
26706 (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
26707 (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
26708 test input.
26709 (lrint_towardzero_test_data): Test for "inexact" exceptions.
26710 (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
26711 (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
26712 (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
26713 that test input.
26714 (lrint_downward_test_data): Test for "inexact" exceptions.
26715 (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
26716 (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
26717 (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
26718 test input.
26719 (lrint_upward_test_data): Test for "inexact" exceptions.
26720 (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
26721 test input.
26722 (llrint_test_data): Test for "inexact" exceptions.
26723 (llrint_test_data) [TEST_FLOAT]: Disable one test.
26724 (llrint_tonearest_test_data): Test for "inexact" exceptions.
26725 (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
26726 (llrint_towardzero_test_data): Test for "inexact" exceptions.
26727 (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
26728 (llrint_downward_test_data): Test for "inexact" exceptions.
26729 (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
26730 (llrint_upward_test_data): Test for "inexact" exceptions.
26731 (logb_test_data): Likewise.
26732 (logb_downward_test_data): Likewise.
26733 (nextafter_test_data): Likewise.
26734 (nexttoward_test_data): Likewise.
26735 (remainder_test_data): Likewise.
26736 (remquo_test_data): Likewise.
26737 (scalbn_test_data): Likewise.
26738 (scalbln_test_data): Likewise.
26739 (signbit_test_data): Likewise.
26740 (sqrt_test_data): Likewise.
26741 (significand_test_data): Likewise.
26742
48a18de1
SP
267432013-05-17 Siddhesh Poyarekar <siddhesh@redhat.com>
26744
26745 [BZ #15424]
26746 * benchtests/bench-modf.c (struct args): Mark arg0 as
26747 volatile.
26748 * scripts/bench.pl: Mark members of struct args as volatile.
26749
13d3b41a
AZ
267502013-05-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26751
68191c1d 26752 [BZ # 15497]
13d3b41a
AZ
26753 * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
26754 negative infinity on POWER6 or lower.
26755 * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
26756
2848b105
MR
267572013-05-16 Maciej W. Rozycki <macro@codesourcery.com>
26758
26759 [BZ #15442]
26760 * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
26761 (_FP_FRAC_SNANP_SEMIRAW): Likewise.
26762 (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
26763 (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
26764 (_FP_SETQNAN): New macro.
26765 (_FP_SETQNAN_SEMIRAW): Likewise.
26766 (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
26767 (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
26768 (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
26769 (FP_EXTEND): Use _FP_FRAC_SNANP.
26770 (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
26771 * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
26772 into account.
26773 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
26774 New macro.
26775 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
26776 Likewise.
26777
323e5cb7
JM
267782013-05-16 Joseph Myers <joseph@codesourcery.com>
26779
c58b274f
JM
26780 * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
26781 with DIVIDE_BY_ZERO_EXCEPTION.
26782 (gamma_test_data): Likewise.
26783 (lgamma_test_data): Likewise.
26784 (log_test_data): Likewise.
26785 (log10_test_data): Likewise.
26786 (log2_test_data): Likewise.
26787 (tgamma_test_data): Likewise.
26788
0ab34904
JM
26789 * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
26790 (acos_test_tonearest): Likewise.
26791 (acos_test_towardzero): Likewise.
26792 (acos_test_downward): Likewise.
26793 (acos_test_upward): Likewise.
26794 (acosh_test): Likewise.
26795 (asin_test): Likewise.
26796 (asin_test_tonearest): Likewise.
26797 (asin_test_towardzero): Likewise.
26798 (asin_test_downward): Likewise.
26799 (asin_test_upward): Likewise.
26800 (asinh_test): Likewise.
26801 (atan_test): Likewise.
26802 (atanh_test): Likewise.
26803 (atan2_test): Likewise.
26804 (cabs_test): Likewise.
26805 (cacos_test): Likewise.
26806 (cacosh_test): Likewise.
26807 (casin_test): Likewise.
26808 (casinh_test): Likewise.
26809 (catan_test): Likewise.
26810 (catanh_test): Likewise.
26811 (cbrt_test): Likewise.
26812 (ccos_test): Likewise.
26813 (ccosh_test): Likewise.
26814 (cexp_test): Likewise.
26815 (clog_test): Likewise.
26816 (clog10_test): Likewise.
26817 (cos_test): Likewise.
26818 (cos_test_tonearest): Likewise.
26819 (cos_test_towardzero): Likewise.
26820 (cos_test_downward): Likewise.
26821 (cos_test_upward): Likewise.
26822 (cosh_test): Likewise.
26823 (cosh_test_tonearest): Likewise.
26824 (cosh_test_towardzero): Likewise.
26825 (cosh_test_downward): Likewise.
26826 (cosh_test_upward): Likewise.
26827 (cpow_test): Likewise.
26828 (csin_test): Likewise.
26829 (csinh_test): Likewise.
26830 (csqrt_test): Likewise.
26831 (ctan_test): Likewise.
26832 (ctan_test_tonearest): Likewise.
26833 (ctan_test_towardzero): Likewise.
26834 (ctan_test_downward): Likewise.
26835 (ctan_test_upward): Likewise.
26836 (ctanh_test): Likewise.
26837 (ctanh_test_tonearest): Likewise.
26838 (ctanh_test_towardzero): Likewise.
26839 (ctanh_test_downward): Likewise.
26840 (ctanh_test_upward): Likewise.
26841 (erf_test): Likewise.
26842 (erfc_test): Likewise.
26843 (exp_test): Likewise.
26844 (exp_test_tonearest): Likewise.
26845 (exp_test_towardzero): Likewise.
26846 (exp_test_downward): Likewise.
26847 (exp_test_upward): Likewise.
26848 (exp10_test): Likewise.
26849 (exp2_test): Likewise.
26850 (expm1_test): Likewise.
26851 (fmod_test): Likewise.
26852 (gamma_test): Likewise.
26853 (hypot_test): Likewise.
26854 (j0_test): Likewise.
26855 (j1_test): Likewise.
26856 (jn_test): Likewise.
26857 (lgamma_test): Likewise.
26858 (log_test): Likewise.
26859 (log10_test): Likewise.
26860 (log1p_test): Likewise.
26861 (log2_test): Likewise.
26862 (logb_test_downward): Likewise.
26863 (pow_test): Likewise.
26864 (pow_test_tonearest): Likewise.
26865 (pow_test_towardzero): Likewise.
26866 (pow_test_downward): Likewise.
26867 (pow_test_upward): Likewise.
26868 (remainder_test): Likewise.
26869 (remquo_test): Likewise.
26870 (sin_test): Likewise.
26871 (sin_test_tonearest): Likewise.
26872 (sin_test_towardzero): Likewise.
26873 (sin_test_downward): Likewise.
26874 (sin_test_upward): Likewise.
26875 (sincos_test): Likewise.
26876 (sinh_test): Likewise.
26877 (sinh_test_tonearest): Likewise.
26878 (sinh_test_towardzero): Likewise.
26879 (sinh_test_downward): Likewise.
26880 (sinh_test_upward): Likewise.
26881 (sqrt_test): Likewise.
26882 (tan_test): Likewise.
26883 (tan_test_tonearest): Likewise.
26884 (tan_test_towardzero): Likewise.
26885 (tan_test_downward): Likewise.
26886 (tan_test_upward): Likewise.
26887 (tanh_test): Likewise.
26888 (tgamma_test): Likewise.
26889 (y0_test): Likewise.
26890 (y1_test): Likewise.
26891 (yn_test): Likewise.
26892
323e5cb7
JM
26893 * math/gen-libm-test.pl (adjust_arg): Remove function.
26894 (special_function): Remove argument $in_func. Only handle
26895 generating output for tables of tests, not inside functions.
26896 (parse_args): Likewise.
26897 (generate_testfile): Remove variable $in_func. Update call to
26898 parse_args.
26899 * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
26900 (MINUS_ZERO_INIT): Rename macro to minus_zero.
26901 (PLUS_INFTY_INIT): Rename macro to plus_infty.
26902 (MINUS_INFTY_INIT): Rename macro to minus_infty.
26903 (QNAN_VALUE_INIT): Rename macro to qnan_value.
26904 (MAX_VALUE_INIT): Rename macro to max_value.
26905 (MIN_VALUE_INIT): Rename macro to min_value.
26906 (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
26907 (plus_zero): Remove variable.
26908 (minus_zero): Likewise.
26909 (plus_infty): Likewise.
26910 (minus_infty): Likewise.
26911 (qnan_value): Likewise.
26912 (max_value): Likewise.
26913 (min_value): Likewise.
26914 (min_subnorm_value): Likewise.
26915
e054f494
RA
269162013-05-16 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
26917
26918 * crypt/sha512-block.c: Add missing #include <stdint.h> due to
26919 uint64_t or uint32_t usage.
26920 * crypt/sha256-block.c: Likewise.
26921 * crypt/sha256-crypt.c: Likewise.
26922 * crypt/sha256.c: Likewise.
26923 * crypt/sha512-block.c: Likewise.
26924 * crypt/sha512-crypt.c: Likewise.
26925 * crypt/sha512.c: Likewise.
26926 * debug/backtrace-tst.c: Likewise.
26927 * debug/pcprofiledump.c: Likewise.
26928 * elf/cache.c: Likewise.
26929 * elf/dl-cache.c: Likewise.
26930 * elf/dl-misc.c: Likewise.
26931 * elf/dl-profile.c: Likewise.
26932 * elf/dl-support.c: Likewise.
26933 * elf/ldconfig.c: Likewise.
26934 * elf/sprof.c: Likewise.
26935 * iconv/dummy-repertoire.c: Likewise.
26936 * iconv/iconv_charmap.c: Likewise.
26937 * iconv/skeleton.c: Likewise.
26938 * iconvdata/8bit-generic.c: Likewise.
26939 * iconvdata/cp737.h: Likewise.
26940 * iconvdata/cp775.h: Likewise.
26941 * iconvdata/ibm1008.h: Likewise.
26942 * iconvdata/ibm1025.h: Likewise.
26943 * iconvdata/ibm1046.h: Likewise.
26944 * iconvdata/ibm1097.h: Likewise.
26945 * iconvdata/ibm1112.h: Likewise.
26946 * iconvdata/ibm1122.h: Likewise.
26947 * iconvdata/ibm1123.h: Likewise.
26948 * iconvdata/ibm1124.h: Likewise.
26949 * iconvdata/ibm1129.h: Likewise.
26950 * iconvdata/ibm1130.h: Likewise.
26951 * iconvdata/ibm1132.h: Likewise.
26952 * iconvdata/ibm1133.h: Likewise.
26953 * iconvdata/ibm1137.h: Likewise.
26954 * iconvdata/ibm1140.h: Likewise.
26955 * iconvdata/ibm1141.h: Likewise.
26956 * iconvdata/ibm1142.h: Likewise.
26957 * iconvdata/ibm1143.h: Likewise.
26958 * iconvdata/ibm1144.h: Likewise.
26959 * iconvdata/ibm1145.h: Likewise.
26960 * iconvdata/ibm1146.h: Likewise.
26961 * iconvdata/ibm1147.h: Likewise.
26962 * iconvdata/ibm1148.h: Likewise.
26963 * iconvdata/ibm1149.h: Likewise.
26964 * iconvdata/ibm1153.h: Likewise.
26965 * iconvdata/ibm1154.h: Likewise.
26966 * iconvdata/ibm1155.h: Likewise.
26967 * iconvdata/ibm1156.h: Likewise.
26968 * iconvdata/ibm1157.h: Likewise.
26969 * iconvdata/ibm1158.h: Likewise.
26970 * iconvdata/ibm1160.h: Likewise.
26971 * iconvdata/ibm1161.h: Likewise.
26972 * iconvdata/ibm1162.h: Likewise.
26973 * iconvdata/ibm1163.h: Likewise.
26974 * iconvdata/ibm1164.h: Likewise.
26975 * iconvdata/ibm1166.h: Likewise.
26976 * iconvdata/ibm1167.h: Likewise.
26977 * iconvdata/ibm12712.h: Likewise.
26978 * iconvdata/ibm1390.h: Likewise.
26979 * iconvdata/ibm1399.h: Likewise.
26980 * iconvdata/ibm16804.h: Likewise.
26981 * iconvdata/ibm4517.h: Likewise.
26982 * iconvdata/ibm4899.h: Likewise.
26983 * iconvdata/ibm4909.h: Likewise.
26984 * iconvdata/ibm4971.h: Likewise.
26985 * iconvdata/ibm5347.h: Likewise.
26986 * iconvdata/ibm803.h: Likewise.
26987 * iconvdata/ibm856.h: Likewise.
26988 * iconvdata/ibm901.h: Likewise.
26989 * iconvdata/ibm902.h: Likewise.
26990 * iconvdata/ibm9030.h: Likewise.
26991 * iconvdata/ibm9066.h: Likewise.
26992 * iconvdata/ibm921.h: Likewise.
26993 * iconvdata/ibm922.h: Likewise.
26994 * iconvdata/ibm9448.h: Likewise.
26995 * iconvdata/isiri-3342.h: Likewise.
26996 * iconvdata/jis0201.h: Likewise.
26997 * include/link.h: Likewise.
26998 * include/netdb.h: Likewise.
26999 * inet/check_native.c: Likewise.
27000 * inet/check_pf.c: Likewise.
27001 * inet/getipv4sourcefilter.c: Likewise.
27002 * inet/getnameinfo.c: Likewise.
27003 * inet/getsourcefilter.c: Likewise.
27004 * inet/htonl.c: Likewise.
27005 * inet/setipv4sourcefilter.c: Likewise.
27006 * inet/setsourcefilter.c: Likewise.
27007 * inet/test-inet6_opt.c: Likewise.
27008 * inet/tst-network.c: Likewise.
27009 * locale/C-collate.c: Likewise.
27010 * locale/C-ctype.c: Likewise.
27011 * locale/C-time.c: Likewise.
27012 * locale/C-translit.h: Likewise.
27013 * locale/loadarchive.c: Likewise.
27014 * locale/programs/3level.h: Likewise.
27015 * locale/programs/charmap.c: Likewise.
27016 * locale/programs/charmap.h: Likewise.
27017 * locale/programs/ld-address.c: Likewise.
27018 * locale/programs/ld-collate.c: Likewise.
27019 * locale/programs/ld-ctype.c: Likewise.
27020 * locale/programs/ld-identification.c: Likewise.
27021 * locale/programs/ld-measurement.c: Likewise.
27022 * locale/programs/ld-messages.c: Likewise.
27023 * locale/programs/ld-monetary.c: Likewise.
27024 * locale/programs/ld-name.c: Likewise.
27025 * locale/programs/ld-numeric.c: Likewise.
27026 * locale/programs/ld-paper.c: Likewise.
27027 * locale/programs/ld-telephone.c: Likewise.
27028 * locale/programs/ld-time.c: Likewise.
27029 * locale/programs/linereader.c: Likewise.
27030 * locale/programs/locale.c: Likewise.
27031 * locale/programs/locarchive.c: Likewise.
27032 * locale/programs/locfile.h: Likewise.
27033 * locale/programs/repertoire.c: Likewise.
27034 * locale/programs/simple-hash.c: Likewise.
27035 * locale/programs/simple-hash.h: Likewise.
27036 * malloc/memusage.c: Likewise.
27037 * malloc/memusagestat.c: Likewise.
27038 * nis/nis_defaults.c: Likewise.
27039 * nis/nis_hash.c: Likewise.
27040 * nis/nis_print.c: Likewise.
27041 * nis/nis_xdr.c: Likewise.
27042 * nscd/connections.c: Likewise.
27043 * nscd/hstcache.c: Likewise.
27044 * nscd/nscd_gethst_r.c: Likewise.
27045 * nscd/nscd_getserv_r.c: Likewise.
27046 * nscd/nscd_helper.c: Likewise.
27047 * nscd/servicescache.c: Likewise.
27048 * nss/makedb.c: Likewise.
27049 * nss/nss_db/db-XXX.c: Likewise.
27050 * nss/nss_db/db-initgroups.c: Likewise.
27051 * nss/nss_db/db-netgrp.c: Likewise.
27052 * nss/nss_files/files-network.c: Likewise.
27053 * nss/nss_files/files-parse.c: Likewise.
27054 * posix/bug-regex5.c: Likewise.
27055 * posix/fnmatch_loop.c: Likewise.
27056 * posix/regcomp.c: Likewise.
27057 * posix/regexec.c: Likewise.
27058 * posix/tst-rfc3484-2.c: Likewise.
27059 * posix/tst-rfc3484-3.c: Likewise.
27060 * posix/tst-rfc3484.c: Likewise.
27061 * resolv/nss_dns/dns-canon.c: Likewise.
27062 * resolv/nss_dns/dns-network.c: Likewise.
27063 * resolv/res_init.c: Likewise.
27064 * resolv/res_mkquery.c: Likewise.
27065 * resolv/tst-aton.c: Likewise.
27066 * stdlib/cxa_atexit.c: Likewise.
27067 * stdlib/cxa_finalize.c: Likewise.
27068 * stdlib/gen-fpioconst.c: Likewise.
27069 * stdlib/strtol_l.c: Likewise.
27070 * string/tst-endian.c: Likewise.
27071 * sunrpc/auth_des.c: Likewise.
27072 * sunrpc/clnt_udp.c: Likewise.
27073 * sunrpc/rtime.c: Likewise.
27074 * sunrpc/svcauth_des.c: Likewise.
27075 * sunrpc/xdr.c: Likewise.
27076 * sunrpc/xdr_intXX_t.c: Likewise.
27077 * sunrpc/xdr_rec.c: Likewise.
27078 * sysdeps/generic/ldconfig.h: Likewise.
27079 * sysdeps/generic/ldsodefs.h: Likewise.
27080 * sysdeps/generic/memusage.h: Likewise.
27081 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
27082 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
27083 * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
27084 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
27085 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
27086 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
27087 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
27088 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
27089 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
27090 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
27091 * sysdeps/posix/getaddrinfo.c: Likewise.
27092 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
27093 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
27094 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
27095 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
27096 * sysdeps/powerpc/test-gettimebase.c: Likewise.
27097 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
27098 * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
27099 * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
27100 * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
27101 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
27102 * sysdeps/unix/sysv/linux/preadv.c: Likewise.
27103 * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
27104 * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
27105 * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
27106 * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
27107 * sysdeps/x86_64/dl-tls.h: Likewise.
27108 * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
27109 * time/alt_digit.c: Likewise.
27110 * time/era.c: Likewise.
27111 * wcsmbs/tst-c16c32-1.c: Likewise.
27112
8c75f674
JM
271132013-05-16 Joseph Myers <joseph@codesourcery.com>
27114
27115 * math/libm-test.inc (struct test_sincos_data): New type.
27116 (RUN_TEST_LOOP_sincos): New macro.
27117 (sincos_test_data): New variable.
27118 (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
27119
e6e49e59
RH
271202013-05-16 Richard Henderson <rth@redhat.com>
27121
27122 * math/atest-exp2.c (LIMB64): New macro.
27123 (CONSTSZ): New macro.
27124 (mp_exp1, mp_exp_m1, mp_log2): New variables.
27125 (hexdig): Move ...
27126 (print_mpn_fp): ... to function scope.
27127 (read_mpn_hex): Remove.
27128 (get_log2): Remove.
27129 (exp2_mpn): Use mp_log2.
27130 (main): Use mp_exp1.
27131
15c7c18d
JM
271322013-05-16 Joseph Myers <joseph@codesourcery.com>
27133
105a07df
JM
27134 * math/libm-test.inc: Remove comment about not testing "inexact"
27135 exceptions.
27136 (INEXACT_EXCEPTION): New macro.
27137 (NO_INEXACT_EXCEPTION): Likewise.
27138 (INVALID_EXCEPTION_OK): Update value.
27139 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
27140 (OVERFLOW_EXCEPTION_OK): Likewise.
27141 (UNDERFLOW_EXCEPTION_OK): Likewise.
27142 (IGNORE_ZERO_INF_SIGN): Likewise.
27143 (ERRNO_UNCHANGED): Likewise.
27144 (ERRNO_EDOM): Likewise.
27145 (ERRNO_ERANGE): Likewise.
27146 (test_exceptions): Handle testing "inexact" exceptions.
27147 (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
27148 (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
27149 (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
27150 (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
27151 INEXACT_EXCEPTION.
27152 (rint_towardzero_test_data): Likewise.
27153 (rint_downward_test_data): Likewise.
27154 (rint_upward_test_data): Likewise.
27155
e9eee333
JM
27156 * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
27157 with OVERFLOW_EXCEPTION.
27158 (exp10_test_data): Likewise.
27159 (exp2_test_data): Likewise.
27160 (expm1_test_data): Likewise.
27161 (lgamma_test_data): Likewise.
27162 (pow_test_data): Likewise.
27163 (tgamma_test_data): Likewise.
27164 (yn_test_data): Remove duplicate test of overflow.
27165
1c38ff73
JM
27166 * math/libm-test.inc (struct test_cc_c_data): New type.
27167 (RUN_TEST_LOOP_cc_c): New macro.
27168 (cpow_test_data): New variable.
27169 (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
27170
15c7c18d
JM
27171 * math/libm-test.inc (struct test_f_L_data): New type.
27172 (RUN_TEST_LOOP_f_L): New macro.
27173 (llrint_test_data): New variable.
27174 (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
27175 (llrint_tonearest_test_data): New variable.
27176 (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
27177 (llrint_towardzero_test_data): New variable.
27178 (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
27179 (llrint_downward_test_data): New variable.
27180 (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
27181 (llrint_upward_test_data): New variable.
27182 (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
27183 (llround_test_data): New variable.
27184 (llround_test): Run tests with RUN_TEST_LOOP_f_L.
27185
f137ff13
PC
271862013-05-13 Peter Collingbourne <pcc@google.com>
27187
27188 * math/atest-exp2.c (get_log2): Remove const attribute.
27189
3608cb24
JM
271902013-05-15 Joseph Myers <joseph@codesourcery.com>
27191
27192 * math/libm-test.inc (struct test_f_l_data): New type.
27193 (RUN_TEST_LOOP_f_l): New macro.
27194 (lrint_test_data): New variable.
27195 (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
27196 (lrint_tonearest_test_data): New variable.
27197 (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
27198 (lrint_towardzero_test_data): New variable.
27199 (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
27200 (lrint_downward_test_data): New variable.
27201 (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
27202 (lrint_upward_test_data): New variable.
27203 (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
27204 (lround_test_data): New variable.
27205 (lround_test): Run tests with RUN_TEST_LOOP_f_l.
27206
39b1f617
PC
272072013-05-15 Peter Collingbourne <pcc@google.com>
27208
1deff3dc
PC
27209 * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
27210 (EXTRACT_WORDS64) Use where appropriate.
27211 (INSERT_WORDS64) Likewise.
27212
791f3ba0
PC
27213 * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
27214 constraints with x constraints.
27215 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
27216
39b1f617
PC
27217 * malloc/obstack.c (_obstack_compat): Add initializer.
27218
12fba011
EM
272192013-05-15 Edjunior Machado <emachado@linux.vnet.ibm.com>
27220
27221 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
27222 si_trapno and add si_addr_lsb to _sifields.sigfault.
27223 (si_trapno): Remove macro.
27224 (si_addr_lsb): Define new macro.
27225 (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
27226
d369f531
JM
272272013-05-15 Joseph Myers <joseph@codesourcery.com>
27228
b861c6c4
JM
27229 * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
27230 instead of TEST_f_l.
27231 (llrint_test_tonearest): Likewise.
27232 (llrint_test_towardzero): Likewise.
27233 (llrint_test_downward): Likewise.
27234 (llrint_test_upward): Likewise.
27235 (llround_test): Likewise.
27236
7abeee12
JM
27237 * math/libm-test.inc (struct test_f_i_data): Add comment.
27238 (RUN_TEST_LOOP_f_b): New macro.
27239 (RUN_TEST_LOOP_f_b_tg): Likewise.
27240 (finite_test_data): New variable.
27241 (finite_test): Run tests with RUN_TEST_LOOP_f_b.
27242 (isfinite_test_data): New variable.
27243 (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27244 (isinf_test_data): New variable.
27245 (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27246 (isnan_test_data): New variable.
27247 (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27248 (isnormal_test_data): New variable.
27249 (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27250 (issignaling_test_data): New variable.
27251 (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27252 (signbit_test_data): New variable.
27253 (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
27254
cbe8c4d3
JM
27255 * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
27256 with INVALID_EXCEPTION.
27257 (acosh_test_data): Likewise.
27258 (asin_test_data): Likewise.
27259 (atanh_test_data): Likewise.
27260 (fmod_test_data): Likewise.
27261 (log_test_data): Likewise.
27262 (log10_test_data): Likewise.
27263 (log2_test_data): Likewise.
27264 (pow_test_data): Likewise.
27265 (sqrt_test_data): Likewise.
27266 (y0_test_data): Likewise.
27267 (y1_test_data): Likewise.
27268 (yn_test_data): Likewise.
27269
5575c0e5
JM
27270 * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
27271 function contents.
27272
d369f531
JM
27273 * math/libm-test.inc (struct test_ff_i_data): New type.
27274 (RUN_TEST_LOOP_ff_i_tg): New macro.
27275 (isgreater_test_data): New variable.
27276 (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27277 (isgreaterequal_test_data): New variable.
27278 (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27279 (isless_test_data): New variable.
27280 (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27281 (islessequal_test_data): New variable.
27282 (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27283 (islessgreater_test_data): New variable.
27284 (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27285 (isunordered_test_data): New variable.
27286 (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
27287
781fd748
DM
272882013-05-14 David S. Miller <davem@davemloft.net>
27289
27290 * sysdeps/sparc/fpu/libm-test-ulps: Update.
27291
87aa21df
JM
272922013-05-14 Joseph Myers <joseph@codesourcery.com>
27293
5e908270
JM
27294 * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
27295
f71172e5
JM
27296 * math/libm-test.inc (struct test_fF_f1_data): Change type of
27297 extra_test to int.
27298 (struct test_f_i_data): Change type of max_ulp to int.
27299
8cfa635a
JM
27300 * math/libm-test.inc (test_ffI_f1_data): New type.
27301 (RUN_TEST_LOOP_ffI_f1): New macro.
27302 (remquo_test_data): New variable.
27303 (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
27304
2bcb36b2
JM
27305 * setjmp/tst-setjmp-fp.c: New file.
27306 * setjmp/Makefile (tests): Add tst-setjmp-fp.
27307 (link-libm): New variable.
27308 ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
27309
acbd839a
JM
27310 * math/libm-test.inc (struct test_f_i_data): New type.
27311 (RUN_TEST_LOOP_f_i): New macro.
27312 (RUN_TEST_LOOP_f_i_tg): Likewise.
27313 (fpclassify_test_data): New variable.
27314 (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
27315 (ilogb_test_data): New variable.
27316 (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
27317
e414d745
JM
27318 * math/libm-test.inc (scalbln_test): Correct function name in END
27319 call.
27320
d9c2a0fd
JM
27321 * math/libm-test.inc (struct test_f_f1_data): Add comment.
27322 (RUN_TEST_LOOP_fI_f1): New macro.
27323 (frexp_test_data): New variable.
27324 (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
27325
9dc9095d
JM
27326 * math/libm-test.inc (struct test_fF_f1_data): New type.
27327 (RUN_TEST_LOOP_fF_f1): New macro.
27328 (modf_test_data): New variable.
27329 (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
27330
87aa21df
JM
27331 * math/libm-test.inc (struct test_f_f1_data): New type.
27332 (RUN_TEST_LOOP_f_f1): New macro.
27333 (gamma_test_data): New variable.
27334 (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
27335 (lgamma_test_data): New variable.
27336 (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
27337
141af660
CD
273382013-05-13 Carlos O'Donell <carlos@redhat.com>
27339
27340 * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
27341 * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
27342 (main): Comment "tls" pseudo-hwcap.
27343
6d33265c
JM
273442013-05-13 Joseph Myers <joseph@codesourcery.com>
27345
68fc074c
JM
27346 * math/libm-test.inc (struct test_fl_f_data): New type.
27347 (RUN_TEST_LOOP_fl_f): New variable.
27348 (scalbln_test_data): New variable.
27349 (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
27350
243216e1
JM
27351 * math/libm-test.inc (struct test_fi_f_data): New type.
27352 (RUN_TEST_LOOP_fi_f): New macro.
27353 (ldexp_test_data): New variable.
27354 (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
27355 (scalbn_test_data): New variable.
27356 (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
27357
6a1992e2
JM
27358 * math/libm-test.inc (struct test_c_f_data): New type.
27359 (RUN_TEST_LOOP_c_f): New macro.
27360 (cabs_test_data): New variable.
27361 (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
27362 (carg_test_data): New variable.
27363 (carg_test): Run tests with RUN_TEST_LOOP_c_f.
27364 (cimag_test_data): New variable.
27365 (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
27366 (creal_test_data): New variable.
27367 (creal_test): Run tests with RUN_TEST_LOOP_c_f.
27368
0e400df5
JM
27369 * math/libm-test.inc (struct test_if_f_data): New type.
27370 (RUN_TEST_LOOP_if_f): New macro.
27371 (jn_test_data): New variable.
27372 (jn_test): Run tests with RUN_TEST_LOOP_if_f.
27373 (yn_test_data): New variable.
27374 (yn_test): Run tests with RUN_TEST_LOOP_if_f.
27375
6d33265c
JM
27376 * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
27377
f98ece5f
AZ
273782013-05-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
27379
27380 * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
27381 (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
27382
0f7d347b
SP
273832013-05-13 Siddhesh Poyarekar <siddhesh@redhat.com>
27384
43fe811b
SP
27385 * benchtests/Makefile (CPPFLAGS-nonlib): Add
27386 -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
27387 (bench-deps): Add bench-timing.h.
27388 * benchtests-bench-skeleton.c: Include bench-timing.h.
27389 (main): Use TIMING_* macros instead of clock_gettime.
27390 * benchtests/bench-timing.h: New file.
27391
0f7d347b
SP
27392 [BZ #14582]
27393 * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
27394 Renamed from _LIB_VERSION.
27395 (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
27396
601a3a5f
JM
273972013-05-12 Joseph Myers <joseph@codesourcery.com>
27398
4f184d30
JM
27399 * math/libm-test.inc (struct test_fff_f_data): New type.
27400 (RUN_TEST_LOOP_fff_f): New macro.
27401 (fma_test_data): New variable.
27402 (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
27403 (fma_towardzero_test_data): New variable.
27404 (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
27405 (fma_downward_test_data): New variable.
27406 (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
27407 (fma_upward_test_data): New variable.
27408 (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
27409
08198877
JM
27410 * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
27411 (struct test_c_c_data): New type.
27412 (RUN_TEST_LOOP_c_c): New macro.
27413 (cacos_test_data): New variable.
27414 (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
27415 (cacosh_test_data): New variable.
27416 (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
27417 (casin_test_data): New variable.
27418 (casin_test): Run tests with RUN_TEST_LOOP_c_c.
27419 (casinh_test_data): New variable.
27420 (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
27421 (catan_test_data): New variable.
27422 (catan_test): Run tests with RUN_TEST_LOOP_c_c.
27423 (catanh_test_data): New variable.
27424 (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
27425 (ccos_test_data): New variable.
27426 (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
27427 (ccosh_test_data): New variable.
27428 (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
27429 (cexp_test_data): New variable.
27430 (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
27431 (clog_test_data): New variable.
27432 (clog_test): Run tests with RUN_TEST_LOOP_c_c.
27433 (clog10_test_data): New variable.
27434 (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
27435 (conj_test_data): New variable.
27436 (conj_test): Run tests with RUN_TEST_LOOP_c_c.
27437 (cproj_test_data): New variable.
27438 (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
27439 (csin_test_data): New variable.
27440 (csin_test): Run tests with RUN_TEST_LOOP_c_c.
27441 (csinh_test_data): New variable.
27442 (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
27443 (csqrt_test_data): New variable.
27444 (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
27445 (ctan_test_data): New variable.
27446 (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
27447 (ctan_tonearest_test_data): New variable.
27448 (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
27449 (ctan_towardzero_test_data): New variable.
27450 (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
27451 (ctan_downward_test_data): New variable.
27452 (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
27453 (ctan_upward_test_data): New variable.
27454 (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
27455 (ctanh_test_data): New variable.
27456 (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
27457 (ctanh_tonearest_test_data): New variable.
27458 (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
27459 (ctanh_towardzero_test_data): New variable.
27460 (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
27461 (ctanh_downward_test_data): New variable.
27462 (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
27463 (ctanh_upward_test_data): New variable.
27464 (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
27465 * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
27466 of BUILD_COMPLEX.
27467
601a3a5f
JM
27468 * math/libm-test.inc (struct test_ff_f_data): New type.
27469 (struct test_ff_f_data_nexttoward): Likewise.
27470 (RUN_TEST_LOOP_2_f): New macro.
27471 (RUN_TEST_LOOP_ff_f): Likewise.
27472 (atan2_test_data): New variable.
27473 (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
27474 (copysign_test_data): New variable.
27475 (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
27476 (fdim_test_data): New variable.
27477 (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
27478 (fmax_test_data): New variable.
27479 (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
27480 (fmin_test_data): New variable.
27481 (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
27482 (fmod_test_data): New variable.
27483 (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
27484 (hypot_test_data): New variable.
27485 (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
27486 (nextafter_test_data): New variable.
27487 (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
27488 (nexttoward_test_data): New variable.
27489 (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
27490 (pow_test_data): New variable.
27491 (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
27492 (pow_tonearest_test_data): New variable.
27493 (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
27494 (pow_towardzero_test_data): New variable.
27495 (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
27496 (pow_downward_test_data): New variable.
27497 (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
27498 (pow_upward_test_data): New variable.
27499 (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
27500 (remainder_test_data): New variable.
27501 (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
27502 (scalb_test_data): New variable.
27503 (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
27504 * sysdeps/i386/fpu/libm-test-ulps: Update.
27505
74c57478
JM
275062013-05-11 Joseph Myers <joseph@codesourcery.com>
27507
8329e4da
JM
27508 * math/libm-test.inc (fma_test): Use max_value instead of local
27509 variable fltmax.
27510 (nextafter_test): Likewise.
27511
74c57478
JM
27512 * math/libm-test.inc (acos_towardzero_test_data): New variable.
27513 (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27514 (acos_downward_test_data): New variable.
27515 (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27516 (acos_upward_test_data): New variable.
27517 (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27518 (acosh_test_data): New variable.
27519 (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
27520 (asin_test_data): New variable.
27521 (asin_test): Run tests with RUN_TEST_LOOP_f_f.
27522 (asin_tonearest_test_data): New variable.
27523 (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27524 (asin_towardzero_test_data): New variable.
27525 (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27526 (asin_downward_test_data): New variable.
27527 (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27528 (asin_upward_test_data): New variable.
27529 (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27530 (asinh_test_data): New variable.
27531 (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
27532 (atan_test_data): New variable.
27533 (atan_test): Run tests with RUN_TEST_LOOP_f_f.
27534 (atanh_test_data): New variable.
27535 (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
27536 (cbrt_test_data): New variable.
27537 (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
27538 (ceil_test_data): New variable.
27539 (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
27540 (cos_test_data): New variable.
27541 (cos_test): Run tests with RUN_TEST_LOOP_f_f.
27542 (cos_tonearest_test_data): New variable.
27543 (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27544 (cos_towardzero_test_data): New variable.
27545 (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27546 (cos_downward_test_data): New variable.
27547 (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27548 (cos_upward_test_data): New variable.
27549 (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27550 (cosh_test_data): New variable.
27551 (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
27552 (cosh_tonearest_test_data): New variable.
27553 (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27554 (cosh_towardzero_test_data): New variable.
27555 (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27556 (cosh_downward_test_data): New variable.
27557 (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27558 (cosh_upward_test_data): New variable.
27559 (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27560 (erf_test_data): New variable.
27561 (erf_test): Run tests with RUN_TEST_LOOP_f_f.
27562 (erfc_test_data): New variable.
27563 (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
27564 (exp_test_data): New variable.
27565 (exp_test): Run tests with RUN_TEST_LOOP_f_f.
27566 (exp_tonearest_test_data): New variable.
27567 (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27568 (exp_towardzero_test_data): New variable.
27569 (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27570 (exp_downward_test_data): New variable.
27571 (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27572 (exp_upward_test_data): New variable.
27573 (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27574 (exp10_test_data): New variable.
27575 (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
27576 (exp2_test_data): New variable.
27577 (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
27578 (expm1_test_data): New variable.
27579 (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
27580 (fabs_test_data): New variable.
27581 (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
27582 (floor_test_data): New variable.
27583 (floor_test): Run tests with RUN_TEST_LOOP_f_f.
27584 (j0_test_data): New variable.
27585 (j0_test): Run tests with RUN_TEST_LOOP_f_f.
27586 (j1_test_data): New variable.
27587 (j1_test): Run tests with RUN_TEST_LOOP_f_f.
27588 (log_test_data): New variable.
27589 (log_test): Run tests with RUN_TEST_LOOP_f_f.
27590 (log10_test_data): New variable.
27591 (log10_test): Run tests with RUN_TEST_LOOP_f_f.
27592 (log1p_test_data): New variable.
27593 (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
27594 (log2_test_data): New variable.
27595 (log2_test): Run tests with RUN_TEST_LOOP_f_f.
27596 (logb_test_data): New variable.
27597 (logb_test): Run tests with RUN_TEST_LOOP_f_f.
27598 (logb_downward_test_data): New variable.
27599 (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27600 (nearbyint_test_data): New variable.
27601 (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
27602 (rint_test_data): New variable.
27603 (rint_test): Run tests with RUN_TEST_LOOP_f_f.
27604 (rint_tonearest_test_data): New variable.
27605 (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27606 (rint_towardzero_test_data): New variable.
27607 (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27608 (rint_downward_test_data): New variable.
27609 (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27610 (rint_upward_test_data): New variable.
27611 (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27612 (round_test_data): New variable.
27613 (round_test): Run tests with RUN_TEST_LOOP_f_f.
27614 (sin_test_data): New variable.
27615 (sin_test): Run tests with RUN_TEST_LOOP_f_f.
27616 (sin_tonearest_test_data): New variable.
27617 (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27618 (sin_towardzero_test_data): New variable.
27619 (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27620 (sin_downward_test_data): New variable.
27621 (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27622 (sin_upward_test_data): New variable.
27623 (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27624 (sinh_test_data): New variable.
27625 (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
27626 (sinh_tonearest_test_data): New variable.
27627 (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27628 (sinh_towardzero_test_data): New variable.
27629 (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27630 (sinh_downward_test_data): New variable.
27631 (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27632 (sinh_upward_test_data): New variable.
27633 (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27634 (sqrt_test_data): New variable.
27635 (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
27636 (tan_test_data): New variable.
27637 (tan_test): Run tests with RUN_TEST_LOOP_f_f.
27638 (tan_tonearest_test_data): New variable.
27639 (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27640 (tan_towardzero_test_data): New variable.
27641 (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
27642 (tan_downward_test_data): New variable.
27643 (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
27644 (tan_upward_test_data): New variable.
27645 (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
27646 (tanh_test_data): New variable.
27647 (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
27648 (tgamma_test_data): New variable.
27649 (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
27650 (trunc_test_data): New variable.
27651 (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
27652 (y0_test_data): New variable.
27653 (y0_test): Run tests with RUN_TEST_LOOP_f_f.
27654 (y1_test_data): New variable.
27655 (y1_test): Run tests with RUN_TEST_LOOP_f_f.
27656 (significand_test_data): New variable.
27657 (significand_test): Run tests with RUN_TEST_LOOP_f_f.
27658
7187d844
CG
276592013-05-10 Christian Grönke <cgr_bugs@sysgo.com>
27660
27661 [BZ #12387]
27662 * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
27663
f63fae73
PT
276642013-05-10 Pino Toscano <toscano.pino@tiscali.it>
27665
27666 * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
27667
8a67a4b3
AJ
276682013-05-10 Andreas Jaeger <aj@suse.de>
27669
27670 [BZ #15448]
27671 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
27672 (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
27673
51df539d
JM
276742013-05-10 Joseph Myers <joseph@codesourcery.com>
27675
27676 * math/gen-libm-test.pl (adjust_arg): New function.
27677 (special_functions): Handle generating output in both functions
27678 and arrays.
27679 (parse_args): Likewise.
27680 (generate_testfile): Handle START_DATA and END_DATA. Pass extra
27681 $in_func argument to parse_args.
27682 * math/libm-test.inc (struct test_f_f_data): New type.
27683 (IF_ROUND_INIT_): New macro.
27684 (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
27685 (IF_ROUND_INIT_FE_TONEAREST): Likewise.
27686 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
27687 (IF_ROUND_INIT_FE_UPWARD): Likewise.
27688 (ROUND_RESTORE_): Likewise.
27689 (ROUND_RESTORE_FE_DOWNWARD): Likewise.
27690 (ROUND_RESTORE_FE_TONEAREST): Likewise.
27691 (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
27692 (ROUND_RESTORE_FE_UPWARD): Likewise.
27693 (RUN_TEST_LOOP_f_f): New macro.
27694 (acos_test_data): New variable.
27695 (acos_test): Run tests with RUN_TEST_LOOP_f_f.
27696 (acos_tonearest_test_data): New variable.
27697 (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
27698
5c637fe5
SP
276992013-05-10 Siddhesh Poyarekar <siddhesh@redhat.com>
27700
27701 * benchtests/bench-skeleton.c (startup): Fix coding style.
27702
ab2b9461
JM
277032013-05-10 Joseph Myers <joseph@codesourcery.com>
27704
27705 [BZ #6809]
27706 * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
27707 negative infinity argument.
27708 * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
27709 negative infinity argument.
27710 * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
27711 negative infinity argument.
27712 * math/libm-test.inc (tgamma_test): Expect errno to be set for
27713 domain errors.
27714
4c0fe6fe
FW
277152013-05-10 Florian Weimer <fweimer@redhat.com>
27716
27717 * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
27718 * iconv/iconv_charmap.c (charmap_conversion): Likewise.
27719 * iconv/iconv_prog.c (main): Likewise.
27720 * locale/programs/charmap-dir.c (charmap_readdir)
27721 (fopen_uncompressed): Likewise.
27722 * locale/programs/locfile.c (siblings_uncached)
27723 (write_locale_data): Use lstat64 instead of lstat.
27724 * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
27725 stat.
27726
a3375d29
AJ
277272013-05-10 Andreas Jaeger <aj@suse.de>
27728
27729 [BZ #15395]
27730 * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
27731 localization.
27732 Include <locale.h>.
27733
36129722
CD
277342013-05-09 Carlos O'Donell <carlos@redhat.com>
27735
27736 * elf/dl-close.c (_dl_close_worker): Add comments.
27737
faa7f811
JM
277382013-05-09 Joseph Myers <joseph@codesourcery.com>
27739
ed41ffef
JM
27740 [BZ #15359]
27741 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
27742 high part of pi/2.
27743 (__ieee754_rem_pio2l): Update comments.
27744
d0213cd0
JM
27745 [BZ #15429]
27746 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
27747 high part of pi/2.
27748 (__ieee754_rem_pio2l): Update comments.
27749
0d3e777a
JM
27750 * math/libm-test.inc (M_SQRT_2_2): Remove macro.
27751 (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
27752
24f56066
JM
27753 * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
27754 M_PI_4l.
27755
faa7f811
JM
27756 * math/libm-test.inc (M_PI_34l): Define using decimal constant.
27757 (M_PI_34_LOG10El): Likewise.
27758 (M_PI2_LOG10El): Likewise.
27759 (M_PI4_LOG10El): Likewise.
27760 (M_PI_LOG10El): Likewise.
27761
e9a5e0fd
AZ
277622013-05-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
27763
27764 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
27765
d8cd06db
JM
277662013-05-08 Joseph Myers <joseph@codesourcery.com>
27767
a0d9f9d7
JM
27768 * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
27769 (MINUS_ZERO_INIT): Likewise.
27770 (PLUS_INFTY_INIT): Likewise.
27771 (MINUS_INFTY_INIT): Likewise.
27772 (QNAN_VALUE_INIT): Likewise.
27773 (MAX_VALUE_INIT): Likewise.
27774 (MIN_VALUE_INIT): Likewise.
27775 (MIN_SUBNORM_VALUE_INIT): Likewise.
27776 (plus_zero): Initialize with PLUS_ZERO_INIT.
27777 (minus_zero): Initialize with MINUS_ZERO_INIT.
27778 (plus_infty): Initialize with PLUS_INFTY_INIT.
27779 (minus_infty): Initialize with MINUS_INFTY_INIT.
27780 (qnan_value): Initialize with QNAN_VALUE_INIT.
27781 (max_value): Initialize with MAX_VALUE_INIT.
27782 (min_value): Initialize with MIN_VALUE_INIT.
27783 (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
27784
ae08db3b
JM
27785 * math/libm-test.inc (RUN_TEST_if_f): New macro.
27786 (jn_test): Use TEST_if_f instead of TEST_ff_f.
27787 (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
27788 (yn_test): Use TEST_if_f instead of TEST_ff_f.
27789
f44bf14a
JM
27790 * math/libm-test.inc (RUN_TEST_f_f): New macro.
27791 (RUN_TEST_2_f): Likewise.
27792 (RUN_TEST_ff_f): Likewise.
27793 (RUN_TEST_fi_f): Likewise.
27794 (RUN_TEST_fl_f): Likewise.
27795 (RUN_TEST_fff_f): Likewise.
27796 (RUN_TEST_c_f): Likewise.
27797 (RUN_TEST_f_f1): Likewise.
27798 (RUN_TEST_fF_f1): Likewise.
27799 (RUN_TEST_fI_f1): Likewise.
27800 (RUN_TEST_ffI_f1): Likewise.
27801 (RUN_TEST_c_c): Likewise.
27802 (RUN_TEST_cc_c): Likewise.
27803 (RUN_TEST_f_i): Likewise.
27804 (RUN_TEST_f_i_tg): Likewise.
27805 (RUN_TEST_ff_i_tg): Likewise.
27806 (RUN_TEST_f_b): Likewise.
27807 (RUN_TEST_f_b_tg): Likewise.
27808 (RUN_TEST_f_l): Likewise.
27809 (RUN_TEST_f_L): Likewise.
27810 (RUN_TEST_sincos): Likewise.
27811 * math/gen-libm-test.pl (new_test): Take new argument to indicate
27812 whether to show exceptions. Do not include ");\n" in return
27813 value.
27814 (special_functions): Output call to RUN_TEST_sincos instead of
27815 check_float calls. Update calls to new_test.
27816 (parse_args): Output call to single RUN_TEST_* macro instead of
27817 check_* calls and other assignments. Update calls to new_test.
27818
d8cd06db
JM
27819 [BZ #2546]
27820 [BZ #2560]
27821 [BZ #5159]
27822 [BZ #15426]
27823 * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
27824 input to result for tgamma overflow.
27825 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
27826 (gamma_coeff): New variable.
27827 (NCOEFF): New macro.
27828 (gamma_positive): New function.
27829 (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
27830 underflow here. Use gamma_positive instead of exp (lgamma) for
27831 other arguments.
27832 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
27833 (gamma_coeff): New variable.
27834 (NCOEFF): New macro.
27835 (gammaf_positive): New function.
27836 (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
27837 underflow here. Use gamma_positive instead of exp (lgamma) for
27838 other arguments.
27839 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
27840 (gamma_coeff): New variable.
27841 (NCOEFF): New macro.
27842 (gammal_positive): New function.
27843 (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
27844 underflow here. Use gamma_positive instead of exp (lgamma) for
27845 other arguments.
27846 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
27847 (gamma_coeff): New variable.
27848 (NCOEFF): New macro.
27849 (gammal_positive): New function.
27850 (__ieee754_gammal_r): Handle positive infinity, overflow and
27851 underflow here. Handle NaN the same as positive infinity. Remove
27852 check x < 0xffffffff for negative integers. Use gamma_positive
27853 instead of exp (lgamma) for other arguments.
27854 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
27855 (gamma_coeff): New variable.
27856 (NCOEFF): New macro.
27857 (gammal_positive): New function.
27858 * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
27859 * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
27860 * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
27861 * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
27862 * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
27863 * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
27864 * sysdeps/generic/math_private.h (__gamma_productf): New
27865 prototype.
27866 (__gamma_product): Likewise.
27867 (__gamma_productl): Likewise.
27868 * math/Makefile (libm-calls): Add gamma_product.
27869 * math/libm-test.inc (tgamma_test): Add more tests.
27870 * sysdeps/i386/fpu/libm-test-ulps: Update.
27871 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27872
bb7cf681
OB
278732013-05-08 Ondřej Bílka <neleai@seznam.cz>
27874
27875 * benchtests/bench-skeleton.c (main): Preheat CPU.
27876
ba853947
AJ
278772013-05-07 Aurelien Jarno <aurelien@aurel32.net>
27878
27879 * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
27880
8347c74c
RM
278812013-05-07 Roland McGrath <roland@hack.frob.com>
27882
27883 * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
27884 and _dl_skip_args_internal.
27885
e8dd4791
CD
278862013-05-07 Carlos O'Donell <carlos@redhat.com>
27887
27888 * manual/message.texi (Message Translation): Talk about users.
27889 Message to key mapping impacts design.
27890
c7405830
RM
278912013-05-06 Roland McGrath <roland@hack.frob.com>
27892
a9173057
RM
27893 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
27894
976e2f03
RM
27895 * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
27896
9723ffc5
RM
27897 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
27898 * sysdeps/wordsize-64/glob64.c: ... here.
27899
962e6658
RM
27900 * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
27901 (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
27902 New macros.
27903
ee586a6d
RM
27904 * debug/getlogin_r_chk.c: Moved to ...
27905 * login/getlogin_r_chk.c: ... here.
27906 * debug/Makefile (routines): Move getlogin_r_chk to ...
27907 * login/Makefile (routines): ... here.
27908 * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
27909 * login/Versions (libc: GLIBC_2.4): ... here.
27910
355f9165
RM
27911 * io/poll.c (__poll): Renamed from poll.
27912 Add libc_hidden_def.
27913 (poll): Define as weak alias.
27914
bd9ffde6
RM
27915 * debug/ptsname_r_chk.c: Moved to ...
27916 * login/ptsname_r_chk.c: ... here.
27917 * debug/Makefile (routines): Move ptsname_r_chk to ...
27918 * login/Makefile (routines): ... here.
27919 * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
27920 * login/Versions (libc: GLIBC_2.4): ... here.
27921
8fb16a04
RM
27922 * posix/getlogin.c: Moved to ...
27923 * login/getlogin.c: ... here.
27924 * posix/getlogin_r.c: Moved to ...
27925 * login/getlogin_r.c: ... here.
27926 * posix/getlogin_r.c: Moved to ...
27927 * login/getlogin_r.c: ... here.
27928 * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
27929 * login/Makefile (routines): ... here.
27930 * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
27931 * login/Versions (libc: GLIBC_2.0): ... here.
27932
b99b892f
RM
27933 * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
27934 (setrlimit): Define as weak alias.
27935
c7405830
RM
27936 * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
27937 Call __ names for open, ftruncate, and close.
27938 For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
27939 (truncate): Define as weak alias.
27940
5bf96de5
JM
279412013-05-06 Joseph Myers <joseph@codesourcery.com>
27942
9ea3513c
JM
27943 * math/gen-libm-test.pl (parse_args): Initialize x before each
27944 test of frexp, modf and remquo.
27945
5bf96de5
JM
27946 * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
27947 test signgam value.
27948
16e616a7
AZ
279492013-05-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
27950
27951 [BZ #15418]
27952 [BZ #15419]
27953 * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
27954 internal tests.
27955 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
27956
d5e82754
RM
279572013-05-06 Roland McGrath <roland@hack.frob.com>
27958
27959 * elf/dl-writev.h: New file.
27960 * elf/dl-misc.c: Include it.
27961 (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
27962 * sysdeps/unix/sysv/linux/dl-writev.h: New file.
27963
a7548d41
JM
279642013-05-04 Joseph Myers <joseph@codesourcery.com>
27965
b7dab1e4
JM
27966 * math/libm-test.inc (noXFails): Remove variable.
27967 (noXPasses): Likewise.
27968 (BUILD_COMPLEX_INT): Remove macro.
27969 (print_screen): Remove xfail argument.
27970 (print_screen_max_error): Likewise.
27971 (update_stats): Likewise.
27972 (print_max_error): Likewise. Update calls to other affected
27973 functions.
27974 (print_complex_max_error): Likewise.
27975 (test_single_exception): Update calls to print_screen.
27976 (test_single_errno): Likewise.
27977 (check_float_internal): Remove xfail argument. Update calls to
27978 other affected functions.
27979 (check_float): Likewise.
27980 (check_complex): Likewise.
27981 (check_int): Likewise.
27982 (check_long): Likewise.
27983 (check_bool): Likewise.
27984 (check_longlong): Likewise.
27985 (main): Don't print noXFails and noXPasses.
27986 * math/gen-libm-test.pl (top level): Don't mention expected
27987 failure handling in comment.
27988 (new_test): Don't handle expected failures.
27989 (parse_args): Don't mention expected failure handling in comment.
27990 (generate_testfile): Don't handle expected failures.
27991 (parse_ulps): Likewise.
27992 (print_ulps_file): Likewise.
27993 (get_failure): Remove function.
27994 (output_test): Don't handle expected failures.
27995 * make/README.libm-test: Don't mention expected failure handling.
27996
a7548d41
JM
27997 * math/libm-test.inc (plus_zero): Make const. Add initializer.
27998 (minus_zero): Likewise.
27999 (plus_infty): Likewise.
28000 (minus_infty): Likewise.
28001 (qnan_value): Likewise.
28002 (max_value): Likewise.
28003 (min_value): Likewise.
28004 (min_subnorm_value): Likewise.
28005 (initialize): Do not initialize those variables dynamically.
28006
60bfd54c
RM
280072013-05-03 Roland McGrath <roland@hack.frob.com>
28008
cc0e6ed8
RM
28009 * io/open.c (__open_2): Moved to ...
28010 * io/open_2.c: ... this new file.
28011 * io/open64.c (__open64_2): Moved to ...
28012 * io/open64_2.c: ... this new file.
28013 * io/openat.c (__openat_2): Moved to ...
28014 * io/openat_2.c: ... this new file.
28015 * io/openat64.c (__openat64_2): Moved to ...
28016 * io/openat64_2.c: ... this new file.
28017 * io/Makefile (routines): Add them.
28018 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
28019 * sysdeps/unix/sysv/linux/open_2.c: File removed.
28020 * sysdeps/unix/sysv/linux/open64_2.c: File removed.
28021 * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
28022 * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
28023 * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
28024 (__openat64): Add hidden_ver.
28025 * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
28026 * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
28027
60bfd54c
RM
28028 * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
28029 Separately conditionalize setting of GLRO(dl_sysinfo) so
28030 that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
28031 as well, but the actual setting is only under [NEED_DL_SYSINFO].
28032
83e7640f
AZ
280332013-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28034
28035 * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
28036 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
28037 definition.
28038 (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
28039 * sysdeps/unix/sysv/linux/powerpc/init-first.c
28040 (_libc_vdso_platform_setup): Add __vdso_time initialization.
28041 * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
28042 for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
28043
d5dc2af3
JM
280442013-05-03 Joseph Myers <joseph@codesourcery.com>
28045
c31a5b1e
JM
28046 * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
28047 test signgam value.
28048
d5dc2af3
JM
28049 * math/libm-test.inc (hypot_test): Do not use
28050 IGNORE_ZERO_INF_SIGN.
28051
164fd39d
AJ
280522013-05-03 Andreas Jaeger <aj@suse.de>
28053
28054 * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
28055 Linux 3.9.
28056 * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
28057 (PF_MAX): Adjust for VSOCK change.
28058
8237f48c
AZ
280592013-05-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28060
28061 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28062
9df02941
CD
280632013-05-02 Carlos O'Donell <carlos@redhat.com>
28064
28065 [BZ #15264]
28066 * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
28067 * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
28068 * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
28069
d422395e
DM
280702013-05-02 David S. Miller <davem@davemloft.net>
28071
28072 * sysdeps/sparc/fpu/libm-test-ulps: Update.
28073
a07c5731
OB
280742013-05-01 Ondřej Bílka <neleai@seznam.cz>
28075
28076 * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
28077
1324e37f
RM
280782013-05-01 Roland McGrath <roland@hack.frob.com>
28079
28080 * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
28081
0695940b
RS
280822013-05-01 Richard Smith <richard@metafoo.co.uk>
28083
bb5f27ad 28084 [BZ #14952]
0695940b
RS
28085 * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
28086 [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
28087 Use __attribute__ ((__gnu_inline__)).
28088 [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
28089 Don't use __attribute__ ((__gnu_inline__)).
28090
10de07f5
JM
280912013-05-01 Joseph Myers <joseph@codesourcery.com>
28092
28093 [BZ #15423]
28094 * math/s_catan.c (__catan): Handle small real or imaginary part of
28095 input specially to avoid spurious underflow.
28096 * math/s_catanf.c (__catanf): Likewise.
28097 * math/s_catanh.c (__catanh): Likewise.
28098 * math/s_catanhf.c (__catanhf): Likewise.
28099 * math/s_catanhl.c (__catanhl): Likewise.
28100 * math/s_catanl.c (__catanl): Likewise.
28101 * math/libm-test.inc (catan_test): Add more tests.
28102 (catanh_test): Likewise.
28103 * sysdeps/i386/fpu/libm-test-ulps: Update.
28104 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28105
cb4d5414
AZ
281062013-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28107
28108 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28109
caf84319
JM
281102013-04-30 Joseph Myers <joseph@codesourcery.com>
28111
28112 [BZ #15416]
28113 * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
28114 accurately for denominator in atan2.
28115 * math/s_catanf.c (__catanf): Likewise.
28116 * math/s_catanh.c (__catanh): Likewise.
28117 * math/s_catanhf.c (__catanhf): Likewise.
28118 * math/s_catanhl.c (__catanhl): Likewise.
28119 * math/s_catanl.c (__catanl): Likewise.
28120 * math/libm-test.inc (catan_test): Add more tests.
28121 (catanh_test): Likewise.
28122 * sysdeps/i386/fpu/libm-test-ulps: Update.
28123 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28124
d569c6ee
SP
281252013-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
28126
6dbe713d
SP
28127 * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
28128
f0ee064b
SP
28129 * benchtests/Makefile (bench): Remove slow benchmarks.
28130 * benchtests/atan-inputs: Add slow benchmark inputs.
28131 * benchtests/bench-modf.c (NUM_VARIANTS): Define.
28132 (BENCH_FUNC): Accept variant offset.
28133 (VARIANT): Define.
28134 * benchtests/bench-skeleton.c (main): Run benchmark for each
28135 variant.
28136 * benchtests/cos-inputs: Add slow benchmark inputs.
28137 * benchtests/exp-inputs: Likewise.
28138 * benchtests/pow-inputs: Likewise.
28139 * benchtests/sin-inputs: Likewise.
28140 * benchtests/slowatan-inputs: Remove.
28141 * benchtests/slowatan.c: Remove.
28142 * benchtests/slowcos-inputs: Remove.
28143 * benchtests/slowcos.c: Remove.
28144 * benchtests/slowexp-inputs: Remove.
28145 * benchtests/slowexp.c: Remove.
28146 * benchtests/slowpow-inputs: Remove.
28147 * benchtests/slowpow.c: Remove.
28148 * benchtests/slowsin-inputs: Remove.
28149 * benchtests/slowsin.c: Remove.
28150 * benchtests/slowtan-inputs: Remove.
28151 * benchtests/slowtan.c: Remove.
28152 * benchtests/tan-inputs: Add slow benchmark inputs.
28153 * scripts/bench.pl: Parse comments and directives.
28154
d569c6ee
SP
28155 * benchtests/Makefile: Remove *-ITER. Define BENCH_DURATION
28156 in CPPFLAGS.
28157 ($(objpfx)bench-%.c): Remove *-ITER.
28158 * benchtests/bench-modf.c: Remove definition of ITER.
28159 * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
28160 (main): Loop for DURATION seconds instead of fixed number of
28161 iterations.
28162 * scripts/bench.pl: Don't expect iterations in parameters.
28163
a6a242fe
RM
281642013-04-29 Roland McGrath <roland@hack.frob.com>
28165
28166 * io/fchdir.c (__fchdir): Renamed from fchdir.
28167 (fchdir): Define as weak alias.
28168
f2da7793
JM
281692013-04-29 Joseph Myers <joseph@codesourcery.com>
28170
28171 * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
28172 (ERRNO_EDOM): Likewise.
28173 (ERRNO_ERANGE): Likewise.
28174 (noErrnoTests): New variable.
28175 (init_max_error): Set errno to 0.
28176 (test_single_errno): New function.
28177 (test_errno): Likewise.
28178 (check_float_internal): Call test_errno. Set errno to 0.
28179 (check_complex): Refer to errno tests in comment.
28180 (check_int): Call test_errno. Set errno to 0.
28181 (check_long): Likewise.
28182 (check_bool): Likewise.
28183 (check_longlong): Likewise.
28184 (cos_test): Use ERRNO_* flags for errno tests instead of
28185 check_int.
28186 (expm1_test): Likewise.
28187 (fmod_test): Likewise.
28188 (ilogb_test): Likewise.
28189 (lgamma_test): Likewise.
28190 (pow_test): Likewise.
28191 (remainder_test): Likewise.
28192 (sin_test): Likewise.
28193 (tan_test): Likewise.
28194 (yn_test): Likewise.
28195 (initialize): Set errno to 0.
28196 (main): Print number of errno tests.
28197 * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
28198
b1a36ceb
AJ
281992013-04-29 Andreas Jaeger <aj@suse.de>
28200
c3ed8088
AJ
28201 [BZ #15084]
28202 * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
28203 and RES_USEVC.
28204
f1a24198
AJ
28205 [BZ #15085]
28206 * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
28207 * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
28208 unimplemented.
28209
9ce3b2cb
AJ
28210 [BZ #15380]
28211 * stdlib/random.c (__initstate): Return NULL if
28212 __initstate fails.
28213
f1a24198 28214 [BZ #15086]
b1a36ceb
AJ
28215 * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
28216 RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
28217 RES_SNGLKUPREOP.
28218
7e7b6f36
AZ
282192013-04-29 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28220
28221 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28222
4d14f449
JM
282232013-04-29 Joseph Myers <joseph@codesourcery.com>
28224
28225 * math/libm-test.inc (cacos_test): Add missing semicolons at ends
28226 of individual tests.
28227 (casin_test): Likewise.
28228 (casinh_test): Likewise.
28229
5b4217d7
JM
282302013-04-27 Joseph Myers <joseph@codesourcery.com>
28231
28232 [BZ #15409]
28233 * math/s_catan.c (__catan): Handle arguments with large real or
28234 imaginary part separately without squaring.
28235 * math/s_catanf.c (__catanf): Likewise.
28236 * math/s_catanh.c (__catanh): Likewise.
28237 * math/s_catanhf.c (__catanhf): Likewise.
28238 * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
28239 and redefine.
28240 (__catanhl): Handle arguments with large real or imaginary part
28241 separately without squaring.
28242 * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
28243 and redefine.
28244 (__catanl): Handle arguments with large real or imaginary part
28245 separately without squaring.
28246 * math/libm-test.inc (catan_test): Add more tests.
28247 (catanh_test): Likewise.
28248 * sysdeps/i386/fpu/libm-test-ulps: Update.
28249 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28250
4220c3ef
AJ
282512013-04-27 Andreas Jaeger <aj@suse.de>
28252
28253 [BZ #15007]
28254 * stdlib/stdlib.h: Update guards for qecvt.
28255 * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
28256 <stdlib.h>.
28257
4721b2d1
AM
282582013-04-27 Allan McRae <allan@archlinux.org>
28259
28260 * sysdeps/i386/fpu/libm-test-ulps: Update.
28261
f0302940
JM
282622013-04-26 Joseph Myers <joseph@codesourcery.com>
28263
9457fd95
JM
28264 [BZ #15406]
28265 * math/s_catan.c: Include <float.h>.
28266 (__catan): Ensure underflow exception occurs for underflowed
28267 result.
28268 * math/s_catanf.c: Include <float.h>.
28269 (__catanf): Ensure underflow exception occurs for underflowed
28270 result.
28271 * math/s_catanh.c: Include <float.h>.
28272 (__catanh): Ensure underflow exception occurs for underflowed
28273 result.
28274 * math/s_catanhf.c: Include <float.h>.
28275 (__catanhf): Ensure underflow exception occurs for underflowed
28276 result.
28277 * math/s_catanhl.c: Include <float.h>.
28278 (__catanhl): Ensure underflow exception occurs for underflowed
28279 result.
28280 * math/s_catanl.c: Include <float.h>.
28281 (__catanl): Ensure underflow exception occurs for underflowed
28282 result.
28283 * math/libm-test.inc (catan_test): Add more tests.
28284 (catanh_test): Likewise.
28285
f0302940
JM
28286 [BZ #15405]
28287 * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
28288 underflowed result.
28289 * math/s_ccoshf.c (__ccoshf): Likewise.
28290 * math/s_ccoshl.c (__ccoshl): Likewise.
28291 * math/s_csin.c (__csin): Likewise.
28292 * math/s_csinf.c (__csinf): Likewise.
28293 * math/s_csinh.c (__csinh): Likewise.
28294 * math/s_csinhf.c (__csinhf): Likewise.
28295 * math/s_csinhl.c (__csinhl): Likewise.
28296 * math/s_csinl.c (__csinl): Likewise.
28297 * math/libm-test.inc (ccos_test): Add more tests.
28298 (ccosh_test): Likewise.
28299 (csin_test): Likewise.
28300 (csinh_test): Likewise.
28301
aa630f59
AZ
283022013-04-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28303
28304 * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
28305 * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
28306 * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
28307 * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
28308 * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
28309 powerpc/power5+/fpu folders.
28310 * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
28311
28312
1b835983
MT
283132013-04-26 Markus Trippelsdorf <markus@trippelsdorf.de>
28314
28315 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
28316
73709b26
JM
283172013-04-25 Joseph Myers <joseph@codesourcery.com>
28318
28319 * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
28320 additions to variable.
28321 [$(config-machine) = x86_64] (modules-names): Likewise.
28322 ($(objpfx)tst-audit3): Remove dependency.
28323 ($(objpfx)tst-audit3.out): Likewise.
28324 ($(objpfx)tst-audit4): Likewise.
28325 ($(objpfx)tst-audit4.out): Likewise.
28326 ($(objpfx)tst-audit5): Likewise.
28327 ($(objpfx)tst-audit5.out): Likewise.
28328 ($(objpfx)tst-audit6): Likewise.
28329 ($(objpfx)tst-audit6.out): Likewise.
28330 ($(objpfx)tst-audit7): Likewise.
28331 ($(objpfx)tst-audit7.out): Likewise.
28332 (tst-audit3-ENV): Remove variable.
28333 (tst-audit4-ENV): Likewise.
28334 (tst-audit5-ENV): Likewise.
28335 (tst-audit6-ENV): Likewise.
28336 (tst-audit7-ENV): Likewise.
28337 [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
28338 [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
28339 addition to variable.
28340 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
28341 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
28342 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
28343 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
28344 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
28345 * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
28346 tst-audit3, tst-audit4 and tst-audit5.
28347 [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
28348 tst-audit6 and tst-audit7.
28349 [$(subdir) = elf] (modules-names): Add audit modules for those
28350 tests.
28351 [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
28352 [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
28353 [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
28354 [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
28355 [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
28356 [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
28357 [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
28358 [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
28359 [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
28360 [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
28361 [$(subdir) = elf] (tst-audit3-ENV): New variable.
28362 [$(subdir) = elf] (tst-audit4-ENV): Likewise.
28363 [$(subdir) = elf] (tst-audit5-ENV): Likewise.
28364 [$(subdir) = elf] (tst-audit6-ENV): Likewise.
28365 [$(subdir) = elf] (tst-audit7-ENV): Likewise.
28366 [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
28367 Likewise.
28368 [$(subdir) = elf && $(config-cflags-avx) = yes]
28369 (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
28370 [$(subdir) = elf && $(config-cflags-avx) = yes]
28371 (CFLAGS-tst-auditmod4a.c): Likewise.
28372 [$(subdir) = elf && $(config-cflags-avx) = yes]
28373 (CFLAGS-tst-auditmod4b.c): Likewise.
28374 [$(subdir) = elf && $(config-cflags-avx) = yes]
28375 (CFLAGS-tst-auditmod6b.c): Likewise.
28376 [$(subdir) = elf && $(config-cflags-avx) = yes]
28377 (CFLAGS-tst-auditmod6c.c): Likewise.
28378 [$(subdir) = elf && $(config-cflags-avx) = yes]
28379 (CFLAGS-tst-auditmod7b.c): Likewise.
28380 * elf/tst-audit3.c: Move to ...
28381 * sysdeps/x86_64/tst-audit3.c: ... here.
28382 * elf/tst-audit4.c: Move to ...
28383 * sysdeps/x86_64/tst-audit4.c: ... here.
28384 * elf/tst-audit5.c: Move to ...
28385 * sysdeps/x86_64/tst-audit5.c: ... here.
28386 * elf/tst-audit6.c: Move to ...
28387 * sysdeps/x86_64/tst-audit6.c: ... here.
28388 * elf/tst-audit7.c: Move to ...
28389 * sysdeps/x86_64/tst-audit7.c: ... here.
28390 * elf/tst-auditmod3a.c: Move to ...
28391 * sysdeps/x86_64/tst-auditmod3a.c: ... here.
28392 * elf/tst-auditmod3b.c: Move to ...
28393 * sysdeps/x86_64/tst-auditmod3b.c: ... here.
28394 * elf/tst-auditmod4a.c: Move to ...
28395 * sysdeps/x86_64/tst-auditmod4a.c: ... here.
28396 * elf/tst-auditmod4b.c: Move to ...
28397 * sysdeps/x86_64/tst-auditmod4b.c: ... here.
28398 * elf/tst-auditmod5a.c: Move to ...
28399 * sysdeps/x86_64/tst-auditmod5a.c: ... here.
28400 * elf/tst-auditmod5b.c: Move to ...
28401 * sysdeps/x86_64/tst-auditmod5b.c: ... here.
28402 * elf/tst-auditmod6a.c: Move to ...
28403 * sysdeps/x86_64/tst-auditmod6a.c: ... here.
28404 * elf/tst-auditmod6b.c: Move to ...
28405 * sysdeps/x86_64/tst-auditmod6b.c: ... here.
28406 * elf/tst-auditmod6c.c: Move to ...
28407 * sysdeps/x86_64/tst-auditmod6c.c: ... here.
28408 * elf/tst-auditmod7a.c: Move to ...
28409 * sysdeps/x86_64/tst-auditmod7a.c: ... here.
28410 * elf/tst-auditmod7b.c: Move to ...
28411 * sysdeps/x86_64/tst-auditmod7b.c: ... here.
28412
1ef74943
PP
284132013-04-25 Paul Pluzhnikov <ppluzhnikov@google.com>
28414
28415 [BZ #15366]
28416 * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
28417 define unconditionally.
28418 * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
28419 define unconditionally.
28420 (INT8_C, INT16_C, etc.): Likewise.
28421
93fd48c5
MR
284222013-04-25 Maciej W. Rozycki <macro@codesourcery.com>
28423
ae9552cf
MR
28424 * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
28425 __ehdr_start with hidden visibility.
28426
93fd48c5
MR
28427 * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
28428
418601aa
CD
284292013-04-24 Carlos O'Donell <carlos@redhat.com>
28430
28431 * math/libm-test.inc (cos_test): Use accurate hex constants.
28432 (sincost_test): Likewise.
28433
2f38fbfe
JM
284342013-04-24 Joseph Myers <joseph@codesourcery.com>
28435
5e221800
JM
28436 * math/libm-test.inc (catan_test): Add more tests.
28437 (catanh_test): Likewise.
28438
77f143fd
JM
28439 * math/s_catanf.c (__catanf): Use suffixed floating-point
28440 constants.
28441 * math/s_catanhf.c (__catanhf): Likewise.
28442 * math/s_catanhl.c (__catanhl): Likewise.
28443 * math/s_catanl.c (__catanl): Likewise.
28444
2f38fbfe
JM
28445 [BZ #15394]
28446 * math/s_catan.c (__catan): Calculate imaginary part of result
28447 with log1p not log unless computing log of number close to 0.
28448 * math/s_catanf.c (__catanf): Likewise.
28449 * math/s_catanl.c (__catanl): Likewise.
28450 * math/s_catanh.c (__catanh): Calculate real part of result with
28451 log1p not log unless computing log of number close to 0.
28452 * math/s_catanhf.c (__catanhf): Likewise.
28453 * math/s_catanhl.c (__catanhl): Likewise.
28454 * math/libm-test.inc (catan_test): Add more tests.
28455 (catanh_test): Likewise.
28456 * sysdeps/i386/fpu/libm-test-ulps: Update.
28457 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28458
45d69176
SP
284592013-04-24 Siddhesh Poyarekar <siddhesh@redhat.com>
28460
28461 * benchtests/Makefile: Mention files in which fast and slow
28462 paths of math functions are implemented.
28463
87f51853
RM
284642013-04-23 Roland McGrath <roland@hack.frob.com>
28465
28466 * sysdeps/posix/timespec_get.c: New file.
28467
3c026539
AZ
284682013-04-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28469
28470 * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
28471 POWER.
28472 * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
28473 for POWER.
28474 * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
28475 powerpc/power5/fpu folders.
28476 * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
28477 * benchtests/Makefile: Add modf testcase.
28478 * benchtests/bench-modf.c: New file: Benchmark test for mo
28479
ff491d14
SP
284802013-04-23 Siddhesh Poyarekar <siddhesh@redhat.com>
28481
28482 [BZ #14888]
28483 * time/Makefile (tests): Add tst-strptime-whitespace.
28484 * time/strptime_l.c (get_number): Use ISSPACE.
28485 (__strptime_internal): Likewise.
28486 * time/tst-strptime-whitespace.c: New test case.
28487
7ed3f4e8
AS
284882013-04-23 Andreas Schwab <schwab@linux-m68k.org>
28489
28490 * nss/nss_files/files-init.c (TF): Don't initialize flexible array
28491 member.
28492 (_nss_files_init): Set it here.
28493
5c95f7b6
HC
284942013-04-23 Heiko Carstens <heiko.carstens@de.ibm.com>
28495
28496 * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
28497 f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
28498 unsigned.
28499
d34c9158
JBG
285002013-04-22 Jan-Benedict Glaw <jbglaw@getslash.de>
28501
28502 * nss/getent.c (shadow_keys): Call endspent, not endpwent.
28503
2169712d
SP
285042013-04-22 Siddhesh Poyarekar <siddhesh@redhat.com>
28505
28506 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
28507 size just once.
28508
29c5de99
DM
285092013-04-21 David S. Miller <davem@davemloft.net>
28510
28511 * po/ru.po: Update Russion translation from translation project.
28512
ccdad15d
AC
285132013-04-17 Adam Conrad <adconrad@0c3.net>
28514
28515 * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
28516 and setfsgid.
28517
0f122b8d
CD
285182013-04-17 Carlos O'Donell <carlos@redhat.com>
28519
5c5b07da 28520 * configure.in: Remove i386 configure warning. Remove i386 case.
0f122b8d 28521 * configure: Regenerate.
5c5b07da 28522 * sysdeps/i386/configure.in: Raise error if config_machine is i386.
0f122b8d
CD
28523 Add example to error message.
28524 * sysdeps/i386/configure: Regenerate.
28525
037714dd
SP
285262013-04-17 Siddhesh Poyarekar <siddhesh@redhat.com>
28527
28528 * benchtests/Makefile (bench): Add cos, tan, slowcos and
28529 slowtan.
28530 * benchtests/cos-inputs: New file.
28531 * benchtests/slowcos-inputs: New file.
28532 * benchtests/slowcos.c: New file.
28533 * benchtests/slowtan-inputs: New file.
28534 * benchtests/slowtan.c: New file.
28535 * benchtests/tan-inputs: New file.
28536
e913141d
RM
285372013-04-16 Roland McGrath <roland@hack.frob.com>
28538
28539 * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
28540 considered kosher.
28541
a2964074
SP
285422013-04-16 Siddhesh Poyarekar <siddhesh@redhat.com>
28543
4856bcd2
SP
28544 * benchtests/Makefile: Include cppflags-iterator.mk to add
28545 -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
28546
a2964074
SP
28547 * Makefile.in (bench-clean): New target.
28548 * benchtests/Makefile (bench-clean): Likewise.
28549
9fbf9aca
DH
285502013-04-16 David Holsgrove <david.holsgrove@xilinx.com>
28551
28552 * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
28553
207d1e2a
TS
285542013-04-15 Thomas Schwinge <thomas@codesourcery.com>
28555
28556 * stdio-common/tstdiomisc.c: Fix coding-style violation.
28557
306dfba9
AS
285582013-04-15 Andreas Schwab <schwab@suse.de>
28559
28560 * nscd/grpcache.c (cache_addgr): Properly check for short write.
28561 * nscd/initgrcache.c (addinitgroupsX): Likewise.
28562 * nscd/pwdcache.c (cache_addpw): Likewise.
28563 * nscd/servicescache.c (cache_addserv): Likewise. Don't write
28564 more than recsize.
28565
206a6699
SP
285662013-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
28567
28568 * benchtests/Makefile (bench): Write all output to
28569 bench-out.tmp together.
28570
0582f6b3
AS
285712013-04-15 Andreas Schwab <schwab@suse.de>
28572
28573 * nscd/nscd.c (main): Don't fork again after closing files.
28574
acb4325f
SP
285752013-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
28576
5cb26d0a
SP
28577 * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
28578
acb4325f
SP
28579 * benchtests/Rules (bench-deps): Collect dependencies into a
28580 single variable. Add Makefile to dependencies.
28581 ($(objpfx)bench-%.c): Depend on bench-deps.
28582
47792506
RM
285832013-04-12 Roland McGrath <roland@hack.frob.com>
28584 Xavier Roche <roche+kml2@exalead.com>
28585
28586 [BZ #15361]
28587 * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
28588 just that it's a file descriptor.
28589 * manual/llio.texi (Synchronizing AIO Operations): Update description
28590 for EBADF error from aio_fsync.
28591
8fc1bee5
SP
285922013-04-12 Siddhesh Poyarekar <siddhesh@redhat.com>
28593
28594 * Rules (bench): Move target definition...
28595 * benchtests/Makefile: ... here.
28596
aba5e333
CD
285972013-04-11 Carlos O'Donell <carlos@redhat.com>
28598
28599 * math/libm-test.inc (cos_test): Fix PI/2 test.
28600 (sincos_test): Likewise.
28601 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
28602 * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
28603
273cdee8
AS
286042013-04-11 Andreas Schwab <schwab@suse.de>
28605
6ecec3b6
AS
28606 [BZ #13988]
28607 * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
28608 accept exponent character only when digits were seen.
28609 * stdio-common/Makefile (tests): Add bug26.
28610 * stdio-common/bug26.c: New file.
28611
273cdee8
AS
28612 [BZ #14293]
28613 * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
28614 non-freeable.
28615
8da491f5
SP
286162013-04-11 Siddhesh Poyarekar <siddhesh@redhat.com>
28617
01dc6df9
SP
28618 * Makeconfig (rtld-prefix): Define built linker prefix.
28619 * Rules (run-bench): Use it.
28620 * math/Makefile (run-regen-ulps): Likewise.
28621
8da491f5
SP
28622 * Rules (bench): Remove eval.
28623
abe7f530
SP
286242013-04-10 Siddhesh Poyarekar <siddhesh@redhat.com>
28625 Roland McGrath <roland@hack.frob.com>
28626 Ondrej Bilka <neleai@seznam.cz>
28627
28628 [BZ #15346]
28629 * time/getdate.c: Include ctype.h and alloca.h.
28630 (__getdate_r): Trim leading and trailing spaces of input.
28631 * time/tst-getdate.c (tests): Add tests with leading and
28632 trailing spaces.
28633
61c23e62
RM
286342013-04-08 Roland McGrath <roland@hack.frob.com>
28635
28636 [BZ #14280]
28637 * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
28638 when computing value.
28639
7208a313
CD
286402013-04-06 Carlos O'Donell <carlos@redhat.com>
28641
085b2d41
CD
28642 * math/README.libm-test (How can I generate "libm-test-ulps"?):
28643 Use testrun.sh to run libm tests.
28644
7208a313
CD
28645 [BZ #15309]
28646 * elf/dl-open.c (dl_open_worker): memset all of seen array.
28647
872c0acd
MM
286482013-04-06 Marko Myllynen <myllynen@redhat.com>
28649
28650 [BZ #15264]
28651 * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
28652
26510bdd
CD
286532013-04-06 Carlos O'Donell <carlos@redhat.com>
28654
28655 * Makefile.in (regen-ulps): New target.
28656 * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
28657 [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
28658 [ifneq (no,$(PERL)] (regen-ulps): New target.
28659 [ifeq (no,$(PERL)] (regen-ulps): New target.
28660 * math/libm-test.inc (ulps_file_name): Define.
28661 (output_dir): New variable.
28662 (options): Add "output-dir" option.
28663 (parse_opt): Handle 'o' case.
28664 (main): If output_dir is non-NULL use it as a prefix
28665 otherwise use "".
28666 * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
28667
a01f19c8
CD
286682013-04-06 Carlos O'Donell <carlos@redhat.com>
28669
28670 [BZ #10060, #10062]
28671 * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
28672 * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
28673 fail configure if __sync_val_compare_and_swap is not inlined.
28674 * sysdeps/i386/configure: Regenerate.
28675 * configure.in: Build for i686 when configured for i386.
28676 * configure: Regenerate.
28677 * README: Remove i386 reference.
28678
b7a329a5
CD
286792013-04-06 Carlos O'Donell <carlos@redhat.com>
28680
28681 * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
28682 * sysdeps/s390/s390-64/sysdep.h: Likewise.
28683
bf0f50df
TS
286842013-04-05 Thomas Schwinge <thomas@codesourcery.com>
28685
ee091edf
TS
28686 * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
28687 (lmsnanval): New variables.
28688 (F): Add conversion tests.
28689 * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
28690 * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
28691
a8b792d6
TS
28692 * stdio-common/tstdiomisc.c (F): Properly collect individual
28693 tests' results.
28694
a1cbf437
TS
28695 [BZ #14686, #15336]
28696 * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
28697 * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
28698 Instead, use input NaN values or generate a qNaN by arithmetic
28699 operation. Also fix bugs to comply with the standard.
28700 * math/libm-test.inc (remainder_test): Add more tests.
28701
8b43a0c9
TS
28702 [BZ #15335, #15342]
28703 * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
28704 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
28705 input NaN values or generate a qNaN by arithmetic operation.
28706
d91da4ce
TS
28707 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
28708 unreachable code.
28709
bf0f50df
TS
28710 * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
28711 definitions.
28712
05e166c8
JM
287132013-04-03 Joseph Myers <joseph@codesourcery.com>
28714
28715 [BZ #14478]
28716 * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
28717 underflowed result.
28718 * math/s_cexpf.c (__cexpf): Likewise.
28719 * math/s_cexpl.c (__cexpl): Likewise.
28720 * math/libm-test.inc (cexp_test): Add more tests.
28721
1cef1b19
AS
287222013-04-03 Andreas Schwab <schwab@suse.de>
28723
28724 [BZ #15330]
28725 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
28726 order arrays from heap if bigger than alloca cutoff.
28727
74d87055
TS
287282013-04-03 Thomas Schwinge <thomas@codesourcery.com>
28729
28730 * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
28731 (SNAN_TESTS_double): Refer to GCC PR56831.
28732 * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
28733 GCC PR56828.
28734
d755bba4
SP
287352013-04-03 Siddhesh Poyarekar <siddhesh@redhat.com>
28736
90d5d5bb
SP
28737 * Rules (bench): Move bench.out after the run is complete.
28738
73e0cd5d
SP
28739 * Rules (bench): Echo currently running benchmark.
28740
64aabd4b
SP
28741 * benchtests/Makefile (bench): Add atan and slowatan.
28742 * benchtests/atan-inputs: New file.
28743 * benchtests/slowatan-inputs: New file.
28744 * benchtests/slowatan.c: New file.
28745
c871eccd
SP
28746 * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
28747 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
28748 its value.
28749
d755bba4
SP
28750 [BZ #15305]
28751 * sysdeps/unix/sysv/linux/kernel-features.h
28752 [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
28753 __ASSUME_XFS_RESTRICTED_CHOWN.
28754 * sysdeps/unix/sysv/linux/pathconf.c
28755 (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
28756 Save and restore errno.
28757
52ce4860
JM
287582013-04-02 Joseph Myers <joseph@codesourcery.com>
28759
28760 [BZ #15327]
28761 * math/s_cacosh.c (__cacosh): Implement for finite nonzero
28762 arguments using __kernel_casinh.
28763 * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
28764 arguments using __kernel_casinhf.
28765 * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
28766 arguments using __kernel_casinhl.
28767 * math/libm-test.inc (cacosh_test): Add more tests.
28768 * sysdeps/i386/fpu/libm-test-ulps: Update.
28769 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28770
81f311c2
SP
287712013-04-02 Siddhesh Poyarekar <siddhesh@redhat.com>
28772
e7906a47
SP
28773 * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
28774 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
28775
92e3664b
SP
28776 * bench/Makefile (bench): Add sin and slowsin.
28777 * benchtests/sin-inputs: New file.
28778 * benchtests/slowsin-inputs: New file.
28779 * benchtests/slowsin.c: New file.
28780
81f311c2
SP
28781 * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
28782 (bench): Add slowexp and slowpow.
28783 (exp-ITER): Increase iterations.
28784 (pow-ITER): Likewise.
28785 * benchtests/exp-inputs: Change input.
28786 * benchtests/pow-inputs: Likewise.
28787 * benchtests/slowexp-inputs: New file.
28788 * benchtests/slowexp.c: New file.
28789 * benchtests/slowpow-inputs: New file.
28790 * benchtests/slowpow.c: New file.
28791
ab0f1aa9
AZ
287922013-04-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28793
28794 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
28795 instructions.
28796 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
28797 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
28798 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
28799 * benchtests/Makefile: Add rint benchtest.
28800 * benchtests/rint-inputs: Input for rint benchtest.
28801
57267616
TS
288022013-04-02 Thomas Schwinge <thomas@codesourcery.com>
28803
28804 * Versions.def (libm): Add GLIBC_2.18.
28805 * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
28806 hidden libm prototypes.
28807 [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
28808 * math/Makefile (libm-calls): Add s_issignaling.
28809 * math/Versions (libm: GLIBC_2.18): Add __issignaling,
28810 __issignalingf, __issignalingl. Adjust all libm.abilist files.
28811 * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
28812 declaration.
28813 * math/math.h [__USE_GNU] (issignaling): New macro.
28814 * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
28815 * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
28816 * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
28817 * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
28818 * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
28819 * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
28820 * manual/arith.texi (issignaling): New section.
28821 * manual/libm-err-tab.pl (@all_functions): Update comment.
28822 * math/gen-libm-test.pl (parse_args): Apply special handling for
28823 issignaling.
28824 * math/libm-test.inc (print_float, issignaling_test): New
28825 functions.
28826 (check_float_internal): Add issignaling checks.
28827 * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
28828 default definition.
28829 * sysdeps/powerpc/math-tests.h: New file.
28830 * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
28831 tests.
28832 * math/test-snan.c (TEST_FUNC): Likewise.
28833
6142896d
DM
288342013-03-30 David S. Miller <davem@davemloft.net>
28835
28836 * po/de.po: Update from translation team.
28837
ccc8cadf
JM
288382013-03-30 Joseph Myers <joseph@codesourcery.com>
28839
28840 [BZ #10357]
28841 * math/k_casinh.c (__kernel_casinh): Handle arguments with
28842 imaginary part less than 1.0 and real part less than 0.5
28843 specially.
28844 * math/k_casinhf.c (__kernel_casinhf): Likewise.
28845 * math/k_casinhl.c (__kernel_casinhl): Likewise.
28846 * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
28847 (cacos_test): Add more tests.
28848 (casin_test): Likewise.
28849 (casinh_test): Likewise.
28850 * sysdeps/i386/fpu/libm-test-ulps: Update.
28851 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28852
0f6a8d4b
SP
288532013-03-29 Siddhesh Poyarekar <siddhesh@redhat.com>
28854
0d1029de
SP
28855 * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
28856 ONE with its value.
28857
c2d94018
SP
28858 * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
28859 (__pow_mp): Replace ONE and MONE with their values.
28860 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
28861 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
28862 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
28863 * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
28864 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
28865 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
28866
27ec37f1
SP
28867 * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
28868
a64d7e0e
SP
28869 * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
28870 (__pow_mp): Replace ZERO and MZERO with their values.
28871 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
28872 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
28873 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
28874 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
28875 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
28876 * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
28877 (__sqr): Likewise.
28878
d26dd3eb
SP
28879 * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
28880
0f6a8d4b
SP
28881 * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
28882
e57b0c61
RM
288832013-03-28 Roland McGrath <roland@hack.frob.com>
28884
28885 * include/stdlib.h [!SHARED] (__call_tls_dtors):
28886 Declare with __attribute__ ((weak)).
28887 * stdlib/exit.c (__libc_atexit) [!SHARED]:
28888 Call __call_tls_dtors only if it's not NULL.
28889
356b3480
RM
288902013-03-28 Roland McGrath <roland@hack.frob.com>
28891
288f7d79
RM
28892 * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
28893 didn't do it already, then set _dl_phdr and _dl_phnum based on the
28894 magic __ehdr_start linker symbol if it's defined.
28895 * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
28896 them up here if it was already done.
28897
dc0a0263
RM
28898 * elf/dl-support.c (_dl_phdr): Make pointer to const.
28899 (_dl_aux_init): Use const in cast when setting it.
28900 * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
28901 * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
28902 * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
28903
3d3436ae
RM
28904 * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
28905 Declare them here.
28906 * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
28907 * csu/libc-tls.c: Nor here.
28908 * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
28909
356b3480
RM
28910 * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
28911 (__libc_message): Never call vsyslog.
28912
b0f1246a
AM
289132013-03-28 Alan Modra <amodra@gmail.com>
28914
28915 * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
28916 Define as empty.
28917 * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
28918 Likewise.
28919
fbbe2b9a
AZ
289202013-03-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
28921
28922 [BZ #15214]
28923 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
28924 underflow.
28925 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28926
1728ab37
SP
289272013-03-28 Siddhesh Poyarekar <siddhesh@redhat.com>
28928
7a86be6e
SP
28929 [BZ #15304]
28930 * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
28931 Don't add gid passed as argument.
28932
1728ab37
SP
28933 * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
28934
3a7182a1
JM
289352013-03-27 Joseph Myers <joseph@codesourcery.com>
28936
28937 [BZ #15307]
28938 * math/k_casinh.c (__kernel_casinh): Handle arguments with
28939 imaginary part between 1.0 and 1.5 and real part less than 0.5
28940 specially.
28941 * math/k_casinhf.c (__kernel_casinhf): Likewise.
28942 * math/k_casinhl.c (__kernel_casinhl): Likewise.
28943 * math/libm-test.inc (cacos_test): Add more tests.
28944 (casin_test): Likewise.
28945 (casinh_test): Likewise.
28946 * sysdeps/i386/fpu/libm-test-ulps: Update.
28947 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28948
6f2e90e7
SP
289492013-03-26 Siddhesh Poyarekar <siddhesh@redhat.com>
28950
5739f705
SP
28951 * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
28952 constants.
28953 (norm): Likewise.
28954 (denorm): Likewise.
28955 (__dbl_mp): Likewise.
28956 (add_magnitudes): Likewise.
28957 (sub_magnitudes): Likewise.
28958 (__add): Likewise.
28959 (__sub): Likewise.
28960 (__mul): Likewise.
28961 (__sqr): Likewise.
28962 (__inv): Likewise.
28963 (__dvd): Likewise.
28964
e375e83d
SP
28965 * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
28966 commented code.
28967 * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
28968 (__dubcos): Likewise.
28969 * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
28970 (__ieee754_acos): Likewise.
28971 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
28972 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
28973 (__exp1): Likewise.
28974 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
28975 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
28976 (log1): Likewise.
28977 (my_log2): Likewise.
28978 (checkint): Likewise.
28979 * sysdeps/ieee754/dbl-64/e_remainder.c
28980 (__ieee754_remainder): Likewise.
28981 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
28982 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
28983 (bsloww): Likewise.
28984 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
28985
6f2e90e7
SP
28986 * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
28987 * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
28988 MANTISSA_STORE_T to store computations on mantissa. Use
28989 macros for rounding and division.
28990 (denorm): Likewise.
28991 (__dbl_mp): Likewise.
28992 (add_magnitudes): Likewise.
28993 (sub_magnitudes): Likewise.
28994 (__mul): Likewise.
28995 (__sqr): Likewise.
28996 * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h. Define
28997 powers of two in terms of TWOPOW macro.
28998 (mp_no): Make type of mantissa as MANTISSA_T.
28999 [!RADIXI]: Define RADIXI.
29000 [!TWO52]: Define TWO52.
29001 * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
29002
fce14d4e
AZ
290032013-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
29004
29005 * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
29006 llroundl symbol when building for PPC32.
29007
9ad027fb
MW
290082013-03-24 Mark H Weaver <mhw@netris.org>
29009
29010 * manual/arith.texi (Normalization Functions): Fix prototypes for
29011 scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
29012
e42a38dd
AZ
290132013-03-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
29014
29015 [BZ #13889]
29016 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
29017 high value to check if expl overflow.
29018 * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
29019 to check for underflow and overflow.
29020 * math/libm-test.inc: Add exp test.
29021
2e0fb521
DL
290222013-03-21 Dmitry V. Levin <ldv@altlinux.org>
29023
29024 [BZ #11120]
29025 * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
29026 with NOT_IN_libc.
29027
b5784d95
AZ
290282013-03-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
29029
29030 * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
29031 symbol.
29032
5aa4a1a1
TS
290332013-03-21 Thomas Schwinge <thomas@codesourcery.com>
29034
bdef0be7
TS
29035 * math/gen-libm-test.pl (parse_args, special_functions): Properly
29036 wrap blocks consisting of several statements.
29037
5aa4a1a1
TS
29038 * sysdeps/generic/math-tests.h: New file.
29039 * sysdeps/i386/fpu/math-tests.h: Likewise.
29040 * math/test-snan.c: Include it.
29041 (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
29042
98c48fe5
JM
290432013-03-21 Joseph Myers <joseph@codesourcery.com>
29044
29045 [BZ #15285]
29046 * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
29047 (__ieee754_j0l): Do not improve calculations using cos of twice
29048 input for inputs above LDBL_MAX / 2.0L.
29049 (__ieee754_y0l): Likewise.
29050 * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
29051 (__ieee754_j1l): Do not improve calculations using cos of twice
29052 input for inputs above LDBL_MAX / 2.0L.
29053 (__ieee754_y1l): Likewise.
29054 * math/libm-test.inc (j0_test): Add another test.
29055 (j1_test): Likewise.
29056 (y0_test): Likewise.
29057 (y1_test): Likewise.
29058 * sysdeps/i386/fpu/libm-test-ulps: Update.
29059
3775a8bc
SP
290602013-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
29061
29062 * Rules ($(objpfx)bench-%.c): Include code from a C source
29063 file.
29064
0a1b2ae6
JM
290652013-03-21 Joseph Myers <joseph@codesourcery.com>
29066
29067 [BZ #15287]
29068 * math/k_casinh.c (__kernel_casinh): Handle arguments with
29069 imaginary part 1.0 and real part less than 0.5 specially.
29070 * math/k_casinhf.c (__kernel_casinhf): Likewise.
29071 * math/k_casinhl.c (__kernel_casinhl): Likewise.
29072 * math/libm-test.inc (cacos_test): Add more tests.
29073 (casin_test): Likewise.
29074 (casinh_test): Likewise.
29075 * sysdeps/i386/fpu/libm-test-ulps: Update.
29076 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29077
b33d4ce4
SP
290782013-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
29079
29080 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
29081 * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
29082
bef0b507
JM
290832013-03-20 Joseph Myers <joseph@codesourcery.com>
29084
29085 * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
29086 * config.make.in (config-cflags-sse4): Remove variable.
29087 (config-cflags-avx): Likewise.
29088 (config-cflags-sse2avx): Likewise.
29089 (config-cflags-novzeroupper): Likewise.
29090 (config-asflags-i686): Likewise.
29091 (have-mfma4): Likewise.
29092 (have-as-vis3): Likewise.
29093 (MIG): Likewise.
29094 * configure.in (MIG): Do not AC_SUBST.
29095 (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
29096 (libc_cv_cc_sse4): Do not AC_SUBST.
29097 (libc_cv_cc_avx): Likewise.
29098 (libc_cv_cc_sse2avx): Likewise.
29099 (libc_cv_cc_novzeroupper): Likewise.
29100 (libc_cv_cc_fma4): Likewise.
29101 (libc_cv_as_i686): Likewise.
29102 (libc_cv_sparc_as_vis3): Likewise.
29103 * sysdeps/i386/configure.in (config-cflags-sse4): Set using
29104 LIBC_CONFIG_VAR.
29105 (config-asflags-i686): Likewise.
29106 (config-cflags-avx): Likewise.
29107 (config-cflags-sse2avx): Likewise.
29108 (have-mfma4): Likewise.
29109 (config-cflags-novzeroupper): Likewise.
29110 * sysdeps/mach/configure.in (MIG): Likewise.
29111 * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
29112 * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
29113 LIBC_CONFIG_VAR.
29114 (config-cflags-avx): Likewise.
29115 (config-cflags-sse2avx): Likewise.
29116 (have-mfma4): Likewise.
29117 (config-cflags-novzeroupper): Likewise.
29118 * configure: Regenerated.
29119 * sysdeps/i386/configure: Likewise.
29120 * sysdeps/mach/configure: Likewise.
29121 * sysdeps/sparc/configure: Likewise.
29122 * sysdeps/x86_64/configure: Likewise.
29123
912cc4b3
RM
291242013-03-20 Roland McGrath <roland@hack.frob.com>
29125
29126 [BZ #14812]
29127 * locale/programs/localedef.c (options): Put N_ translation marker
29128 on argument names, not just descriptions.
29129
04eed2b0
MS
291302013-03-20 Marcus Shawcroft <marcus.shawcroft@linaro.org>
29131
29132 * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
29133
a065ceff
OB
291342013-03-20 Ondřej Bílka <neleai@seznam.cz>
29135
9bb2a810 29136 [BZ #14176]
a065ceff
OB
29137 * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
29138
a600e5ce
RM
291392013-03-19 Roland McGrath <roland@hack.frob.com>
29140
29141 * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
29142 [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
29143 [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
29144 [!BEFORE_ABORT] (before_abort): New function.
29145 [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
29146 * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
29147 (writev_for_fatal): New function.
29148 (WRITEV_FOR_FATAL): New macro; call that.
29149 (backtrace_and_maps): New function.
29150 (BEFORE_ABORT): New macro; call that.
29151 (struct str_list): Type removed.
29152 (__libc_message, __libc_fatal): Functions removed.
29153 Include <sysdeps/posix/libc_fatal.c> instead.
29154
6b18bea6
JM
291552013-03-19 Joseph Myers <joseph@codesourcery.com>
29156
29157 * math/k_casinhf.c (__kernel_casinhf): Consistently use float
29158 constants.
29159 * math/k_casinhl.c (__kernel_casinhl): Consistently use long
29160 double constants.
29161
aaa8cb4b
AS
291622013-03-19 Andreas Schwab <schwab@suse.de>
29163
44673770
AS
29164 * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
29165 * sysdeps/gnu/configure: Regenerate.
29166
aaa8cb4b
AS
29167 * configure.in: Substitute libc_cv_rtlddir.
29168 * configure: Regenerate.
29169 * config.make.in (rtlddir): Set from libc_cv_rtlddir.
29170 * Makeconfig (rtlddir, inst_rtlddir): New variables.
29171 (rtld-LDFLAGS): Use them with $(rtld-installed-name).
29172 * elf/Makefile (install-others, CFLAGS-interp.c)
29173 (ldso_install, common-ldd-rewrite): Likewise.
29174 ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
29175 $(inst_slibdir)/$(rtld-installed-name).
29176 * scripts/rellns-sh: Add -p option.
29177 * Makerules (make-shlib-link): Use rellns-sh to get relative name
29178 for source.
29179
d3cfc668
SP
291802013-03-19 Siddhesh Poyarekar <siddhesh@redhat.com>
29181
29182 * manual/nptl.texi: Renamed to ...
29183 * manual/threads.texi: ... this.
29184 * manual/Makefile (chapters): Update.
29185
0e2b9cdd
RM
291862013-03-18 Roland McGrath <roland@hack.frob.com>
29187
29188 [BZ #14812]
29189 * argp/argp-parse.c (argp_default_options): Put N_ translation marker
29190 on argument names, not just descriptions.
0e2b9cdd
RM
29191 * malloc/memusagestat.c (options): Likewise.
29192 * nss/getent.c (options): Likewise.
63270c24
RM
29193
291942013-03-18 Benno Schulenberg <bensberg@justemail.net>
29195
29196 [BZ #14812]
29197 * iconv/iconv_prog.c (options): Put N_ translation marker
29198 on argument names, not just descriptions.
29199 * iconv/iconvconfig.c (options): Likewise.
0e2b9cdd 29200
b2e1393c
OB
292012013-03-18 Ondrej Bilka <neleai@seznam.cz>
29202
29203 * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
29204 implementation which is faster on all x86_64 architectures.
29205 Tested on AMD, Intel Nehalem, SNB, IVB.
29206 * sysdeps/x86_64/strnlen.S: Likewise.
29207
29208 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
29209 Remove all multiarch strlen and strnlen versions.
29210 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
29211 Remove strlen and strnlen related parts.
29212
29213 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
29214 Inline strlen part.
29215 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
29216
29217 * sysdeps/x86_64/multiarch/strlen.S: Remove.
29218 * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
29219 * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
29220 * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
29221 * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
29222 * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
29223
ec4ff04d
CD
292242013-03-17 Carlos O'Donell <carlos@redhat.com>
29225
29226 * manual/memory.texi (Malloc Tunable Parameters):
29227 Sort parameters alphabetically. Add comments for missing entries.
29228
cd18e90a
DM
292292013-03-17 David S. Miller <davem@davemloft.net>
29230
29231 * sysdeps/sparc/fpu/libm-test-ulps: Update.
29232
2a185d32
JM
292332013-03-16 Joseph Myers <joseph@codesourcery.com>
29234
d2f9799e
JM
29235 [BZ #15283]
29236 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
29237 for arguments at most half maximum finite value.
29238 * math/libm-test.inc (j0_test): Add more tests.
29239 (j1_test): Likewise.
29240 (y0_test): Likewise.
29241 (y1_test): Likewise.
29242 * sysdeps/i386/fpu/libm-test-ulps: Update.
29243 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29244
2a185d32
JM
29245 [BZ #14155]
29246 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
29247 1 / x and functions P and Q for arguments above 0x1p256L.
29248 (__ieee754_y0l): Likewise.
29249 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
29250 (__ieee754_y1l): Likewise.
29251 * math/libm-test.inc (j0_test): Do not allow spurious underflows.
29252 (j1_test): Likewise.
29253 (y0_test): Likewise.
29254 (y1_test): Likewise.
29255
6cbec759
TS
292562013-03-16 Thomas Schwinge <thomas@codesourcery.com>
29257
29258 * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
29259 variable.
29260
bc16e260
RM
292612013-03-15 Roland McGrath <roland@hack.frob.com>
29262
aefc9b8c
RM
29263 * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
29264 (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
29265 zero since it's initialized to EXEC_PAGESIZE.
29266
bc16e260
RM
29267 * sysdeps/unix/sysv/linux/ldsodefs.h
29268 (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
29269 * sysdeps/generic/ldsodefs.h: ... here.
29270
a57da955
TS
292712013-03-15 Thomas Schwinge <thomas@codesourcery.com>
29272
af00a34d
TS
29273 * math/libm-test.inc (ldexp_test): Add missing START/END markers.
29274
495ded2c
TS
29275 * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
29276 math/test-snan.c.
29277 * math/test-snan.c: Renamed from
29278 sysdeps/powerpc/fpu/test-powerpc-snan.c.
29279 * math/Makefile (tests): Add test-snan.
29280 * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
29281 test-powerpc-snan.
29282
777b0332
TS
29283 * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
29284 SUFFIX. Initialize qNaN_var with __builtin_nan family of
29285 functions.
29286 (TEST_TRUNC): Add SUFFIX argument. Initialize qNaN_var with
29287 __builtin_nan family of functions.
29288 * math/libm-test.inc (initialize): Initialize qnan_value with
29289 __builtin_nan family of functions.
29290 * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
29291 Remove variables.
29292 (init_signaling_nan, snan_float, snan_double, snan_ldouble):
29293 Remove functions.
29294 (TEST_FUNC): Add SUFFIX argument. Move sNaN_var into static
29295 storage class. Initialize qNaN_var and sNaN_var with
29296 __builtin_nan and __builtin_nans families of functions,
29297 respectively.
29298
64d063b8
TS
29299 * math/libm-test.inc (acosh_test): Also test with qNaN input.
29300 (sqrt_test): Remove duplicate test with qNaN input.
29301 (lrint_test, llrint_test, lround_test, llround_test, rint_test)
29302 (round_test, signbit_test, significand_test): Note missing +/-Inf
29303 as well as qNaN tests.
29304
67e971f1
TS
29305 * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
29306 qNaN_var. Fix a few strings, too.
29307 * math/libm-test.inc (nan_value): Rename to qnan_value.
29308 * math/gen-libm-test.pl (%beautify): Adjust to that.
29309 * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
29310 * math/test-misc.c (main): Likewise.
29311 * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
29312 to __qnan_bytes, and __qnan_union, respectively.
29313 * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
29314 Likewise.
29315 * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
29316 and lqnanval, respectively.
29317 * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
29318 * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
29319 * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
29320 and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
29321
64487e12
TS
29322 * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
29323 * math/test-misc.c (main) [__x86_64__]: Enable test for long
29324 doubles.
29325
e015e27b
TS
29326 * math/test-misc.c (main): Fix copy'n'pastos.
29327 * misc/tst-efgcvt.c (special): Likewise.
29328
a57da955
TS
29329 * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
29330 Remove declarations.
29331
1e380345
SP
293322013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
29333
29334 * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
29335 * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
29336 * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
29337 * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
29338
ef26eece
AZ
293392013-03-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
29340
29341 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
29342 macro to return vdso values correctly in IFUNC implementations.
29343 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
29344 Optimization by using IFUNC.
29345
8cfdb7e0
SP
293462013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
29347 Richard Henderson <rth@redhat.com>
29348 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
29349
29350 * Makefile.in (bench): New target.
29351 * NEWS: Mention the benchmark framework.
29352 * Rules (bench): Likewise.
29353 (binaries-bench): Generate binaries for functions to
29354 benchmark.
29355 * benchtests/Makefile: New makefile for benchmark tests.
29356 * benchtests/bench-skeleton.c: New skeleton file for benchmark
29357 programs.
29358 * benchtests/exp-inputs: New input file for EXP function.
29359 * benchtests/pow-inputs: New input file for POW function.
29360 * scripts/bench.pl: New script to generate source files for
29361 benchmark programs.
29362
bcda9880
SP
293632013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
29364
d22ca8cd
SP
29365 * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
29366 * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
29367 computations on mantissa. Use macros for rounding and
29368 division.
29369 (denorm): Likewise.
29370 (__dbl_mp): Likewise.
29371 (add_magnitudes): Likewise.
29372 (sub_magnitudes): Likewise.
29373 (__mul): Likewise.
29374 (__sqr): Likewise.
29375 * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h. Define
29376 powers of two in terms of TWOPOW macro.
29377 (mp_no): Make type of mantissa as MANTISSA_T.
29378 [!RADIXI]: Define RADIXI.
29379 [!TWO52]: Define TWO52.
29380 * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
29381
bcda9880
SP
29382 * manual/nptl.texi (cindex): Modify threads to pthreads.
29383
06d5adfb
JM
293842013-03-15 Joseph Myers <joseph@codesourcery.com>
29385
29386 * sysdeps/x86_64/preconfigure: Regenerated.
29387
41c7328e
JM
293882013-03-14 Joseph Myers <joseph@codesourcery.com>
29389
29390 [BZ #14155]
29391 * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
29392 0x1p28 and above.
29393 (qzero): Return -0.125 / x for arguments 0x1p28 and above.
29394 * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
29395 0x1p28 and above.
29396 (qzero): Return 0.375 / x for arguments 0x1p28 and above.
29397 * math/libm-test.inc (j0_test): Do not allow one spurious
29398 underflow exception.
29399 (y1_test): Likewise.
29400
e25cfa60
SP
294012013-03-14 Siddhesh Poyarekar <siddhesh@redhat.com>
29402
0409959c
SP
29403 * manual/Makefile (chapters): Add nptl.
29404 * manual/debug.texi (Debugging Support): Add link to Threads
29405 chapter.
29406 * manual/nptl.texi: New file.
29407
e25cfa60
SP
29408 * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
29409
58a1335e
PB
294102013-03-14 Petr Baudis <pasky@ucw.cz>
29411
29412 * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
29413 for non-NULL pointer before the memory validity test. Pointed
29414 out by Holger Brunck <holger.brunck@keymile.com>.
29415
9dc7c64f
AS
294162013-03-13 Andreas Schwab <schwab@suse.de>
29417
29418 * extra-lib.mk (extra-objs): Add static-only-routines as .oS
29419 instead of .os.
29420
54206aa6
JM
294212013-03-13 Joseph Myers <joseph@codesourcery.com>
29422
29423 * timezone/zic.c: Update from tzcode 2013b.
29424
e98cdb38
CD
294252013-03-12 Carlos O'Donell <carlos@redhat.com>
29426
29427 * manual/install.texi (Configuring and compiling):
29428 Mention i686 and i586.
29429 * INSTALL: Regenerate.
29430
9967e003
RM
294312013-03-12 Roland McGrath <roland@hack.frob.com>
29432
29433 * sysdeps/init_array/elf-init.c: New file.
29434 * csu/elf-init.c
29435 (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
29436 (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
29437
29438 * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
29439 __gmon_start__ as global, but as static with a .preinit_array pointer.
29440 * sysdeps/init_array/gmon-start.c: New file. Use that.
29441 * sysdeps/init_array/crti.S: New file, empty except for comments.
29442 * sysdeps/init_array/crtn.S: Likewise.
29443
e6b5a293 294442013-03-11 Ondřej Bílka <neleai@seznam.cz>
80f844c9
OB
29445
29446 * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
29447 definining bcopy.
80f844c9
OB
29448 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
29449 Remove Prefer_SSE_for_memop.
29450 * sysdeps/x86_64/multiarch/init-arch.h: Remove
29451 bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
29452 HAS_PREFER_SSE_FOR_MEMOP.
80f844c9
OB
29453 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
29454 memset-x86-64.
80f844c9 29455 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
e6b5a293 29456 Remove bzero, memset ifunc support.
80f844c9
OB
29457 * sysdeps/x86_64/multiarch/bzero.S: Remove file.
29458 * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
29459 * sysdeps/x86_64/multiarch/memset.S: Likewise.
29460 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
29461
fb6b0fcb
AS
294622013-03-11 Andreas Schwab <schwab@suse.de>
29463
29464 [BZ #15234]
29465 * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
29466 by SHLIB_COMPAT.
29467 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
29468 (GLIBC_2.16): Remove pthread_atfork.
29469
3e6bd4b1
PP
294702013-03-08 Paul Pluzhnikov <ppluzhnikov@google.com>
29471
29472 * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
29473 (ptestcases.h): Likewise.
29474
222d7f00
RM
294752013-03-08 Roland McGrath <roland@hack.frob.com>
29476
29477 * Makeconfig ($(common-objpfx)config.status): Depend on
29478 sysdeps/*/preconfigure{,.in} too.
29479
1ba4f030
JM
294802013-03-08 Joseph Myers <joseph@codesourcery.com>
29481
a222d91a
JM
29482 * malloc/malloc.h (__malloc_ptr_t): Remove macro.
29483 (__free_hook): Use void * instead of __malloc_ptr_t.
29484 (__malloc_hook): Likewise.
29485 (__realloc_hook): Likewise.
29486 (__memalign_hook): Likewise.
29487 (__after_morecore_hook): Likewise.
29488 * malloc/arena.c (save_malloc_hook): Likewise.
29489 (save_free_hook): Likewise.
29490 * malloc/hooks.c (malloc_hook_ini): Likewise.
29491 (realloc_hook_ini): Likewise.
29492 (memalign_hook_ini): Likewise.
29493 * malloc/malloc.c (malloc_hook_ini): Likewise.
29494 (realloc_hook_ini): Likewise.
29495 (memalign_hook_ini): Likewise.
29496 (__free_hook): Likewise.
29497 (__malloc_hook): Likewise.
29498 (__realloc_hook): Likewise.
29499 (__memalign_hook): Likewise.
29500 (__libc_malloc): Likewise.
29501 (__libc_free): Likewise.
29502 (__libc_realloc): Likewise.
29503 (__libc_memalign): Likewise.
29504 (__libc_valloc): Likewise.
29505 (__libc_pvalloc): Likewise.
29506 (__libc_calloc): Likewise.
29507 (__posix_memalign): Likewise.
29508 * malloc/morecore.c (__sbrk): Likewise.
29509 (__default_morecore): Likewise.
29510
5cc45e10
JM
29511 * malloc/morecore.c (__default_morecore): Use ISO C prototype.
29512
dd54b864
JM
29513 * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
29514 * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
29515 __malloc_ptrdiff_t.
29516
1ba4f030
JM
29517 * malloc/malloc.h (__malloc_size_t): Remove macro.
29518 * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
29519 __malloc_size_t.
29520 (old_memalign_hook): Likewise.
29521 (old_realloc_hook): Likewise.
29522 (struct hdr): Likewise.
29523 (flood): Likewise.
29524 (mallochook): Likewise.
29525 (memalignhook): Likewise.
29526 (reallochook): Likewise.
29527 * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
29528 (tr_old_realloc_hook): Likewise.
29529 (tr_old_memalign_hook): Likewise.
29530 (tr_mallochook): Likewise.
29531 (tr_reallochook): Likewise.
29532 (tr_memalignhook): Likewise.
29533
edf66e57
AZ
295342013-03-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
29535
29536 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
29537 default_ldbl_pack and using as default implementation.
29538 (ldbl_unpack): Rename to default_ldbl_unpack and using as default
29539 implementation.
29540 * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
29541 redundant definition.
29542 (ldbl_insert_mantissa): Likewise.
29543 (ldbl_canonicalize): Likewise.
29544 (ldbl_nearbyint): Likewise.
29545 (ldbl_pack): Rename to ldbl_pack_ppc.
29546 (ldbl_unpack): Rename to ldbl_unpack_ppc.
29547 * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
29548 * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
29549
6d9145d8
SP
295502013-03-08 Siddhesh Poyarekar <siddhesh@redhat.com>
29551
29552 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
29553 * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
29554 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
29555 * sysdeps/powerpc/power4/fpu/Makefile: ... here.
29556 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
29557 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
29558 * sysdeps/powerpc/powerpc32/power4/Implies: New file.
29559 * sysdeps/powerpc/powerpc64/power4/Implies: New file.
29560
4dd4e157
AJ
295612013-03-07 Andreas Jaeger <aj@suse.de>
29562
29563 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
29564 bits/mman-linux.h.
29565
adbb8027
SP
295662013-03-07 Siddhesh Poyarekar <siddhesh@redhat.com>
29567
ce544b5b
SP
29568 * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
29569 Include mpa.h and declare __MPEXP.
29570 [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
29571 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
29572 (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
29573 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
29574 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
29575 (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
29576 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
29577
4cc149fd
SP
29578 * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
29579 (__slowpow): Use long double EXPL and LOGL functions to
29580 compute POW.
29581 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
29582 (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
29583 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
29584 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
29585 (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
29586 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
29587
e6ebd4a7
SP
29588 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
29589 intermediate variable to calculate exponent.
29590 (__sqr): Likewise.
29591 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
29592 Likewise.
29593 (__sqr): Likewise.
29594
82a9811d
SP
29595 * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
29596 [!NO__SQR]: Define __sqr.
29597 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
29598 and NO__SQR. Remove all code except __mul and __sqr. Include
29599 sysdeps/ieee754/dbl-64/mpa.c.
29600 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
29601
adbb8027
SP
29602 [BZ #12723]
29603 * posix/Makefile (tests): Add tst-pathconf.
29604 * posix/tst-pathconf.c: New test case.
29605 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
29606 _PC_PIPE_BUF.
29607 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
29608
39120df9
PF
296092013-03-06 Patsy Franklin <pfrankli@redhat.com>
29610
29611 * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
29612
67525cb8
AJ
296132013-03-06 Andreas Jaeger <aj@suse.de>
29614
664a9ce4
AJ
29615 * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
29616 definition via __MAP_ANONYMOUS.
29617
8e39047d
AJ
29618 * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
29619 it's not part of Linux headers.
29620
67525cb8
AJ
29621 * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
29622 (MAP_HUGE_MASK): Define.
29623
29624 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29625 Define.
29626 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29627 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29628 Define.
29629 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29630 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
29631 Define.
29632 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29633 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
29634 Define.
29635 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
29636
29637 * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
29638 * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
29639 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
29640 * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
29641 * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
29642 * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
29643
29644 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
29645 Handle f2fs.
29646
29647 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
29648 Handle f2fs and efivarfs.
29649
29650 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
29651 f2fs.
29652
29653 * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
29654 (EFIVARFS_MAGIC): Add.
29655 (F2FS_LINK_MAX): Add.
29656
e1b42695
PP
296572013-03-06 Paul Pluzhnikov <ppluzhnikov@google.com>
29658
29659 * stdio-common/vfprintf.c: Replace __builtin_expect with
29660 __glibc_unlikely.
29661
2d67d91a
JM
296622013-03-06 Joseph Myers <joseph@codesourcery.com>
29663
29664 [BZ #13550]
29665 * sysdeps/generic/bp-sym.h: Remove file.
29666 * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
29667 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
29668 <bp-sym.h> and <bp-asm.h>.
29669 (__longjmp): Don't use BP_SYM.
29670 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
29671 and <bp-asm.h>.
29672 (memcpy): Don't use BP_SYM.
29673 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
29674 <bp-sym.h> and <bp-asm.h>.
29675 (memcpy): Don't use BP_SYM.
29676 * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
29677 <bp-asm.h>.
29678 (memcpy): Don't use BP_SYM.
29679 * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
29680 <bp-asm.h>.
29681 (memset): Don't use BP_SYM.
29682 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29683 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29684 (__bzero): Don't use BP_SYM.
29685 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29686 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29687 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
29688 <bp-sym.h> and <bp-asm.h>.
29689 (memcmp): Don't use BP_SYM. Remove comment about bounded
29690 pointers.
29691 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
29692 <bp-sym.h> and <bp-asm.h>.
29693 (memcpy): Don't use BP_SYM.
29694 * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
29695 <bp-sym.h> and <bp-asm.h>.
29696 (memset): Don't use BP_SYM.
29697 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29698 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29699 (__bzero): Don't use BP_SYM.
29700 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29701 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29702 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
29703 <bp-sym.h> and <bp-asm.h>.
29704 (strncmp): Don't use BP_SYM. Remove comment about bounded
29705 pointers.
29706 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
29707 <bp-sym.h> and <bp-asm.h>.
29708 (memcpy): Don't use BP_SYM.
29709 * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
29710 <bp-sym.h> and <bp-asm.h>.
29711 (memset): Don't use BP_SYM.
29712 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29713 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29714 (__bzero): Don't use BP_SYM.
29715 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29716 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29717 * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
29718 <bp-sym.h> and <bp-asm.h>.
29719 (__memchr): Don't use BP_SYM.
29720 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
29721 <bp-sym.h> and <bp-asm.h>.
29722 (memcmp): Don't use BP_SYM. Remove comment about bounded
29723 pointers.
29724 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
29725 <bp-sym.h> and <bp-asm.h>.
29726 (memcpy): Don't use BP_SYM.
29727 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
29728 <bp-sym.h> and <bp-asm.h>.
29729 (__mempcpy): Don't use BP_SYM.
29730 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
29731 <bp-sym.h> and <bp-asm.h>.
29732 (__memrchr): Don't use BP_SYM.
29733 * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
29734 <bp-sym.h> and <bp-asm.h>.
29735 (memset): Don't use BP_SYM.
29736 (__bzero): Likewise.
29737 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
29738 <bp-sym.h> and <bp-asm.h>.
29739 (__rawmemchr): Don't use BP_SYM.
29740 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
29741 <bp-sym.h> and <bp-asm.h>.
29742 (__STRCMP): Don't use BP_SYM.
29743 * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
29744 <bp-sym.h> and <bp-asm.h>.
29745 (strchr): Don't use BP_SYM.
29746 * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
29747 <bp-sym.h> and <bp-asm.h>.
29748 (__strchrnul): Don't use BP_SYM.
29749 * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
29750 <bp-sym.h> and <bp-asm.h>.
29751 (strlen): Don't use BP_SYM.
29752 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
29753 <bp-sym.h> and <bp-asm.h>.
29754 (strncmp): Don't use BP_SYM. Remove comment about bounded
29755 pointers.
29756 * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
29757 <bp-sym.h> and <bp-asm.h>.
29758 (__strnlen): Don't use BP_SYM.
29759 * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
29760 <bp-sym.h> and <bp-asm.h>.
29761 (__GI__setjmp): Don't use BP_SYM.
29762 (_setjmp): Likewise.
29763 (__sigsetjmp): Likewise.
29764 * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
29765 (L(start_addresses)): Don't use BP_SYM.
29766 (_start): Likewise.
29767 * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
29768 <bp-asm.h>.
29769 (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
29770 STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
29771 (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29772 (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
29773 * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
29774 <bp-asm.h>.
29775 (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
29776 CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE. Remove comment
29777 about bounded pointers.
29778 (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
29779 (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29780 * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
29781 <bp-asm.h>.
29782 (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove comment
29783 about bounded pointers. Remove GKM FIXME comments.
29784 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
29785 * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
29786 <bp-asm.h>.
29787 (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
29788 STORE_RETURN_BOUNDS. Remove comment about bounded pointers.
29789 Remove GKM FIXME comments.
29790 (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29791 (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
29792 * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
29793 <bp-asm.h>.
29794 (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove comment
29795 about bounded pointers. Remove GKM FIXME comment.
29796 * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
29797 and <bp-asm.h>.
29798 (strncmp): Don't use BP_SYM. Remove comment about bounded
29799 pointers.
29800 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
29801 <bp-sym.h> and <bp-asm.h>.
29802 (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
29803 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
29804 <bp-sym.h> and <bp-asm.h>.
29805 (__clone): Don't use BP_SYM and DISCARD_BOUNDS. Remove GKM FIXME
29806 comment.
29807
cdcf361f
PP
298082013-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
29809
29810 * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
29811 call free(NULL).
29812
3c4a2b15
DM
298132013-03-05 David S. Miller <davem@davemloft.net>
29814
29815 * po/es.po: Update from translation team.
29816
cdcf361f 298172013-03-05 Andreas Jaeger <aj@suse.de>
890b58d3
AJ
29818
29819 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
29820 <bits/mman-linux.h>.
29821 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29822 is fine.
29823 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
29824 <bits/mman-linux.h> to end of file.
29825 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29826 is fine.
29827 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
29828 <bits/mman-linux.h> to end of file.
29829 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
29830 is fine.
29831 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
29832 <bits/mman-linux.h> to end of file.
29833
29834 * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
29835 (MCL_CURRENT, MCL_FUTURE): Define here.
29836
5f67c04f
AK
298372013-03-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
29838
8a4473cc 29839 [BZ #15232]
5f67c04f
AK
29840 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
29841 attribute_hidden.
29842 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
29843
c3e94a95
AK
298442013-03-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
29845
29846 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
29847 fourth parameter needed for rt_sigprocmask syscall.
29848 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
29849 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
29850 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
29851 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
29852 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
29853 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
29854
cfb6382a
JM
298552013-03-04 Joseph Myers <joseph@codesourcery.com>
29856
29857 [BZ #13550]
29858 * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
29859 comment about bounded pointers.
29860 * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
29861 * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
29862
539d8e01
AJ
298632013-03-04 Andreas Jaeger <aj@suse.de>
29864
29865 * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
29866 common definitions.
29867
29868 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
29869 provided by bits/mman-linux.h and include <bits/mman-linux.h>.
29870 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
29871 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
29872 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
539d8e01
AJ
29873 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
29874
2e167a70 298752013-03-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
e0b780ad
AZ
29876
29877 [BZ #15055]
29878 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
29879 __ieee754_sqrl instead of __sqrl.
29880
68508633
JM
298812013-03-01 Joseph Myers <joseph@codesourcery.com>
29882
29883 * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
29884 * sysdeps/powerpc/fpu_control.h: ... here.
29885 * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
29886 * sysdeps/powerpc/bits/fenvinline.h: ... here.
29887 * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
29888 * sysdeps/powerpc/bits/mathinline.h: ... here.
29889
7775448e
RM
298902013-03-01 Roland McGrath <roland@hack.frob.com>
29891
29892 * elf/dl-hwcaps.c (_dl_important_hwcaps):
29893 Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
29894 to just [NEED_DL_SYSINFO_DSO].
29895 * elf/dl-support.c: Likewise.
29896 * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
29897 * elf/rtld.c (dl_main): Likewise.
29898 * elf/setup-vdso.h (setup_vdso): Likewise.
29899 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
29900 * sysdeps/unix/sysv/linux/dl-sysdep.c
29901 (_dl_discover_osversion): Likewise.
29902
4e9b5995
CD
299032013-03-01 Carlos O'Donell <carlos@redhat.com>
29904
29905 * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
29906 * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
29907
e23872c8
SP
299082013-03-01 Siddhesh Poyarekar <siddhesh@redhat.com>
29909
e5c74c63
SP
29910 * NEWS: Mention libm performance improvements and non-x86 PI
29911 futex support.
29912
e23872c8
SP
29913 * csu/libc-start.c (__pthread_initialize_minimal): Change
29914 function arguments.
29915 * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
29916
b5510883
JM
299172013-02-28 Joseph Myers <joseph@codesourcery.com>
29918
29919 [BZ #13550]
29920 * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
29921 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
29922 <bp-sym.h> and <bp-asm.h>.
29923 (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
29924 * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
29925 and <bp-asm.h>.
29926 (memcpy): Don't use BP_SYM.
29927 * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
29928 <bp-asm.h>.
29929 (__mpn_add_n): Don't use BP_SYM.
29930 (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
29931 * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
29932 and <bp-asm.h>.
29933 (__mpn_addmul_1): Don't use BP_SYM.
29934 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29935 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
29936 <bp-sym.h>.
29937 (_setjmp): Don't use BP_SYM.
29938 (__novmx_setjmp): Likewise.
29939 (__GI__setjmp): Likewise.
29940 (__vmx_setjmp): Likewise.
29941 * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
29942 <bp-sym.h>.
29943 * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
29944 (__bzero): Don't use BP_SYM.
29945 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
29946 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
29947 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
29948 <bp-sym.h> and <bp-asm.h>.
29949 (memcpy): Don't use BP_SYM.
29950 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
29951 <bp-sym.h> and <bp-asm.h>.
29952 (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
29953 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
29954 <bp-sym.h> and <bp-asm.h>.
29955 (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
29956 * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
29957 <bp-asm.h>.
29958 (__mpn_lshift): Don't use BP_SYM.
29959 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29960 * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
29961 <bp-asm.h>.
29962 (memset): Don't use BP_SYM.
29963 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
29964 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
29965 * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
29966 <bp-asm.h>.
29967 (__mpn_mul_1): Don't use BP_SYM.
29968 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29969 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
29970 <bp-sym.h> and <bp-asm.h>.
29971 (memcmp): Don't use BP_SYM.
29972 * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
29973 <bp-sym.h> and <bp-asm.h>.
29974 (memcpy): Don't use BP_SYM.
29975 * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
29976 <bp-sym.h> and <bp-asm.h>.
29977 (memset): Don't use BP_SYM.
29978 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
29979 <bp-sym.h> and <bp-asm.h>.
29980 (strncmp): Don't use BP_SYM.
29981 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
29982 <bp-sym.h> and <bp-asm.h>.
29983 (memcpy): Don't use BP_SYM.
29984 * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
29985 <bp-sym.h> and <bp-asm.h>.
29986 (memset): Don't use BP_SYM.
29987 * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
29988 <bp-sym.h> and <bp-asm.h>.
29989 (__memchr): Don't use BP_SYM.
29990 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
29991 <bp-sym.h> and <bp-asm.h>.
29992 (memcmp): Don't use BP_SYM.
29993 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
29994 <bp-sym.h> and <bp-asm.h>.
29995 (memcpy): Don't use BP_SYM.
29996 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
29997 <bp-sym.h> and <bp-asm.h>.
29998 (__mempcpy): Don't use BP_SYM.
29999 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
30000 <bp-sym.h> and <bp-asm.h>.
30001 (__memrchr): Don't use BP_SYM.
30002 * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
30003 <bp-sym.h> and <bp-asm.h>.
30004 (memset): Don't use BP_SYM.
30005 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
30006 <bp-sym.h> and <bp-asm.h>.
30007 (__rawmemchr): Don't use BP_SYM.
30008 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
30009 <bp-sym.h> and <bp-asm.h>.
30010 (__STRCMP): Don't use BP_SYM.
30011 * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
30012 <bp-sym.h> and <bp-asm.h>.
30013 (strchr): Don't use BP_SYM.
30014 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
30015 <bp-sym.h> and <bp-asm.h>.
30016 (__strchrnul): Don't use BP_SYM.
30017 * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
30018 <bp-sym.h> and <bp-asm.h>.
30019 (strlen): Don't use BP_SYM.
30020 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
30021 <bp-sym.h> and <bp-asm.h>.
30022 (strncmp): Don't use BP_SYM.
30023 * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
30024 <bp-sym.h> and <bp-asm.h>.
30025 (__strnlen): Don't use BP_SYM.
30026 * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
30027 <bp-asm.h>.
30028 (__mpn_rshift): Don't use BP_SYM.
30029 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30030 * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
30031 <bp-sym.h> and <bp-asm.h>.
30032 (__sigsetjmp): Don't use BP_SYM.
30033 * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
30034 (L(start_addresses)): Don't use BP_SYM.
30035 (_start): Likewise.
30036 * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
30037 <bp-asm.h>.
30038 (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
30039 (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30040 (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
30041 * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
30042 <bp-asm.h>.
30043 (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
30044 (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
30045 (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30046 * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
30047 <bp-asm.h>.
30048 (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove GKM FIXME
30049 comments.
30050 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
30051 * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
30052 <bp-asm.h>.
30053 (strcpy): Don't use BP_SYM and macros from bp-asm.h. Remove GKM
30054 FIXME comments.
30055 (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30056 (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
30057 * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
30058 <bp-asm.h>.
30059 (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove GKM FIXME
30060 comment.
30061 * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
30062 and <bp-asm.h>.
30063 (strncmp): Don't use BP_SYM,
30064 * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
30065 <bp-asm.h>.
30066 (__mpn_sub_n): Don't use BP_SYM.
30067 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30068 * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
30069 and <bp-asm.h>.
30070 (__mpn_submul_1): Don't use BP_SYM.
30071 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30072 * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
30073 <bp-sym.h> and <bp-asm.h>.
30074 (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
30075 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
30076 <bp-sym.h> and <bp-asm.h>.
30077 (__clone): Don't use BP_SYM and DISCARD_BOUNDS. Remove GKM FIXME
30078 comment.
30079
8d19fe64
SP
300802013-02-28 Siddhesh Poyarekar <siddhesh@redhat.com>
30081
30082 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
30083 Use ZK to minimize writes to Z.
30084 (sub_magnitudes): Simplify code a bit.
30085 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
30086 Use ZK to minimize writes to Z.
30087 (sub_magnitudes): Simplify code a bit.
30088
85bd816a
RM
300892013-02-27 Roland McGrath <roland@hack.frob.com>
30090
30091 * csu/gmon-start.c: Add special exception to license text.
30092
b5977bf2
RH
300932013-02-27 Richard Henderson <rth@redhat.com>
30094
30095 * scripts/config.guess: Update from config.git.
30096 * scripts/config.sub: Likewise.
30097
11d6e2f2
SP
300982013-02-27 Siddhesh Poyarekar <siddhesh@redhat.com>
30099
09c14ed2
SP
30100 * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
30101
a688864e
SP
30102 * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
30103
6295157a
SP
30104 * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
30105
b8de2202
SP
30106 * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
30107
11d6e2f2
SP
30108 * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
30109
7e80ddb8
RM
301102013-02-26 Roland McGrath <roland@hack.frob.com>
30111
30112 * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
30113 [$(build-shared = yes].
7e80ddb8 30114
7da6d9ed
SP
301152013-02-26 Siddhesh Poyarekar <siddhesh@redhat.com>
30116
45f05884
SP
30117 * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
30118 (__mul): Reduce iterations for calculating mantissa.
30119
2236d359
SP
30120 * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
30121 MPTWO.
30122 (__mpranred): Likewise.
30123
7da6d9ed
SP
30124 [BZ #15160]
30125 * malloc/memusagestat.c (main): Draw graphs for heap and stack
30126 only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
30127
b7688c42
PE
301282013-02-26 Paul Eggert <eggert@cs.ucla.edu>
30129
30130 * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
30131 Define __attribute__.
30132
53a5c423
SP
301332013-02-26 Siddhesh Poyarekar <siddhesh@redhat.com>
30134
30135 * locale/elem-hash.h (elem_hash): Mark as pure and possibly
30136 unused.
30137 * posix/regex_internal.h (__attribute): Remove.
30138 [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
30139 (re_string_context_at): Likewise.
30140 (bitset_not): Use __attribute__ and mark function as possibly
30141 unused.
30142 (bitset_merge): Likewise.
30143 (bitset_mask): Likewise.
30144 (re_string_char_size_at): Likewise.
30145 (re_string_wchar_at): Likewise.
30146 (re_string_elem_size_at): Likewise.
30147
60f5a8b5
SP
301482013-02-25 Siddhesh Poyarekar <siddhesh@redhat.com>
30149
2a983a2e
SP
30150 * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
30151 code.
30152 (cc32): Likewise.
30153
e69804d1
SP
30154 * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
30155 (__acr): Likewise.
30156 (__cpy): Likewise.
30157 (norm): Likewise.
30158 (denorm): Likewise.
30159 (__dbl_mp): Likewise.
30160 (add_magnitudes): Likewise.
30161 (sub_magnitudes): Likewise.
30162 (__mul): Likewise.
30163 (__inv): Likewise.
30164
2f22a1e8
SP
30165 * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
30166 style.
30167
8930ddc7
SP
30168 * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
30169 style.
30170
dc60cb11
SP
30171 * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
30172 code.
30173
60f5a8b5
SP
30174 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
30175 up changes with default code.
30176 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
30177 Likewise.
30178
b4d1fd33
AM
301792013-02-24 Allan McRae <allan@archlinux.org>
30180
faf6f8bc
AM
30181 * manual/socket.texi (The Internet Namespace): Order menu items
30182 to match that in the file.
30183
b4d1fd33
AM
30184 * manual/libc-texinfo.sh: Use @detailmenu around the detailed
30185 node listing of the info page menu.
30186
2366713d
JM
301872013-02-21 Joseph Myers <joseph@codesourcery.com>
30188
30189 [BZ #13550]
30190 * sysdeps/i386/bp-asm.h: Remove file.
30191 * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
30192 (PARMS): Do not use macros from bp-asm.h.
30193 (S1): Likewise.
30194 (S2): Likewise.
30195 (SIZE): Likewise.
30196 (__mpn_add_n): Do not use BP_SYM
30197 * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
30198 "bp-asm.h".
30199 (PARMS): Do not use macros from bp-asm.h.
30200 (S1): Likewise.
30201 (SIZE): Likewise.
30202 (__mpn_addmul_1): Do not use BP_SYM
30203 * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
30204 "bp-asm.h".
30205 (PARMS): Do not use macros from bp-asm.h.
30206 (SIGMSK): Likewise.
30207 (_setjmp): Likewise. Do not use BP_SYM.
30208 * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
30209 "bp-asm.h".
30210 (PARMS): Do not use macros from bp-asm.h.
30211 (SIGMSK): Likewise.
30212 (setjmp): Likewise. Do not use BP_SYM.
30213 * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
30214 "bp-asm.h".
30215 (PARMS): Do not use macros from bp-asm.h.
30216 (__frexp): Do not use BP_SYM.
30217 (frexp): Likewise.
30218 * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
30219 "bp-asm.h".
30220 (PARMS): Do not use macros from bp-asm.h.
30221 (__frexpf): Do not use BP_SYM.
30222 (frexpf): Likewise.
30223 * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
30224 "bp-asm.h".
30225 (PARMS): Do not use macros from bp-asm.h.
30226 (__frexpl): Do not use BP_SYM.
30227 (frexpl): Likewise.
30228 * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
30229 "bp-asm.h".
30230 (PARMS): Do not use macros from bp-asm.h.
30231 (__remquo): Do not use BP_SYM.
30232 (remquo): Likewise.
30233 * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
30234 "bp-asm.h".
30235 (PARMS): Do not use macros from bp-asm.h.
30236 (__remquof): Do not use BP_SYM.
30237 (remquof): Likewise.
30238 * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
30239 "bp-asm.h".
30240 (PARMS): Do not use macros from bp-asm.h.
30241 (__remquol): Do not use BP_SYM.
30242 (remquol): Likewise.
30243 * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
30244 "bp-asm.h".
30245 (PARMS): Do not use macros from bp-asm.h.
30246 (DEST): Likewise.
30247 (SRC): Likewise.
30248 (strcat): Remove GKM FIXME comment. Do not use BP_SYM.
30249 * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
30250 "bp-asm.h".
30251 (PARMS): Do not use macros from bp-asm.h.
30252 (strlen): Do not use BP_SYM.
30253 * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
30254 "bp-asm.h".
30255 (PARMS): Do not use macros from bp-asm.h.
30256 (S1): Likewise.
30257 (S2): Likewise.
30258 (SIZE): Likewise.
30259 (__mpn_add_n): Do not use BP_SYM.
30260 * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
30261 "bp-asm.h".
30262 (PARMS): Do not use macros from bp-asm.h.
30263 (S1): Likewise.
30264 (SIZE): Likewise.
30265 (__mpn_addmul_1): Do not use BP_SYM.
30266 * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
30267 weak_alias.
30268 (bzero): Likewise.
30269 * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
30270 "bp-asm.h".
30271 (PARMS): Do not use macros from bp-asm.h.
30272 (S): Likewise.
30273 (SIZE): Likewise.
30274 (__mpn_lshift): Do not use BP_SYM.
30275 * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
30276 "bp-asm.h".
30277 (PARMS): Do not use macros from bp-asm.h.
30278 (DEST): Likewise.
30279 (SRC): Likewise.
30280 (LEN): Likewise.
30281 (memcpy): Likewise. Do not use BP_SYM.
30282 * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
30283 libc_hidden_def and weak_alias.
30284 (mempcpy): Do not use BP_SYM in weak_alias.
30285 * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
30286 "bp-asm.h".
30287 (PARMS): Do not use macros from bp-asm.h.
30288 (DEST): Likewise.
30289 (LEN): Likewise.
30290 [!BZERO_P] (CHR): Likewise.
30291 (memset): Likewise. Do not use BP_SYM.
30292 * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
30293 "bp-asm.h".
30294 (PARMS): Do not use macros from bp-asm.h.
30295 (S1): Likewise.
30296 (SIZE): Likewise.
30297 (__mpn_mul_1): Do not use BP_SYM.
30298 * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
30299 "bp-asm.h".
30300 (PARMS): Do not use macros from bp-asm.h.
30301 (S): Likewise.
30302 (SIZE): Likewise.
30303 (__mpn_rshift): Do not use BP_SYM.
30304 * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
30305 "bp-asm.h".
30306 (PARMS): Do not use macros from bp-asm.h.
30307 (STR): Likewise.
30308 (CHR): Likewise.
30309 (strchr): Likewise. Do not use BP_SYM.
30310 (index): Do not use BP_SYM in weak_alias.
30311 * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
30312 "bp-asm.h".
30313 (PARMS): Do not use macros from bp-asm.h.
30314 (DEST): Likewise.
30315 (SRC): Likewise.
30316 (STRCPY): Likewise. Remove GKM FIXME comment. Do not use BP_SYM.
30317 * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
30318 "bp-asm.h".
30319 (PARMS): Do not use macros from bp-asm.h.
30320 (strlen): Do not use BP_SYM.
30321 * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
30322 "bp-asm.h".
30323 (PARMS): Do not use macros from bp-asm.h.
30324 (S1): Likewise.
30325 (S2): Likewise.
30326 (SIZE): Likewise.
30327 (__mpn_sub_n): Do not use BP_SYM.
30328 * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
30329 "bp-asm.h".
30330 (PARMS): Do not use macros from bp-asm.h.
30331 (S1): Likewise.
30332 (SIZE): Likewise.
30333 (__mpn_submul_1): Do not use BP_SYM.
30334 * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
30335 "bp-asm.h".
30336 (PARMS): Do not use macros from bp-asm.h.
30337 (S1): Likewise.
30338 (S2): Likewise.
30339 (SIZE): Likewise.
30340 (__mpn_add_n): Do not use BP_SYM.
30341 * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
30342 weak_alias.
30343 (bzero): Likewise.
30344 * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
30345 "bp-asm.h".
30346 (PARMS): Do not use macros from bp-asm.h.
30347 (BLK2): Likewise.
30348 (LEN): Likewise.
30349 (memcmp): Do not use BP_SYM.
30350 (bcmp): Do not use BP_SYM in weak_alias.
30351 * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
30352 "bp-asm.h".
30353 (PARMS): Do not use macros from bp-asm.h.
30354 (DEST): Likewise.
30355 (SRC): Likewise.
30356 (LEN): Likewise.
30357 (memcpy): Likewise. Do not use BP_SYM.
30358 * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
30359 "bp-asm.h".
30360 (PARMS): Do not use macros from bp-asm.h.
30361 (DEST): Likewise.
30362 (SRC): Likewise.
30363 (LEN): Likewise.
30364 (memmove): Likewise. Do not use BP_SYM.
30365 * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
30366 "bp-asm.h".
30367 (PARMS): Do not use macros from bp-asm.h.
30368 (DEST): Likewise.
30369 (SRC): Likewise.
30370 (LEN): Likewise.
30371 (__mempcpy): Likewise. Do not use BP_SYM.
30372 (mempcpy): Do not use BP_SYM in weak_alias.
30373 * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
30374 "bp-asm.h".
30375 (PARMS): Do not use macros from bp-asm.h.
30376 (DEST): Likewise.
30377 (LEN): Likewise.
30378 [!BZERO_P] (CHR): Likewise.
30379 (memset): Likewise. Do not use BP_SYM.
30380 * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
30381 "bp-asm.h".
30382 (PARMS): Do not use macros from bp-asm.h.
30383 (STR2): Likewise.
30384 (strcmp): Do not use BP_SYM.
30385 * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
30386 "bp-asm.h".
30387 (PARMS): Do not use macros from bp-asm.h.
30388 (STR): Likewise.
30389 (DELIM): Likewise.
30390 [USE_AS_STRTOK_R] (SAVE): Likewise.
30391 (FUNCTION): Likewise. Do not use BP_SYM.
30392 * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
30393 aliases.
30394 (strtok_r): Likewise.
30395 (__GI___strtok_r): Likewise.
30396 * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
30397 (PARMS): Do not use macros from bp-asm.h.
30398 (S): Likewise.
30399 (SIZE): Likewise.
30400 (__mpn_lshift): Do not use BP_SYM.
30401 * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
30402 (PARMS): Do not use macros from bp-asm.h.
30403 (STR): Likewise.
30404 (CHR): Likewise.
30405 (__memchr): Do not use BP_SYM.
30406 (memchr): Do not use BP_SYM in weak_alias.
30407 * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
30408 (PARMS): Do not use macros from bp-asm.h.
30409 (BLK2): Likewise.
30410 (LEN): Likewise.
30411 (memcmp): Do not use BP_SYM.
30412 (bcmp): Do not use BP_SYM in weak_alias.
30413 * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
30414 (PARMS): Do not use macros from bp-asm.h.
30415 (S1): Likewise.
30416 (SIZE): Likewise.
30417 (__mpn_mul_1): Do not use BP_SYM.
30418 * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
30419 "bp-asm.h".
30420 (PARMS): Do not use macros from bp-asm.h.
30421 (STR): Likewise.
30422 (CHR): Likewise.
30423 (__rawmemchr): Do not use BP_SYM.
30424 (rawmemchr): Do not use BP_SYM in weak_alias.
30425 * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
30426 (PARMS): Do not use macros from bp-asm.h.
30427 (S): Likewise.
30428 (SIZE): Likewise.
30429 (__mpn_rshift): Do not use BP_SYM.
30430 * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
30431 (PARMS): Do not use macros from bp-asm.h.
30432 (SIGMSK): Likewise.
30433 (__sigsetjmp): Likewise. Do not use BP_SYM.
30434 * sysdeps/i386/start.S: Do not include "bp-sym.h".
30435 (_start): Do not use BP_SYM.
30436 * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
30437 (PARMS): Do not use macros from bp-asm.h.
30438 (DEST): Likewise.
30439 (SRC): Likewise.
30440 (__stpcpy): Likewise. Do not use BP_SYM.
30441 (stpcpy): Do not use BP_SYM in weak_alias.
30442 * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
30443 "bp-asm.h".
30444 (PARMS): Do not use macros from bp-asm.h.
30445 (DEST): Likewise.
30446 (SRC): Likewise.
30447 (LEN): Likewise.
30448 (__stpncpy): Likewise. Do not use BP_SYM.
30449 (stpncpy): Do not use BP_SYM in weak_alias.
30450 * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
30451 (PARMS): Do not use macros from bp-asm.h.
30452 (STR): Likewise.
30453 (CHR): Likewise.
30454 (strchr): Likewise. Do not use BP_SYM.
30455 * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
30456 "bp-asm.h".
30457 (PARMS): Do not use macros from bp-asm.h.
30458 (STR): Likewise.
30459 (CHR): Likewise.
30460 (__strchrnul): Likewise. Do not use BP_SYM.
30461 (strchrnul): Do not use BP_SYM in weak_alias.
30462 * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
30463 "bp-asm.h".
30464 (PARMS): Do not use macros from bp-asm.h.
30465 (STOP): Likewise.
30466 (strcspn): Do not use BP_SYM.
30467 * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
30468 "bp-asm.h".
30469 (PARMS): Do not use macros from bp-asm.h.
30470 (STR): Likewise.
30471 (STOP): Likewise.
30472 (strpbrk): Likewise. Do not use BP_SYM.
30473 * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
30474 "bp-asm.h".
30475 (PARMS): Do not use macros from bp-asm.h.
30476 (STR): Likewise.
30477 (CHR): Likewise.
30478 (strrchr): Likewise. Do not use BP_SYM.
30479 * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
30480 (PARMS): Do not use macros from bp-asm.h.
30481 (SKIP): Likewise.
30482 (strspn): Do not use BP_SYM.
30483 * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
30484 (PARMS): Do not use macros from bp-asm.h.
30485 (STR): Likewise.
30486 (DELIM): Likewise.
30487 (SAVE): Likewise.
30488 (FUNCTION): Likewise. Do not use BP_SYM.
30489 * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
30490 aliases.
30491 (strtok_r): Likewise.
30492 (__GI___strtok_r): Likewise.
30493 * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
30494 (PARMS): Do not use macros from bp-asm.h.
30495 (S1): Likewise.
30496 (S2): Likewise.
30497 (SIZE): Likewise.
30498 (__mpn_sub_n): Do not use BP_SYM.
30499 * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
30500 "bp-asm.h".
30501 (PARMS): Do not use macros from bp-asm.h.
30502 (S1): Likewise.
30503 (SIZE): Likewise.
30504 (__mpn_submul_1): Do not use BP_SYM.
30505 * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
30506 <bp-sym.h>.
30507 * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
30508 and <bp-asm.h>.
30509 (PARMS): Do not use macros from bp-asm.h.
30510 (FLAGS): Likewise.
30511 (PTID): Likewise.
30512 (TLS): Likewise.
30513 (CTID): Likewise.
30514 (__clone): Do not use BP_SYM.
30515 (clone): Do not use BP_SYM in weak_alias.
30516 * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
30517 and <bp-asm.h>.
30518 (PARMS): Do not use macros from bp-asm.h.
30519 (LEN): Likewise.
30520 (__mmap64): Do not use BP_SYM.
30521 (mmap64): Do not use BP_SYM in weak_alias.
30522 * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
30523 <bp-sym.h> and <bp-asm.h>.
30524 (PARMS): Do not use macros from bp-asm.h.
30525 (__posix_fadvise64_l64): Do not use BP_SYM.
30526 * sysdeps/unix/sysv/linux/i386/semtimedop.S
30527 (PARMS): Do not use macros from bp-asm.h.
30528 (NSOPS): Likewise.
30529 (semtimedop): Do not use BP_SYM.
30530 * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
30531 and <bp-asm.h>.
30532
582a3cff
AM
305332013-02-21 Allan McRae <allan@archlinux.org>
30534
30535 * manual/message.texi (Charset conversion in gettext):
30536 Move @end statement to beginning of line.
30537
bab8a695
SP
305382013-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
30539
80945231
SP
30540 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
30541 static.
30542 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
30543 Likewise.
30544
bab8a695
SP
30545 * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
30546 (denorm): Likewise.
30547 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
30548 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
30549
e21d7aa7
AK
305502013-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
30551
30552 * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
30553 tail-call to the resolved function if pltexit isn't needed.
30554
4c7a4263
SP
305552013-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
30556
30557 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
30558 or Y being zero as being unlikely.
30559 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
30560 Likewise.
30561
41f49342
CD
305622013-02-20 Carlos O'Donell <carlos@redhat.com>
30563
30564 * manual/nss.texi (System Databases and Name Service Switch):
30565 Remove frobnicate @pxref.
30566
50022a93
TS
305672013-02-20 Thomas Schwinge <thomas@codesourcery.com>
30568
30569 * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
30570 __attribute__ ((unused)) to __attribute__ ((__unused__)).
30571
08cbd996
PM
305722013-02-20 Petr Machata <pmachata@redhat.com>
30573
30574 * elf/elf.h (R_ARM_TARGET1): New macro.
30575 (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
30576 (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
30577 (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
30578 (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
30579 (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
30580 (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
30581 (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
30582 (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
30583 (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
30584 (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
30585 (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
30586 (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
30587 (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
30588 (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
30589 (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
30590 (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
30591 (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
30592 (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
30593 (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
30594 (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
30595 (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
30596 (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
30597 (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
30598 (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
30599 (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
30600 (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
30601 (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
30602 (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
30603 (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
30604 (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
30605 (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
30606 (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
30607 (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
30608 (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
30609 (R_ARM_THM_GOT_BREL12): Likewise.
30610 (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
30611 (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
30612 (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
30613 (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
30614 (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
30615 (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
30616 (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
30617 (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
30618 (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
30619
c7b275d6
TS
306202013-02-20 Thomas Schwinge <thomas@codesourcery.com>
30621
30622 * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
30623 __attribute_used__ to __attribute__ ((unused)).
30624
20cd7fb3
SP
306252013-02-20 Siddhesh Poyarekar <siddhesh@redhat.com>
30626
30627 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
30628 powerpc mpa.c.
30629 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
30630 comment formatting.
30631 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
30632
92945b52
JM
306332013-02-19 Joseph Myers <joseph@codesourcery.com>
30634
30635 [BZ #13550]
30636 * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
30637 Remove macro.
30638 (ENTER): Remove both macro definitions.
30639 (LEAVE): Likewise.
30640 (CHECK_BOUNDS_LOW): Likewise.
30641 (CHECK_BOUNDS_HIGH): Likewise.
30642 (CHECK_BOUNDS_BOTH): Likewise.
30643 (CHECK_BOUNDS_BOTH_WIDE): Likewise.
30644 (RETURN_BOUNDED_POINTER): Likewise.
30645 (RETURN_NULL_BOUNDED_POINTER): Likewise.
30646 (PUSH_ERRNO_LOCATION_RETURN): Likewise.
30647 (POP_ERRNO_LOCATION_RETURN): Likewise.
30648 * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
30649 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30650 * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
30651 macros.
30652 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30653 * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
30654 * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
30655 * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
30656 * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
30657 * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
30658 * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
30659 * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
30660 * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
30661 * sysdeps/i386/i486/strcat.S (strcat): Likewise.
30662 * sysdeps/i386/i486/strlen.S (strlen): Likewise.
30663 * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
30664 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30665 * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
30666 removed macros.
30667 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30668 * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
30669 macros.
30670 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30671 * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
30672 * sysdeps/i386/i586/memset.S (memset): Likewise.
30673 * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
30674 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30675 * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
30676 macros.
30677 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30678 * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
30679 Change uses of L(2) to L(out).
30680 * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
30681 * sysdeps/i386/i586/strlen.S (strlen): Likewise.
30682 * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
30683 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30684 * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
30685 removed macros.
30686 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30687 * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
30688 macros.
30689 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30690 * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
30691 (RETURN): Do not use macro LEAVE.
30692 * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
30693 * sysdeps/i386/i686/memmove.S (memmove): Likewise.
30694 * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
30695 * sysdeps/i386/i686/memset.S (memset): Likewise.
30696 * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
30697 (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
30698 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
30699 * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
30700 Likewise.
30701 (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30702 (FUNCTION): Do not use removed macros. Combine labels L(1_1),
30703 L(1_2) and L(1_3) into L(1).
30704 (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
30705 * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
30706 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30707 * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
30708 (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
30709 * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
30710 * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
30711 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30712 * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
30713 macros.
30714 * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
30715 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
30716 * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
30717 * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
30718 * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
30719 (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
30720 * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
30721 * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
30722 * sysdeps/i386/strcspn.S (strcspn): Likewise.
30723 * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
30724 * sysdeps/i386/strrchr.S (strrchr): Likewise.
30725 * sysdeps/i386/strspn.S (strspn): Likewise.
30726 * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
30727 conditional code.
30728 (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
30729 (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
30730 (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
30731 (FUNCTION): Do not use removed macros. Combine labels L(1_2) and
30732 L(1_3) into L(1_1).
30733 * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
30734 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
30735 * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
30736 macros.
30737 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
30738
2389741a
JJ
307392013-02-19 Jakub Jelinek <jakub@redhat.com>
30740
30741 * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
30742 macro.
30743
2016b3cd
SP
307442013-02-19 Siddhesh Poyarekar <siddhesh@redhat.com>
30745
e4f22324
SP
30746 * math/atest-exp.c (exp_mpn): Remove ROUND.
30747 * math/atest-exp2.c (exp_mpn): Likewise.
30748 * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
30749
2016b3cd
SP
30750 * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
30751 * stdlib/tst-tls-atexit-lib.c: Likewise.
30752 * stdlib/tst-tls-atexit.c: Likewise.
30753
4be9b544
MF
307542013-02-18 Mike Frysinger <vapier@gentoo.org>
30755
30756 * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
30757 and __attribute_alloc_size__.
30758
2f62b9ee
MF
307592013-02-18 Mike Frysinger <vapier@gentoo.org>
30760
30761 * include/programs/xmalloc.h: Change __attribute_alloc_size to
30762 __attribute_alloc_size__.
30763 * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
30764 * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
30765
6ff444c4
MF
307662013-02-18 Mike Frysinger <vapier@gentoo.org>
30767
30768 * include/programs/xmalloc.h: New file.
30769 * catgets/gencat.c: Include it.
30770 (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
30771 * elf/pldd.c: Likewise.
30772 * iconv/iconv_charmap.c: Likewise.
30773 * iconv/iconvconfig.c: Likewise.
30774 * iconv/strtab.c: Likewise.
30775 * locale/programs/locale.c: Likewise.
30776 * locale/programs/localedef.h: Likewise.
30777 * locale/programs/simple-hash.c: Likewise.
30778 * nscd/nscd.h: Likewise.
30779 * nss/makedb.c: Likewise.
30780 * sysdeps/generic/ldconfig.h: Likewise.
30781
be179c8a
SP
307822013-02-18 Siddhesh Poyarekar <siddhesh@redhat.com>
30783
ba384f6e
SP
30784 * Versions.def: Add GLIBC_2.18.
30785 * include/link.h (struct link_map): New member l_tls_dtor_count.
30786 * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
30787 (__call_tls_dtors): Likewise.
30788 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
30789 __cxa_thread_atexit_impl.
30790 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
30791 Likewise.
30792 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
30793 Likewise.
30794 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
30795 Likewise.
30796 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
30797 Likewise.
30798 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
30799 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
30800 Likewise.
30801 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
30802 Likewise.
30803 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
30804 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
30805 Likewise.
30806 * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
30807 (tests): Add test case tst-tls-atexit.
30808 (modules-names): Add shared library for tst-tls-atexit.
85891aca 30809 * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
ba384f6e
SP
30810 (GLIBC_PRIVATE): Add __call_tls_dtors.
30811 * stdlib/cxa_thread_atexit_impl.c: New file with helper function
30812 for libstdc++.
30813 * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
30814 * stdlib/tst-tls-atexit.c: New test case.
30815 * stdlib/tst-tls-atexit-lib.c: New test case.
30816
ffaa74cf 30817 * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
ffaa74cf 30818
be179c8a
SP
30819 * elf/Versions (ld): Add _dl_find_dso_for_object.
30820 * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
30821 * elf/dl-open.c (_dl_find_dso_for_object): New function.
30822 (dl_open_worker): Use _dl_find_dso_for_object.
30823 * elf/dl-sym.c (do_sym): Likewise.
30824 * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
30825
f78b5caa
AK
308262013-02-18 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
30827
30828 * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
30829 Syntactic changes only.
30830 (_dl_runtime_profile): Do a tail-call to the resolved function.
30831
29691210
JM
308322013-02-17 Joseph Myers <joseph@codesourcery.com>
30833
30834 [BZ #13550]
30835 * sysdeps/x86_64/bp-asm.h: Remove file.
30836 * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
30837 <bp-sym.h> and <bp-asm.h>.
30838 (__clone): Do not use BP_SYM.
30839 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
30840 <bp-sym.h> and <bp-asm.h>.
30841 * sysdeps/unix/x86_64/sysdep.S: Likewise.
30842 * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
30843 "bp-asm.h".
30844 (_setjmp): Do not use BP_SYM.
30845 * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
30846 "bp-asm.h".
30847 (setjmp): Do not use BP_SYM.
30848 * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
30849 libc_hidden_def.
30850 (mempcpy): Do not use BP_SYM in weak_alias.
30851 * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
30852 "bp-asm.h".
30853 (strchr): Do not use BP_SYM.
30854 * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
30855 "bp-asm.h".
30856 * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
30857 * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
30858 (_start): Do not use BP_SYM.
30859 * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
30860 "bp-asm.h".
30861 (strcat): Do not use BP_SYM.
30862 * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
30863 "bp-asm.h".
30864 (STRCMP): Do not use BP_SYM.
30865 * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
30866 "bp-asm.h".
30867 (STRCPY): Do not use BP_SYM.
30868 * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
30869 "bp-asm.h".
30870 * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
30871 "bp-asm.h".
30872 (FUNCTION): Do not use BP_SYM.
30873 * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
30874 weak_alias.
30875 (__GI___strtok_r): Do not use BP_SYM in strong_alias.
30876
f238fd19
AJ
308772013-02-17 Andreas Jaeger <aj@suse.de>
30878
30879 * time/Versions: Sort entries.
30880 * string/Versions: Likewise.
30881 * resolv/Versions: Likewise.
30882 * posix/Versions: Likewise.
30883 * iconv/Versions: Likewise.
30884 * elf/Versions: Likewise.
30885 * wcsmbs/Versions: Likewise.
30886
bd07f23c 308872013-02-15 Siddhesh Poyarekar <siddhesh@redhat.com>
4709fe76 30888
22af19f9
SP
30889 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
30890 loop termination condition.
30891
4709fe76
SP
30892 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
30893 variable to calculate EZ.
30894 (__sqr): Likewise.
2d0e0f29
SP
30895
30896 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
30897 the lower precision input.
30898
daaa7713
JM
308992013-02-15 Joseph Myers <joseph@codesourcery.com>
30900
30901 [BZ #13550]
30902 * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
30903 [!link-extra-libs] (link-extra-libs-bounded): Likewise.
30904 (run-via-rtld-prefix): Do not handle %-bp tests.
30905 (test-via-rtld-prefix): Do not mention %-bp tests in comment.
30906 (all-object-suffixes): Remove .ob.
30907 (bppfx): Remove variable.
30908 [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
30909 [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
30910 [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
30911 [$(build-bounded) = yes] (libtype.ob): Likewise.
30912 * Makerules (elide-routines.ob): Remove variable.
30913 (do-tests-clean): Do not handle *-bp.out.
30914 (common-mostlyclean): Do not handle *-bp and *-bp.out.
30915 * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
30916 [$(build-bounded) = yes] (xtests-bp.out): Likewise.
30917 (tests): Do not include $(tests-bp.out).
30918 (xtests): Do not include $(xtests-bp.out).
30919 [$(build-bounded) = yes] (binaries-bounded): Remove variable.
30920 [$(build-bounded) = yes] ($(addprefix
30921 $(objpfx),$(binaries-bounded))): Remove rule.
30922 ($(objpfx)%-bp.out): Remove rule.
30923 * config.make.in (build-bounded): Remove variable.
30924 * crypt/Makefile [$(build-bounded) = yes]
30925 ($(tests:%=$(objpfx)%-bp)): Remove dependency.
30926 * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
30927 append to variable.
30928 [$(build-bounded) = yes] (install-lib): Likewise.
30929 [$(build-bounded) = yes] (generated): Likewise.
30930 [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
30931 Remove rule.
30932 * intl/Makefile [$(build-bounded) = yes]
30933 ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
30934 * math/Makefile [$(build-bounded) = yes]
30935 ($(tests:%=$(objpfx)%-bp): Likewise.
30936 * misc/Makefile [$(build-bounded) = yes]
30937 ($(objpfx)tst-tsearch-bp): Likewise.
30938 * nptl/Makeconfig (bounded-thread-library): Remove variable.
30939 * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
30940 Remove dependency.
30941 * string/Makefile (o-objects.ob): Remove variable.
30942 * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
30943 (CFLAGS-.ob): Remove variable.
30944 [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
30945 * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
30946 both definitions of variable.
30947 * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
30948 (ASFLAGS-.ob): Remove variable.
30949
e97ed6dd
JM
309502013-02-14 Joseph Myers <joseph@codesourcery.com>
30951
2bdd4ca6
JM
30952 [BZ #13550]
30953 * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
30954 Remove __BOUNDED_POINTERS__ from condition.
30955 * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
30956 * string/bits/string2.h [!__NO_STRING_INLINES &&
30957 !__BOUNDED_POINTERS__]: Likewise.
30958 * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
30959 Likewise.
30960 * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
30961 Remove conditional code.
30962 * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
30963 __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
30964 !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
30965 condition.
30966
e97ed6dd
JM
30967 [BZ #13550]
30968 * csu/libc-start.c: Do not include <bp-sym.h>.
30969 [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
30970 * elf/dl-open.c: Do not include <bp-sym.h>.
30971 (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
30972 * math/fegetenv.c: Do not include <bp-sym.h>.
30973 (fegetenv): Do not use BP_SYM in versioned symbols.
30974 * nptl/sysdeps/pthread/bits/libc-lockP.h
30975 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
30976 <bp-sym.h>.
30977 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30978 (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
30979 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30980 (__pthread_mutex_destroy): Likewise.
30981 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30982 (__pthread_mutex_lock): Likewise.
30983 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30984 (__pthread_mutex_trylock): Likewise.
30985 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30986 (__pthread_mutex_unlock): Likewise.
30987 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30988 (__pthread_mutexattr_init): Likewise.
30989 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30990 (__pthread_mutexattr_destroy): Likewise.
30991 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30992 (__pthread_mutexattr_settype): Likewise.
30993 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30994 (__pthread_rwlock_init): Likewise.
30995 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30996 (__pthread_rwlock_destroy): Likewise.
30997 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
30998 (__pthread_rwlock_rdlock): Likewise.
30999 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31000 (__pthread_rwlock_tryrdlock): Likewise.
31001 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31002 (__pthread_rwlock_wrlock): Likewise.
31003 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31004 (__pthread_rwlock_trywrlock): Likewise.
31005 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31006 (__pthread_rwlock_unlock): Likewise.
31007 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31008 (__pthread_key_create): Likewise.
31009 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31010 (__pthread_setspecific): Likewise.
31011 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31012 (__pthread_getspecific): Likewise.
31013 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
31014 Likewise.
31015 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31016 (_pthread_cleanup_push_defer): Likewise.
31017 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31018 (_pthread_cleanup_pop_restore): Likewise.
31019 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
31020 (pthread_setcancelstate): Likewise.
31021 * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
31022 <bp-sym.h>.
31023 [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
31024 (memchr): Do not use BP_SYM in weak_alias.
31025 * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
31026 (fegetenv): Do not use BP_SYM in versioned symbols.
31027 * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
31028 (fesetenv): Do not use BP_SYM in versioned symbols.
31029 * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
31030 (feupdateenv): Do not use BP_SYM in versioned symbols.
31031 * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
31032 (fesetexceptflag): Do not use BP_SYM in versioned symbols.
31033 * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
31034 (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
31035 (open64): Do not use BP_SYM in weak_alias.
31036 * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
31037 (fegetenv): Do not use BP_SYM in versioned symbols.
31038 * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
31039 (fesetenv): Do not use BP_SYM in versioned symbols.
31040 * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
31041 (feupdateenv): Do not use BP_SYM in versioned symbols.
31042 * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
31043 (fegetexceptflag): Do not use BP_SYM in versioned symbols.
31044 * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
31045 (feraiseexcept): Do not use BP_SYM in versioned symbols.
31046 * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
31047 (fesetexceptflag): Do not use BP_SYM in versioned symbols.
31048 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
31049 <bp-sym.h>.
31050 (__libc_start_main): Do not use BP_SYM.
31051
d6752ccd
SP
310522013-02-14 Siddhesh Poyarekar <siddhesh@redhat.com>
31053
cb57ce60
SP
31054 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
31055 redundant return line.
31056 (norm): Likewise.
31057 (denorm): Likewise.
31058 (dbl_mp): Likewise.
31059 (sub_magnitudes): Likewise.
31060 (__add): Likewise.
31061 (__sub): Likewise.
31062 (__mul): Likewise.
31063 (__inv): Likewise.
31064 (__dvd): Likewise.
31065 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
31066 (norm): Likewise.
31067 (denorm): Likewise.
31068 (dbl_mp): Likewise.
31069 (sub_magnitudes): Likewise.
31070 (__add): Likewise.
31071 (__sub): Likewise.
31072 (__mul): Likewise.
31073 (__inv): Likewise.
31074 (__dvd): Likewise.
31075
f414520d
SP
31076 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
31077 instead of __mul.
31078 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
31079 * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
31080 (cc32): Likewise.
31081
d6752ccd
SP
31082 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
31083 * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
31084 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
31085 of __mul for squares.
31086 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
31087 function
31088 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
31089 Likewise.
31090 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
31091 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
31092
70d9946a
JM
310932013-02-13 Joseph Myers <joseph@codesourcery.com>
31094
31095 [BZ #13550]
31096 * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
31097 code.
31098 * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
31099 prototype or function definition. Rename ubp_* variables and
31100 parameters. Remove argv definitions conditional on
31101 [__BOUNDED_POINTERS__].
31102 * debug/backtrace.c (__backtrace): Do not use __unbounded.
31103 * elf/dl-runtime.c (_dl_fixup): Likewise.
31104 * include/set-hooks.h (RUN_HOOK): Likewise.
31105 * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
31106 definition.
31107 * string/strcpy.c (strcpy): Do not use __unbounded.
31108 * sysdeps/generic/frame.h (struct layout): Likewise.
31109 * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
31110 * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
31111 * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
31112 * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
31113 * sysdeps/sparc/backtrace.c (struct layout): Likewise.
31114 (__backtrace): Likewise.
31115 * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
31116 use __ptrvalue.
31117 * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
31118 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
31119 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
31120 Likewise.
31121 * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
31122 * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
31123 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
31124 * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
31125 * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
31126 Do not use __unbounded.
31127 * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
31128 Rename __unboundedrlimits parameter to rlimits in prototype.
31129 * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
31130 Do not use __unbounded.
31131 * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
31132 not use __ptrvalue.
31133 * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
31134 * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
31135 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
31136 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
31137 __ptrvalue or __unbounded.
31138 (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
31139 * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
31140 use __unbounded.
31141 (__new_msgctl): Do not use __ptrvalue.
31142 * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
31143 __unbounded.
31144 (__libc_msgrcv): Do not use __ptrvalue.
31145 * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
31146 startup_info): Do not use __unbounded.
31147 (__libc_start_main): Likewise. Rename ubp_* variables and
31148 parameters. Remove argv definitions conditional on
31149 [__BOUNDED_POINTERS__].
31150 * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
31151 __ptrvalue.
31152 * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
31153 use __unbounded.
31154 * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
31155 or __ptrvalue.
31156 * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
31157 use __unbounded.
31158 (__new_shmctl): Do not use __ptrvalue.
31159 * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
31160 * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
31161 Likewise.
31162 * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
31163 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
31164 (__libc_sigaction): Likewise.
31165 * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
31166 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
31167 Likewise.
31168 * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
31169
cc7834d6
OB
311702013-02-13 Ondřej Bílka <neleai@seznam.cz>
31171
ffb1ec7b 31172 * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
170704c9
OB
31173
31174 * string/mempcpy.c: Implement by calling memcpy.
31175
bdf02814
SP
311762013-02-13 Siddhesh Poyarekar <siddhesh@redhat.com>
31177
c2af38aa
SP
31178 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
31179
4e92d59e
SP
31180 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
31181 evaluation.
31182
909279a5
SP
31183 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
31184 values in the mantissa.
31185
bdf02814
SP
31186 * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
31187 minimize writes to Z.
31188 (sub_magnitudes): Simplify code a bit.
31189
cd525923
RM
311902013-02-12 Roland McGrath <roland@hack.frob.com>
31191
31192 * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
31193 from the message. The linker prefixes all warnings with that already.
31194
7e2f0d2d
AS
311952013-02-12 Andreas Schwab <schwab@suse.de>
31196
a445af0b
AS
31197 [BZ #15078]
31198 * posix/regexec.c (extend_buffers): Add parameter min_len.
31199 (check_matching): Pass minimum needed length.
31200 (clean_state_log_if_needed): Likewise.
31201 (get_subexp): Likewise.
31202 * posix/Makefile (tests): Add bug-regex34.
31203 (bug-regex34-ENV): Define.
31204 * posix/bug-regex34.c: New file.
31205
7e2f0d2d
AS
31206 [BZ #11561]
31207 * posix/regcomp.c (parse_bracket_exp): When looking up collating
31208 elements compare against the byte sequence of it, not its name.
31209 * posix/Makefile (tests): Add bug-regex35.
31210 (bug-regex35-ENV): Define.
31211 * posix/bug-regex35.c: New file.
31212
a175b684
TV
312132013-02-11 Tom de Vries <tom@codesourcery.com>
31214
31215 * string/str-two-way.h: Fix typo RESULT_TYPE -> RETURN_TYPE in
31216 comment.
31217 Add RET0_IF_0 and CHECK_EOL to macro list in comment.
31218 (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
31219 (CHECK_EOL): Add undef.
31220
310998fe 312212013-02-11 Ondřej Bílka <neleai@seznam.cz>
41eda41d
OB
31222
31223 * bits/stdlib-bsearch.h: New file.
31224 * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
310998fe 31225 * stdlib/stdlib.h: Likewise.
41eda41d 31226
8ded91fb
RM
312272013-02-11 Roland McGrath <roland@hack.frob.com>
31228
31229 * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
31230 * manual/errno.texi (Error Messages): Fix typo in error_print_progname
31231 declaration.
31232 * manual/search.texi (Array Search Function): Add missing const in
31233 lfind prototype.
31234 * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
31235 declaration to use rlim_t.
31236 (Basic Scheduling Functions): Remove erroneous const from
31237 sched_getparam prototype. Remove erroneous * from
31238 sched_get_priority_max and sched_get_priority_min prototypes.
31239 (Resource Usage): Fix summary @comment on vtimes to refer to
31240 sys/vtimes.h rather than vtimes.h.
31241 Add missing *s in vtimes prototype.
31242 (Limits on Resources): Fix ulimit prototype to return long int.
31243 * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
31244 prototypes to use long int rather than double.
31245 (BSD Random): Fix initstate and setstate to use char *, not void *.
31246 * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
31247 prototype to make second argument 'struct aiocb64 *const[]'.
31248 Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
31249 (Status of AIO Operations): Remove erroneous const in aio_return and
31250 aio_return64 prototypes.
31251 (Synchronizing I/O): Fix sync prototype to return void.
31252 * manual/startup.texi (Suboptions): Remove an erroneous const in
31253 getsubopt prototype.
31254 * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
31255 * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
31256 use size_t rather than int.
31257 (Scanning All Users): Likewise for getpwent_r.
31258 (Setting Groups): Add missing const to setgroups prototype.
31259 * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
31260 * manual/socket.texi (Host Names): Fix gethostbyaddr and
31261 gethostbyaddr_r prototypes to use socklen_t rather than size_t and
31262 'const void *' rather than 'const char *'.
31263 (Host Address Functions): Likewise for inet_ntop.
31264 (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
31265 (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
31266 ssize_t for return value.
31267 (Sending Data): Likewise for send, sendto, sendmsg.
31268 (Socket Option Functions): Add a missing const in setsockopt prototype.
31269 * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
31270 use wchar_t for the argument.
31271 (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
31272 * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
31273 take no arguments.
31274 (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
31275 double/float/long double for second argument.
31276 Fix return types of significand, significandf, significandl.
31277 * manual/filesys.texi (Setting Permissions): Use mode_t for second
31278 argument in fchmod prototype.
31279 (File Owner): Use uid_t and gid_t in fchown prototype.
31280 (File Times): Add const to utimes, futimes, and lutimes prototypes.
31281 (Making Special Files): Use mode_t and dev_t in mknod prototype.
31282 (Scanning Directory Content): Fix scandir and scandir64 prototypes to
31283 use 'const struct dirent **' as argument types to CMP function pointer
31284 argument.
31285 (Symbolic Links): Fix readlink prototype with ssize_t as return value.
31286 (File Times): Fix summary magic @comment for struct utimbuf and utime
31287 to refer to utime.h, not time.h.
31288 * manual/string.texi (Argz Functions): Add missing const in
31289 argz_extract and argz_next prototypes.
31290 (Finding Tokens in a String): Likewise for basename.
31291 (String/Array Comparison): Fix typo in wcscasecmp prototype.
31292 (Copying and Concatenation): Fix typo in wmemmove prototype.
31293 * manual/signal.texi (Using Pause): Use (void) in pause prototype.
31294 (Signal Stack): Remove erroneous const in sigstack prototype.
31295 * manual/time.texi (Setting an Alarm): Add missing const in setitimer
31296 prototype.
31297 (Simple Calendar Time): Likewise for stime.
31298 * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
31299 prototype.
31300 * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
31301 say sys/sysctl.h instead.
31302 * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
31303 and vsyslog prototypes.
31304
fe77fe6d
TV
313052013-02-11 Tom de Vries <tom@codesourcery.com>
31306
31307 * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
31308 Remove.
31309
3a09b620
RM
313102013-02-11 Roland McGrath <roland@hack.frob.com>
31311
31312 * misc/sys/mman.h: Fix typo in mremap comment.
31313
550a0b89
RM
313142013-02-08 Roland McGrath <roland@hack.frob.com>
31315
31316 * manual/examples/mkfsock.c (make_named_socket): Don't add one for
31317 the '\0' terminator.
31318
a2da1673
JM
313192013-02-08 Joseph Myers <joseph@codesourcery.com>
31320
31321 [BZ #13550]
31322 * debug/segfault.c: Don't include <bp-checks.h>.
31323 * sysdeps/generic/bp-checks.h: Remove file.
31324 * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
31325 (__GETDENTS): Don't use CHECK_N.
31326 * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
31327 * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
31328 (__getgroups): Don't use CHECK_N.
31329 * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
31330 (setgroups): Don't use CHECK_N.
31331 * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
31332 * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
31333 (__libc_msgrcv): Don't use CHECK_N.
31334 * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
31335 (__libc_msgsnd): Don't use CHECK_N.
31336 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
31337 <bp-checks.h>.
31338 (__libc_pread): Don't use CHECK_N.
31339 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
31340 include <bp-checks.h>.
31341 (__libc_pread64): Don't use CHECK_N.
31342 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
31343 include <bp-checks.h>.
31344 (__libc_pwrite): Don't use CHECK_N.
31345 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
31346 include <bp-checks.h>.
31347 (__libc_pwrite64): Don't use CHECK_N.
31348 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
31349 <bp-checks.h>.
31350 (__libc_pread): Don't use CHECK_N.
31351 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
31352 include <bp-checks.h>.
31353 (__libc_pread64): Don't use CHECK_N.
31354 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
31355 include <bp-checks.h>.
31356 (__libc_pwrite): Don't use CHECK_N.
31357 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
31358 include <bp-checks.h>.
31359 (__libc_pwrite64): Don't use CHECK_N.
31360 * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
31361 (do_pread): Don't use CHECK_N.
31362 * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
31363 (do_pread64): Don't use CHECK_N.
31364 * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
31365 (do_pwrite): Don't use CHECK_N.
31366 * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
31367 (do_pwrite64): Don't use CHECK_N.
31368 * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
31369 (__libc_readv): Don't use CHECK_N.
31370 * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
31371 (semop): Don't use CHECK_N.
31372 * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
31373 <bp-checks.h>.
31374 (semtimedop): Don't use CHECK_N.
31375 * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
31376 (__libc_pread): Don't use CHECK_N.
31377 * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
31378 <bp-checks.h>.
31379 (__libc_pread64): Don't use CHECK_N.
31380 * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
31381 <bp-checks.h>.
31382 (__libc_pwrite): Don't use CHECK_N.
31383 * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
31384 <bp-checks.h>.
31385 (__libc_pwrite64): Don't use CHECK_N.
31386 * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
31387 <bp-checks.h>.
31388 (__libc_msgrcv): Don't use CHECK_N.
31389 * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
31390 (__sysctl): Don't use CHECK_N. Remove GKM FIXME comment.
31391 * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
31392 (__libc_writev): Don't use CHECK_N.
31393
b84660a8
RM
313942013-02-08 Roland McGrath <roland@hack.frob.com>
31395
7f3e75f8
RM
31396 * string/strcpy.c: Removed unused variable.
31397
b84660a8
RM
31398 * Makeconfig (+sysdep-includes): Define with := rather than =.
31399 Use an existing include/ subdir of each sysdeps dir before it.
31400
471514d3
CD
314012013-02-08 Carlos O'Donell <carlos@redhat.com>
31402
31403 * nscd/connection.c (register_traced_file): Comment function.
31404 [HAVE_INOTIFY] (union __inev): Define.
31405 [HAVE_INOTIFY] (inotify_check_files): New function.
31406 [HAVE_INOTIFY] (clear_db_cache): Likewise.
31407 [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
31408 clear_db_cache.
31409 [HAVE_INOTIFY] (main_loop_epoll): Likewise.
31410
b2d3c3be
CD
314112013-02-08 Carlos O'Donell <carlos@redhat.com>
31412
31413 * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
31414 loaded if not already and that a failure is permanent.
31415
b39949d2
CD
314162013-02-08 Carlos O'Donell <carlos@redhat.com>
31417
ddacd1db 31418 [BZ #15006]
b39949d2
CD
31419 * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
31420 * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
31421
b2c9eff4
JM
314222013-02-08 Joseph Myers <joseph@codesourcery.com>
31423
f3aae3f3
JM
31424 [BZ #13550]
31425 * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
31426 (CHECK_1_NULL_OK): Likewise.
31427 * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
31428 (__fxstat): Do not use CHECK_1.
31429 * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
31430 <bp-checks.h>.
31431 (___fxstat64): Do not use CHECK_1.
31432 * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
31433 <bp-checks.h>.
31434 (__fxstatat): Do not use CHECK_1.
31435 * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
31436 <bp-checks.h>.
31437 (__fxstatat64): Do not use CHECK_1.
31438 * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
31439 <bp-checks.h>.
31440 (__fxstat): Do not use CHECK_1.
31441 * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
31442 <bp-checks.h>.
31443 (__fxstatat): Do not use CHECK_1.
31444 * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
31445 <bp-checks.h>.
31446 (__getresgid): Do not use CHECK_1.
31447 * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
31448 <bp-checks.h>.
31449 (__getresuid): Do not use CHECK_1.
31450 * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
31451 <bp-checks.h>.
31452 (__lxstat): Do not use CHECK_1.
31453 * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
31454 <bp-checks.h>.
31455 (__old_msgctl): Do not use CHECK_1.
31456 (__new_msgctl): Likewise.
31457 * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
31458 <bp-checks.h>.
31459 (__new_setrlimit): Do not use CHECK_1.
31460 * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
31461 <bp-checks.h>.
31462 (__old_shmctl): Do not use CHECK_1.
31463 (__new_shmctl): Likewise.
31464 * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
31465 <bp-checks.h>.
31466 (__xstat): Do not use CHECK_1.
31467 * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
31468 (__lxstat): Do not use CHECK_1.
31469 * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
31470 <bp-checks.h>.
31471 (___lxstat64): Do not use CHECK_1.
31472 * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
31473 (__old_msgctl): Do not use CHECK_1.
31474 (__new_msgctl): Likewise.
31475 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
31476 <bp-checks.h>.
31477 (__gettimeofday): Do not use CHECK_1.
31478 * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
31479 (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
31480 * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
31481 <bp-checks.h>.
31482 (__gettimeofday): Do not use CHECK_1.
31483 * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
31484 (__old_shmctl): Do not use CHECK_1_NULL_OK.
31485 (__new_shmctl): Do not use CHECK_1.
31486 * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
31487 <bp-checks.h>.
31488 (do_sigtimedwait): Do not use CHECK_1.
31489 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
31490 <bp-checks.h>.
31491 (do_sigwaitinfo): Do not use CHECK_1.
31492 * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
31493 <bp-checks.h>.
31494 (msgctl): Do not use CHECK_1.
31495 * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
31496 <bp-checks.h>.
31497 (shmctl): Do not use CHECK_1.
31498 * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
31499 (ustat): Do not use CHECK_1.
31500 * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
31501 <bp-checks.h>.
31502 (__fxstat): Do not use CHECK_1.
31503 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
31504 <bp-checks.h>.
31505 (__fxstatat): Do not use CHECK_1.
31506 * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
31507 <bp-checks.h>.
31508 (__lxstat): Do not use CHECK_1.
31509 * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
31510 <bp-checks.h>.
31511 (__xstat): Do not use CHECK_1.
31512 * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
31513 (__xstat): Do not use CHECK_1.
31514 * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
31515 (___xstat64): Do not use CHECK_1.
31516
b2c9eff4
JM
31517 [BZ #13550]
31518 * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
31519 definitions.
31520 (CHECK_BOUNDS_HIGH): Likewise.
31521 * string/strcpy.c: Do not include <bp-checks.h>.
31522 (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
31523
f1d70dad
RM
315242013-02-07 Roland McGrath <roland@hack.frob.com>
31525
31526 * nscd/nscd-client.h (__nscd_drop_map_ref):
31527 Add __attribute__ ((unused)).
31528 * nis/nss-nisplus.h (niserr2nss): Likewise.
31529
31530 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
31531 under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
31532
31533 * csu/libc-tls.c (init_static_tls, init_slotinfo):
31534 Remove inline keyword.
31535 * include/rounding-mode.h (round_away): Likewise.
31536 * libio/wfileops.c (adjust_wide_data): Likewise.
31537 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
31538 (__m128i_strloadu_tolower): Likewise.
31539 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
31540 (__m128i_strloadu_tolower): Likewise.
31541 * time/mktime.c (ydhms_diff): Likewise.
31542 * locale/elem-hash.h (elem_hash): Likewise.
31543 * locale/setlocale.c (setdata): Likewise.
31544 * posix/regex_internal.h (re_string_char_size_at): Likewise.
31545 (re_string_wchar_at): Likewise.
31546 (bitset_not, bitset_merge, bitset_mask): Likewise.
31547 [!(__GNUC__ > 3)] (inline): Remove macro.
31548 * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
31549 * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
31550 * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
31551 (_dl_tlsdesc_wake_up_held_fixups): Likewise.
31552 * string/memcmp.c (memcmp_bytes): Likewise.
31553 * locale/programs/locarchive.c (compute_hashval): Likewise.
31554 * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
31555 * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
31556 * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
31557 * nss/getent.c (print_rpc, print_protocols): Likewise.
31558 (print_passwd, print_group, print_aliases): Likewise.
31559 * nis/nss-nisplus.h (niserr2nss): Likewise.
31560 * nscd/connections.c (restart_p): Likewise.
31561 Change return type to bool.
31562
eab55bfb
RM
315632013-02-05 Roland McGrath <roland@hack.frob.com>
31564
7bd642f5
RM
31565 * Makeconfig (all-Depend-files): Add existing
31566 $(sorted-subdirs:=/Depend) files.
31567 (all-subdirs): Remove nss.
31568 * sysdeps/unix/inet/Subdirs: Add it here instead.
31569 * hesiod/Depend: New file.
31570
573c29b2
RM
31571 * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
31572 instead of calling alloca.
31573
b2e25af0
RM
31574 * io/lseek.c (__lseek): Rename to __libc_lseek.
31575 Define __lseek as an alias.
31576
eab55bfb
RM
31577 * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
31578
9a0d1941
CD
315792013-02-04 Carlos O'Donell <carlos@redhat.com>
31580
31581 * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
31582 else clause and remove check for non-standard endianness.
31583
b83bbec4
DM
315842013-02-04 David S. Miller <davem@davemloft.net>
31585
31586 * sysdeps/sparc/fpu/libm-test-ulps: Update.
31587
6277fdab
JM
315882013-02-04 Joseph Myers <joseph@codesourcery.com>
31589
31590 [BZ #13550]
31591 * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
31592 (__ubp_memchr): Remove prototype.
31593 [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
31594 [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
31595 [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
31596 [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
31597 * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
31598 Remove alias.
31599 * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
31600 (__ubp_memchr): Likewise.
31601 * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
31602 (__ubp_memchr): Likewise.
31603 * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
31604 (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
31605 (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
31606 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
31607 CHECK_STRING.
31608 * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
31609 * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
31610 (__getcwd): Do not use CHECK_STRING.
31611 * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
31612 <bp-checks.h>.
31613 (__real_chown): Do not use CHECK_STRING.
31614 * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
31615 <bp-checks.h>.
31616 (fchownat): Do not use CHECK_STRING.
31617 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
31618 CHECK_STRING.
31619 * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
31620 <bp-checks.h>.
31621 (__lchown): Do not use CHECK_STRING.
31622 * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
31623 * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
31624 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
31625 * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
31626 * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
31627 include <bp-checks.h>.
31628 (truncate64): Do not use CHECK_STRING.
31629 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
31630 <bp-checks.h>.
31631 (__real_chown): Do not use CHECK_STRING.
31632 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
31633 <bp-checks.h>.
31634 (__lchown): Do not use CHECK_STRING.
31635 * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
31636 <bp-checks.h>.
31637 (__chown): Do not use CHECK_STRING.
31638 * sysdeps/unix/sysv/linux/truncate64.c: Do not include
31639 <bp-checks.h>.
31640 (truncate64): Do not use CHECK_STRING.
31641 * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
31642 Likewise.
31643 * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
31644 (__xmknod): Do not use CHECK_STRING.
31645 * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
31646 <bp-checks.h>.
31647 (__xmknodat): Do not use CHECK_STRING.
31648 * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
31649 * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
31650
903ae060
AS
316512013-02-04 Andreas Schwab <schwab@suse.de>
31652
31653 [BZ #14142]
31654 * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
31655 * include/netdb.h: Likewise for h_errno.
31656 * elf/tst-stackguard1.c: Include <tls.h>.
31657
542f9466
JK
316582013-02-02 Jan Kratochvil <jan.kratochvil@redhat.com>
31659
31660 * elf/link.h (struct link_map): Extend the l_addr comment.
31661 * include/link.h (struct link_map): Likewise.
31662
e782a927
JM
316632013-02-01 Joseph Myers <joseph@codesourcery.com>
31664
31665 [BZ #13550]
31666 * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
31667 (BOUNDED_1): Remove macro.
31668 * debug/backtrace.c: Don't include <bp-checks.h>.
31669 (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
31670 (__backtrace): Likewise.
31671 * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
31672 <bp-checks.h>.
31673 (__backtrace): Don't use BOUNDED_1.
31674 * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
31675 <bp-checks.h>.
31676 (__backtrace): Don't use BOUNDED_1.
31677 * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
31678 (__backtrace): Don't use BOUNDED_1.
31679 * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
31680 (shmat): Don't use BOUNDED_N.
31681
8cf28c5e
JM
316822013-01-31 Joseph Myers <joseph@codesourcery.com>
31683
3a7ac8a0
JM
31684 [BZ #13550]
31685 * sysdeps/generic/bp-start.h: Remove file.
31686 * csu/libc-start.c: Don't include <bp-start.h>.
31687 (LIBC_START_MAIN): Set up __environ directly instead of using
31688 INIT_ARGV_and_ENVIRON.
31689 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
31690 <bp-start.h>.
31691
f3499f95
JM
31692 [BZ #13550]
31693 * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
31694 definitions.
31695 (CHECK_FCNTL): Likewise.
31696 (CHECK_N_PAGES): Likewise.
31697
32a45bea
JM
31698 [BZ #13550]
31699 * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
31700 definitions.
31701 (CHECK_SIGSET_NULL_OK): Likewise.
31702 * sysdeps/unix/sysv/linux/sigpending.c: Don't include
31703 <bp-checks.h>.
31704 (sigpending): Don't use CHECK_SIGSET.
31705 * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
31706 <bp-checks.h>.
31707 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31708 * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
31709 <bp-checks.h>.
31710 (do_sigsuspend): Don't use CHECK_SIGSET.
31711 * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
31712 use CHECK_SIGSET.
31713 * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
31714 (do_sigwait): Don't use CHECK_SIGSET.
31715 * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
31716 use CHECK_SIGSET.
31717 * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
31718 include <bp-checks.h>.
31719 (sigpending): Don't use CHECK_SIGSET.
31720 * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
31721 include <bp-checks.h>.
31722 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31723 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
31724 <bp-checks.h>.
31725 (sigpending): Don't use CHECK_SIGSET.
31726 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
31727 <bp-checks.h>.
31728 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
31729
2e8a5c8c
JM
31730 [BZ #13550]
31731 * sysdeps/generic/bp-semctl.h: Remove file.
31732 * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
31733 <bp-checks.h> and <bp-semctl.h>.
31734 (__old_semctl): Don't use CHECK_SEMCTL.
31735 (__new_semctl): Likewise.
31736 * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
31737 and <bp-semctl.h>.
31738 (__old_semctl): Don't use CHECK_SEMCTL.
31739 (__new_semctl): Likewise.
31740 * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
31741 <bp-checks.h> and <bp-semctl.h>.
31742 (__old_semctl): Don't use CHECK_SEMCTL.
31743 (__new_semctl): Likewise.
31744 * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
31745 <bp-checks.h> and <bp-semctl.h>.
31746 (semctl): Don't use CHECK_SEMCTL.
31747
c2d54929
JM
31748 [BZ #13550]
31749 * Makerules (elide-bp-thunks): Remove variable.
31750 (elide-routines.oS): Don't use $(elide-bp-thunks).
31751 (elide-routines.os): Likewise.
31752 (elide-routines.o): Likewise.
31753 (elide-routines.op): Likewise.
31754 (elide-routines.og): Likewise.
31755 (objects): Don't use $(bp-thunks).
31756 * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
31757 include.
31758 (common-generated): Do not add s-proto-bp.d.
31759 * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
31760 (int): Likewise.
31761 (typ): Likewise.
31762 Do not generate makefile rules for bounded-pointer thunks.
31763 * sysdeps/generic/bp-thunks.h: Remove file.
31764 * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
31765 * sysdeps/unix/s-proto-bp.S: Likewise.
31766
8cf28c5e
JM
31767 [BZ #15062]
31768 * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
31769 parts of result separately when argument is not close to line from
31770 -i to i and one part of argument is small.
31771 * math/k_casinhf.c (__kernel_casinhf): Likewise.
31772 * math/k_casinhl.c (__kernel_casinhl): Likewise.
31773 * math/libm-test.inc (cacos_test): Add more tests.
31774 (casin_test): Likewise.
31775 (casinh_test): Likewise.
31776 * sysdeps/i386/fpu/libm-test-ulps: Update.
31777 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31778
c4e33b8d
DM
317792013-01-31 David S. Miller <davem@davemloft.net>
31780
31781 * po/de.po: Update from translation team.
31782
3b60b421
MK
317832013-01-25 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
31784
31785 * time/tzfile.c: Include stdint.h for SIZE_MAX.
31786
bb931195
TS
317872013-01-25 Thomas Schwinge <thomas@codesourcery.com>
31788
b5a5da23
TS
31789 * configure.in (_AC_PROG_CC_C89): New definition.
31790 * configure: Regenerate.
31791
bb931195
TS
31792 * configure.in (AC_PROG_CPP): New definition.
31793 * configure: Regenerate.
31794
8c53a12c
JM
317952013-01-23 Joseph Myers <joseph@codesourcery.com>
31796
31797 * debug/tst-backtrace.h: New file.
31798 * debug/tst-backtrace2.c: Include tst-backtrace.h.
31799 (ret): Remove variable.
31800 (x): Likewise.
31801 (FAIL): Remove macro.
31802 (NO_INLINE): Likewise.
31803 (fn1): Use match function instead of strstr.
31804 * debug/tst-backtrace3.c: Include tst-backtrace.h.
31805 (ret): Remove variable.
31806 (x): Likewise.
31807 (FAIL): Remove macro.
31808 (NO_INLINE): Likewise.
31809 (fn): Use match function instead of strstr.
31810 * debug/tst-backtrace4.c: Include tst-backtrace.h.
31811 (ret): Remove variable.
31812 (x): Likewise.
31813 (FAIL): Remove macro.
31814 (NO_INLINE): Likewise.
31815 (handle_signal): Use match function instead of strstr.
31816 * debug/tst-backtrace5.c: Include tst-backtrace.h.
31817 (ret): Remove variable.
31818 (x): Likewise.
31819 (FAIL): Remove macro.
31820 (NO_INLINE): Likewise.
31821 (handle_signal): Use match function instead of strstr.
31822
4858fa2a
RM
318232013-01-23 Roland McGrath <roland@hack.frob.com>
31824
31825 * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
31826
bae8e7f5
DM
318272013-01-23 David S. Miller <davem@davemloft.net>
31828
31829 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
31830 (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
31831 argument of CAS if possible.
31832 * sysdeps/sparc/sparc64/bits/atomic.h
31833 (__arch_compare_and_exchange_val_32_acq): Likewise.
31834 (__arch_compare_and_exchange_val_64_acq): Likewise.
31835
9cbbc4ae
PT
318362013-01-23 Pino Toscano <toscano.pino@tiscali.it>
31837
31838 * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
31839 * sysdeps/posix/ulimit.c: ... this.
92a601b8 31840 Include <limits.h>.
67b3f58c 31841 * sysdeps/unix/bsd/ulimit.c: Remove file.
9cbbc4ae 31842
5655a0b5
AC
318432013-01-23 Adam Conrad <adconrad@0c3.net>
31844
31845 * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
31846 (LDFLAGS-tst-array5): Likewise.
31847
052aff95
JM
318482013-01-23 Joseph Myers <joseph@codesourcery.com>
31849
31850 [BZ #15036]
31851 * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
31852 based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
31853 (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
31854 * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
31855
7c1e01aa
DM
318562013-01-21 David S. Miller <davem@davemloft.net>
31857
31858 * sysdeps/sparc/backtrace.c: New file.
31859 * sysdeps/sparc/sparc32/backtrace.h: New file.
31860 * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
31861 * sysdeps/sparc/sparc64/backtrace.h: New file.
31862 * sysdeps/sparc/sparc64/backtrace.c: Delete.
31863 * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
31864 -funwind-tables.
31865
ab087e0a
AS
318662013-01-21 Andreas Schwab <schwab@suse.de>
31867
31868 [BZ #15020]
31869 * posix/wordexp.c (exec_comm): Avoid busy loop when command has
31870 closed its stdout.
31871
ed689c2f
AS
318722013-01-20 Andreas Schwab <schwab@linux-m68k.org>
31873
31874 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
31875 "mpa2.h".
31876 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
31877
31d470ac
JM
318782013-01-18 Joseph Myers <joseph@codesourcery.com>
31879 Mark Mitchell <mark@codesourcery.com>
31880 Tom de Vries <tom@codesourcery.com>
31881 Paul Pluzhnikov <ppluzhnikov@google.com>
31882
31883 * debug/tst-backtrace2.c: New file.
31884 * debug/tst-backtrace3.c: Likewise.
31885 * debug/tst-backtrace4.c: Likewise.
31886 * debug/tst-backtrace5.c: Likewise.
31887 * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
31888 (CFLAGS-tst-backtrace3.c): Likewise.
31889 (CFLAGS-tst-backtrace4.c): Likewise.
31890 (CFLAGS-tst-backtrace5.c): Likewise.
31891 (LDFLAGS-tst-backtrace2): Likewise.
31892 (LDFLAGS-tst-backtrace3): Likewise.
31893 (LDFLAGS-tst-backtrace4): Likewise.
31894 (LDFLAGS-tst-backtrace5): Likewise.
31895 (tests): Add new tests tst-backtrace2, tst-backtrace3,
31896 tst-backtrace4 and tst-backtrace5.
31897
90567f30 318982013-01-18 Anton Blanchard <anton@samba.org>
471a1672
AB
31899 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
31900
31901 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
31902 __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
31903 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
31904 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
31905 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
31906 (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
31907 "+r" and remove output regs list as redundant. Add explicit inline
31908 asm to specify register of return val to work around compiler codegen
31909 bug. Remove (int) cast on return value. Add return type parameter to
31910 use in macro so that this macro does not truncate return value for
31911 64-bit values.
31912 (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
31913 pass to INTERNAL_VSYSCALL_NCS.
31914 (INLINE_VSYSCALL): Add 'long int' as return type to
31915 INTERNAL_VSYSCALL_NCS macro invocation.
31916 (INTERNAL_VSYSCALL): Add 'long int' as return type to
31917 INTERNAL_VSYSCALL_NCS macro invocation.
31918 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
31919
d3b9ea61
SP
319202013-01-18 Siddhesh Poyarekar <siddhesh@redhat.com>
31921
0b57daeb
SP
31922 [BZ #14496]
31923 * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
31924 Fix application of SIMD FP exception mask.
31925
caa99d06
SP
31926 * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
31927 mp_no from a power of two.
31928 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
31929 __mpexp_twomm1. Use __pow_mp.
31930
d3b9ea61
SP
31931 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
31932 multiplication.
31933
1dbaee3c
DM
319342013-01-17 David S. Miller <davem@davemloft.net>
31935
31936 * sysdeps/sparc/fpu/libm-test-ulps: Update.
31937
728d7b43
JM
319382013-01-17 Joseph Myers <joseph@codesourcery.com>
31939
31940 [BZ #15023]
31941 * include/complex.h: Condition contents on [!_COMPLEX_H].
31942 (__kernel_casinhf): New prototype.
31943 (__kernel_casinh): Likewise.
31944 (__kernel_casinhl): Likewise.
31945 * math/Makefile (libm_calls): Add k_casinh.
31946 * math/k_casinh.c: New file.
31947 * math/k_casinhf.c: Likewise.
31948 * math/k_casinhl.c: Likewise.
31949 * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
31950 finite nonzero arguments.
31951 * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
31952 finite nonzero arguments.
31953 * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
31954 finite nonzero arguments.
31955 * math/s_casinh.c: Do not include <float.h>.
31956 (__casinh): Move code for finite nonzero arguments to k_casinh.c.
31957 * math/s_casinhf.c: Do not include <float.h>.
31958 (__casinhf): Move code for finite nonzero arguments to
31959 k_casinhf.c.
31960 * math/s_casinhl.c: Do not include <float.h>.
31961 [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
31962 redefine.
31963 (__casinhl): Move code for finite nonzero arguments to
31964 k_casinhl.c.
31965 * math/libm-test.inc (cacos_test): Add more tests.
31966 * sysdeps/i386/fpu/libm-test-ulps: Update.
31967 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31968
2a26ef3a
PT
319692013-01-17 Pino Toscano <toscano.pino@tiscali.it>
31970
31971 * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
31972 * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
31973 [!HAVE_MREMAP]: Remove [defined linux] case.
31974 * malloc/arena.c: Do not include <malloc-sysdep.h>.
31975
a897655d
SP
319762013-01-17 Siddhesh Poyarekar <siddhesh@redhat.com>
31977
31978 * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
31979
881ebe89 319802013-01-17 H.J. Lu <hongjiu.lu@intel.com>
22676eaf
L
31981
31982 * elf/elf.h (R_386_SIZE32): New relocation.
31983 * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
31984 R_386_SIZE32.
31985 (elf_machine_rela): Likewise.
31986 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
31987 R_X86_64_SIZE64 and R_X86_64_SIZE32.
31988
59981e9b
JM
319892013-01-17 Joseph Myers <joseph@codesourcery.com>
31990
31991 * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
31992 (FP_FAST_FMA): Do not define.
31993 [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
31994 * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
31995 && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
31996 * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
31997 !_SOFT_FLOAT]: Likewise.
31998 * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
31999 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
32000 value.
32001 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
32002 [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
32003 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
32004 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
32005 [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
32006 [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
32007 file.
32008
cfa8054f
AS
320092013-01-16 Andreas Schwab <schwab@suse.de>
32010
32011 [BZ #14327]
32012 * include/stdlib.h (__mktemp): Add declaration.
32013 * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
32014 * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
32015
dd930cc5
SP
320162013-01-16 Siddhesh Poyarekar <siddhesh@redhat.com>
32017
881ebe89
SP
32018 * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
32019 definitions.
32020 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
32021 * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
32022 * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
32023 definitions here.
32024 * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
32025 * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
32026 definitions.
32027 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
32028 and ONE.
32029 * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
32030 * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
32031 * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
32032 definitions.
32033 * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
32034 * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
32035 definitions.
32036 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
f93a8d15 32037
dd930cc5
SP
32038 * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
32039
c19a9f89
DM
320402013-01-15 David S. Miller <davem@davemloft.net>
32041
1aa61767
DM
32042 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32043 trunc{,f} to libm-sysdep_routes.
32044 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32045 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
32046 file.
32047 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
32048 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
32049 file.
32050 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
32051 file.
32052 * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
32053 * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
32054 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
32055 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
32056 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
32057 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
32058 * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
32059 * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
32060
c42d5e98
DM
32061 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32062 nearbyint{,f} to libm-sysdep_routes.
32063 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32064 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
32065 New file.
32066 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
32067 file.
32068 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
32069 New file.
32070 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
32071 file.
32072 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
32073 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
32074 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
32075 file.
32076 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
32077 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
32078 file.
32079 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
32080 * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
32081 * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
32082
c19a9f89
DM
32083 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
32084 libc_feholdexcept and libc_fesetenv.
32085
357679d2
MF
320862013-01-15 Mike Frysinger <vapier@gentoo.org>
32087
32088 * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
32089
65a82e3d
DM
320902013-01-14 David S. Miller <davem@davemloft.net>
32091
8b954ab9
DM
32092 * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
32093 (SPARC_ASM_VIS2_IFUNC): Likewise.
32094 (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
32095 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
32096 use of 'siam' instruction.
32097 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
32098 Likewise.
32099 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
32100 Likewise.
32101 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
32102 Likewise.
32103 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
32104 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
32105 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
32106 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
32107 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
32108 file.
32109 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
32110 file.
32111 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
32112 file.
32113 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
32114 file.
32115 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
32116 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
32117 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
32118 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
32119 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
32120 new VIS2 routines.
32121 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
32122 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
32123 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
32124 Likewise.
32125 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
32126 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
32127 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
32128 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
32129 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
32130 routines to libm-sysdep_routines.
32131 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
32132
65a82e3d
DM
32133 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
32134 fdim/fdimf to libm-sysdep_routines.
32135 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
32136 file.
32137 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
32138 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
32139 file.
32140 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
32141 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
32142 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
32143 * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
32144 * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
32145 * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
32146 * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
32147
e34ab705
SP
321482013-01-14 Siddhesh Poyarekar <siddhesh@redhat.com>
32149
2a91b573
SP
32150 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
32151 to optimize copies.
32152
1066a534
SP
32153 * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
32154 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
32155 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32156
e34ab705
SP
32157 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
32158 local variable MPTWO.
32159 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
32160 Likewise.
32161
aba5e596
MF
321622013-01-13 Mike Frysinger <vapier@gentoo.org>
32163
32164 * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
32165 GLOB_NOESCAPE.
32166
e557e9e5
MF
321672013-01-13 Mike Frysinger <vapier@gentoo.org>
32168
32169 * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
32170
0428cec9
MF
321712013-01-13 Mike Frysinger <vapier@gentoo.org>
32172
32173 * manual/pattern.texi (glob_t): Document gl_flags.
32174 (glob64_t): Likewise.
32175
8794a964
DM
321762013-01-11 David S. Miller <davem@davemloft.net>
32177
66438c3f
RM
32178 * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
32179 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
32180 (gmp-sysdep_routines): New variable. Add VIS3 optimized GMP routines.
32fcb36d
DM
32181 * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
32182 * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
32183 * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
32184 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
32185 * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
32186 * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
32187 * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
32188 * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
32189 * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
32190 * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
32191
4ae4244d
DM
32192 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
32193 sparc V9 rather than using V8 code.
32194 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32195 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32196
8794a964
DM
32197 * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
32198 Move to...
32199 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
32200 Here.
32201
6270516e
RM
322022013-01-11 Roland McGrath <roland@hack.frob.com>
32203
32204 * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
32205 not in the main loop.
32206 * configure: Regenerated.
32207
6a57d931
JM
322082013-01-11 Joseph Myers <joseph@codesourcery.com>
32209
32210 * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
32211 * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
32212 to just #else.
32213 * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise. Remove
32214 [!__GLIBC_HAVE_LONG_LONG] case.
32215 * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
32216 condition to just #else.
32217 * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
32218 __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
32219 [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
32220 * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
32221 unconditional.
32222 * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
32223 * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
32224 #elif condition to just #else.
32225 * sysdeps/unix/sysv/linux/sys/sysmacros.h
32226 [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
32227 * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
32228 #elif condition to just #else.
32229
0e8529e9
SE
322302013-01-11 Steve Ellcey <sellcey@mips.com>
32231
32232 * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
32233 (EF_MIPS_ARCH_64): Fix value.
32234 (EF_MIPS_ARCH_32R2): New.
32235 (EF_MIPS_ARCH_64R2): New.
32236
740b3dbe
L
322372013-01-11 H.J. Lu <hongjiu.lu@intel.com>
32238
32239 * Makeconfig (+link-pie-before-libc): New.
32240 (+link-pie-after-libc): Likewise.
32241 (+link-pie-tests): Likewise.
32242 (+link-pie): Rewritten.
32243 (link-before-libc): Remove $(config-LDFLAGS).
32244 (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
32245 (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
32246 (config-LDFLAGS): Renamed to ...
32247 (rtld-LDFLAGS): This.
32248 (rtld-tests-LDFLAGS): New macro.
32249 (link-libc-rpath-link): Likewise.
32250 (link-libc-tests-rpath-link): Likewise.
32251 (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
32252 (link-libc): Prepand $(link-libc-rpath-link).
32253 (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
32254 (test-program-prefix): New macro.
32255 (test-via-rtld-prefix): Likewise.
32256 (test-program-cmd): Likewise.
32257 (host-test-program-cmd): Likewise.
32258 * Makefile ($(common-objpfx)testrun.sh): Replace
32259 $(run-program-prefix) with $(test-program-prefix).
32260 * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
32261 $(rtld-LDFLAGS).
32262 ($(common-objpfx)shlib.lds): Likewise.
32263 (build-module-helper): Likewise.
32264 ($(common-objpfx)format.lds): Likewise.
32265 * Rules (binaries-pie-tests): New.
32266 (binaries-pie-notests): Likewise.
32267 (binaries-pie): Rewritten.
32268 ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
32269 ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
32270 ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
32271 (make-test-out): Replace $(host-built-program-cmd) with
32272 $(host-test-program-cmd).
32273 * config.make.in (build-hardcoded-path-in-tests): New variable.
32274 * configure.in (--enable-hardcoded-path-in-tests): New configure
32275 option.
32276 (hardcoded_path_in_tests): New AC_SUBST.
32277 * configure: Regenerated.
32278 * catgets/Makefile ($(objpfx)test-gencat.out): Replace
32279 $(built-program-cmd) with $(test-program-cmd).
32280 * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
32281 (test_program_cmd): This.
32282 * elf/Makefile ($(objpfx)order.out): Run test with
32283 $(test-program-prefix).
32284 ($(objpfx)order2.out): Likewise.
32285 ($(objpfx)tst-initorder.out): Likewise.
32286 ($(objpfx)tst-initorder2.out): Likewise.
32287 ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
32288 $(test-program-cmd).
32289 ($(objpfx)tst-array1-static.out): Likewise.
32290 ($(objpfx)tst-array2.out): Likewise.
32291 ($(objpfx)tst-array3.out): Likewise.
32292 ($(objpfx)tst-array4.out): Likewise.
32293 ($(objpfx)tst-array5.out): Likewise.
32294 ($(objpfx)tst-array5-static.out): Likewise.
32295 (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
32296 $(test-program-cmd).
32297 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
32298 $(run-program-prefix) with $(test-program-prefix).
32299 * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
32300 (test_program_prefix): This.
32301 * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
32302 $(run-program-prefix) with $(test-program-prefix).
32303 * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
32304 (test_program_prefix): This.
32305 * iconvdata/tst-tables.sh: Likewise.
32306 * intl/Makefile ($(objpfx)tst-gettext.out): Replace
32307 $(run-program-prefix) with $(test-program-prefix).
32308 ($(objpfx)tst-translit.out): Likewise.
32309 ($(objpfx)tst-gettext2.out): Likewise.
32310 ($(objpfx)tst-gettext4.out): Likewise.
32311 ($(objpfx)tst-gettext6.out): Likewise.
32312 * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
32313 (test_program_prefix): This.
32314 * intl/tst-gettext2.sh: Likewise.
32315 * intl/tst-gettext4.sh Likewise.
32316 * intl/tst-gettext6.sh: Likewise.
32317 * intl/tst-translit.sh: Likewise.
32318 * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
32319 with $(test-program-cmd).
32320 * libio/Makefile ($(objpfx)test-freopen.out): Replace
32321 $(run-program-prefix) with $(test-program-prefix).
32322 * libio/test-freopen.sh (run_program_prefix): Renamed to ...
32323 (test_program_prefix): This.
32324 * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
32325 $(run-program-prefix) with $(test-program-prefix).
32326 * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
32327 (test_program_prefix): This.
32328 * manual/install.texi: Document --enable-hardcoded-path-in-tests.
32329 * posix/Makefile ($(objpfx)globtest.out): Replace
32330 $(run-via-rtld-prefix) and $(test-wrapper) with
32331 $(test-program-prefix) and $(test-via-rtld-prefix).
32332 ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
32333 $(test-program-prefix).
32334 (tst-exec-ARGS): Replace $(host-built-program-cmd) with
32335 $(host-test-program-cmd).
32336 (tst-spawn-ARGS): Likewise.
32337 ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
32338 $(test-program-prefix).
32339 * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
32340 (test_via_rtld_prefix): This.
32341 (test_wrapper): Renamed to ...
32342 (test_program_prefix): This.
32343 (run_program_prefix): Replaced by test_program_prefix.
32344 * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
32345 (test_program_prefix): This.
32346 * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
32347 with $(host-test-program-cmd).
32348 * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
32349 $(run-program-prefix) with $(test-program-prefix).
32350 ($(objpfx)tst-printf.out): Likewise.
32351 ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
32352 $(test-program-cmd).
32353 * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
32354 (test_program_prefix): This.
32355 * stdio-common/tst-unbputc.sh: Likewise.
32356 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
32357 $(run-program-prefix) with $(test-program-prefix).
32358 * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
32359 (test_program_prefix): This.
32360 * string/Makefile ($(objpfx)tst-svc.out): Replace
32361 $(built-program-cmd) with $(test-program-cmd).
32362
c6fe55cf
AJ
323632013-01-11 Andreas Jaeger <aj@suse.de>
32364
32365 [BZ #15003]
32366 * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
32367 value. Sync with Linux 3.7.
32368
9e6919c8
DM
323692013-01-10 David S. Miller <davem@davemloft.net>
32370
32371 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
32372 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32373 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32374
1c9f1a02
RM
323752013-01-10 Roland McGrath <roland@hack.frob.com>
32376
32377 * configure.in (sysnames): Drop use of $m0sub and $msub, which are
32378 never set.
32379 * configure: Regenerated.
32380
b9de2dde
DM
323812013-01-10 David S. Miller <davem@davemloft.net>
32382
32383 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
32384 sparc V9 rather than using V8 code.
32385 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
32386 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
32387
e7f68ef4
RM
323882013-01-10 Roland McGrath <roland@hack.frob.com>
32389
32390 * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
32391 (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
32392 (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
32393 (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
32394 (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
32395 (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
32396 (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
32397 (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
32398 (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
32399 (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
32400 (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
32401 (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
32402 (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
32403 (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
32404 (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
32405 (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
32406 (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
32407 (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
32408 (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
32409 (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
32410 (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
32411 (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
32412 (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
32413 (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
32414 (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
32415 (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
32416 (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
32417
5a47cc9c
DM
324182013-01-10 David S. Miller <davem@davemloft.net>
32419
32420 * sysdeps/sparc/fpu/libm-test-ulps: Update.
32421
4cf8f209
L
324222013-01-10 H.J. Lu <hongjiu.lu@intel.com>
32423
32424 * posix/Makefile (tests-static): New variable.
32425 (tests): Add $(tests-static).
32426 (tst-exec-static-ARGS): New variable.
32427 (tst-spawn-static-ARGS): Likewise.
32428 * posix/tst-exec-static.c: New file.
32429 * posix/tst-spawn-static.c: Likewise.
32430 * posix/tst-exec.c: Support run directly.
32431 * posix/tst-spawn.c: Likewise.
32432
fed0faa1
JM
324332013-01-10 Joseph Myers <joseph@codesourcery.com>
32434
828beb13
JM
32435 * elf/link.h (struct dl_phdr_info): Use __extension__ with long
32436 long.
32437 * math/bits/mathcalls.h (llrint): Likewise.
32438 (llround): Likewise.
32439 * stdlib/stdlib.h (struct drand48_data): Likewise.
32440 * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
32441 * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
32442 * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
32443 Likewise.
32444 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
32445 Likewise.
32446 * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
32447 (elf_greg_t): Likewise.
32448 * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
32449 (__jmp_buf): Likewise.
32450 * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
32451 definitions.
32452 (llrint): Likewise, for all definitions.
32453 (llrintl): Likewise.
32454
fed0faa1
JM
32455 * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
32456 Remove [__GNUC__] condition.
32457 * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
32458 condition to just [__USE_ISOC99].
32459 [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
32460
1a20cb20
L
324612013-01-10 H.J. Lu <hongjiu.lu@intel.com>
32462
32463 [BZ #14200]
32464 * sysdeps/unix/sysv/linux/x86/bits/environments.h
32465 (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
32466 defined.
32467 (_POSIX_V6_ILP32_OFF32): Likewise.
32468 (_XBS5_ILP32_OFF32): Likewise.
32469 (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
32470 (__ILP32_OFFBIG_LDFLAGS): Likewise.
32471
751b85f7
SP
324722013-01-10 Siddhesh Poyarekar <siddhesh@redhat.com>
32473
7490eb81
SP
32474 * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
32475
751b85f7
SP
32476 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
32477 doubles __mpexp_twomm1. Adjust usage.
32478 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
32479 Remove.
32480
988197f0
AS
324812013-01-10 Andreas Schwab <schwab@suse.de>
32482
32483 [BZ #14964]
32484 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
32485 (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
32486
e83d7298
DM
324872013-01-09 David S. Miller <davem@davemloft.net>
32488
034ed64b 32489 [BZ #15003]
57f41c40
AS
32490 * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
32491 (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
32492 (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
32493 (TCP_FASTOPEN): Define.
e83d7298
DM
32494 (tcp_repair_opt): New structure.
32495 (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
32496 enum values.
57f41c40
AS
32497 (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
32498 (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
32499 (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
e83d7298
DM
32500 (tcp_cookie_transactions): New structure.
32501
d5e0b9bd
AB
325022013-01-09 Anton Blanchard <anton@samba.org>
32503
32504 * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
32505 * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
32506 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
32507 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
32508
0c07e3ea
JM
325092013-01-09 Joseph Myers <joseph@codesourcery.com>
32510
32511 * include/features.h (__USE_ANSI): Remove.
32512
232f7002
RM
325132013-01-09 Roland McGrath <roland@hack.frob.com>
32514
ad98e30c
RM
32515 * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
32516
232f7002
RM
32517 * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
32518
950c99ca
SP
325192013-01-09 Siddhesh Poyarekar <siddhesh@redhat.com>
32520
b5792741
SP
32521 * sysdeps/s390/fpu/libm-test-ulps: Update.
32522
47cf2278
SP
32523 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32524
950c99ca
SP
32525 * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
32526 (__acr): Likewise.
32527 (__cpy): Likewise.
32528 (norm): Likewise.
32529 (denorm): Likewise.
32530 (__mp_dbl): Likewise.
32531 (__dbl_mp): Likewise.
32532 (add_magnitudes): Likewise.
32533 (sub_magnitudes): Likewise.
32534 (__add): Likewise.
32535 (__sub): Likewise.
32536 (__mul): Likewise.
32537 (__inv): Likewise.
32538 (__dvd): Likewise.
32539 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
32540 (__acr): Likewise.
32541 (__cpy): Likewise.
32542 (norm): Likewise.
32543 (denorm): Likewise.
32544 (__mp_dbl): Likewise.
32545 (__dbl_mp): Likewise.
32546 (add_magnitudes): Likewise.
32547 (sub_magnitudes): Likewise.
32548 (__add): Likewise.
32549 (__sub): Likewise.
32550 (__mul): Likewise.
32551 (__inv): Likewise.
32552 (__dvd): Likewise.
32553 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
32554 (__acr): Likewise.
32555 (__cpy): Likewise.
32556 (norm): Likewise.
32557 (denorm): Likewise.
32558 (__mp_dbl): Likewise.
32559 (__dbl_mp): Likewise.
32560 (add_magnitudes): Likewise.
32561 (sub_magnitudes): Likewise.
32562 (__add): Likewise.
32563 (__sub): Likewise.
32564 (__mul): Likewise.
32565 (__inv): Likewise.
32566 (__dvd): Likewise.
32567
eede9df9
JM
325682013-01-08 Joseph Myers <joseph@codesourcery.com>
32569
32570 * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
32571 __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
32572 * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
32573 2 && __USE_EXTERN_INLINES]: Likewise.
32574
c40ea3d9
AJ
325752013-01-08 Andreas Jaeger <aj@suse.de>
32576
32577 [BZ# 14985]
32578 * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
32579 Remove.
32580 * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
32581 * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
32582
2ccdea26
AB
325832013-01-07 Anton Blanchard <anton@samba.org>
32584
32585 * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
32586 * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
32587 * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
32588 * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
32589 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
32590 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
32591 * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
32592 * sysdeps/powerpc/powerpc32/memset.S: Likewise.
32593 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
32594 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
32595 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
32596 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
32597 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
32598 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
32599 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
32600 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
32601 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
32602 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
32603 * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
32604 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
32605 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
32606 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
32607 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
32608 * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
32609 * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
32610 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
32611 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
32612 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
32613 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
32614 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
32615 * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
32616 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32617 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
32618 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
32619 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
32620 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
32621 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
32622 * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
32623 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
32624 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
32625 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
32626 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
32627 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
32628
a9708fed
JM
326292013-01-07 Joseph Myers <joseph@codesourcery.com>
32630
375607b9
JM
32631 * malloc/malloc.h (__MALLOC_P): Remove all definitions.
32632 (__MALLOC_PMT): Likewise.
32633 [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
32634 [__GNUC__], only on [_LIBC].
32635 [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
32636 [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
32637 [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
32638 * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
32639 forward declaration.
32640 (realloc_hook_ini): Likewise.
32641 (memalign_hook_ini): Likewise.
32642 (__libc_memalign): Do not use __MALLOC_PMT in variable
32643 declaration.
32644 (__libc_valloc): Likewise.
32645 (__libc_pvalloc): Likewise.
32646 (__libc_calloc): Likewise.
32647 (__posix_memalign): Likewise.
32648
a9708fed
JM
32649 [BZ #14996]
32650 * math/s_casinh.c: Include <float.h>.
32651 (__casinh): Do not do computation with squaring and square root
32652 for large arguments.
32653 * math/s_casinhf.c: Include <float.h>.
32654 (__casinhf): Do not do computation with squaring and square root
32655 for large arguments.
32656 * math/s_casinhl.c: Include <float.h>.
32657 [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
32658 (__casinhl): Do not do computation with squaring and square root
32659 for large arguments.
32660 * math/libm-test.inc (casin_test): Add more tests.
32661 (casinh_test): Likewise.
32662 * sysdeps/i386/fpu/libm-test-ulps: Update.
32663 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32664
afec409a
L
326652013-01-04 H.J. Lu <hongjiu.lu@intel.com>
32666
32667 * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
32668 (__x86_64_raw_data_cache_size): Likewise.
32669 (__x86_64_data_cache_size_half): Likewise.
32670 (__x86_64_raw_data_cache_size_half): Likewise.
32671 (__x86_64_shared_cache_size): Likewise.
32672 (__x86_64_raw_shared_cache_size): Likewise.
32673 (__x86_64_shared_cache_size_half): Likewise.
32674 (__x86_64_raw_shared_cache_size_half): Likewise.
32675 * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
32676 to ...
32677 (__x86_data_cache_size): This.
32678 (__x86_64_raw_data_cache_size): Renamed to ...
32679 (__x86_raw_data_cache_size): This.
32680 (__x86_64_data_cache_size_half): Renamed to ...
32681 (__x86_data_cache_size_half): This.
32682 (__x86_64_raw_data_cache_size_half): Renamed to ...
32683 (__x86_raw_data_cache_size_half): This.
32684 (__x86_64_shared_cache_size): Renamed to ...
32685 (__x86_shared_cache_size): This.
32686 (__x86_64_raw_shared_cache_size): Renamed to ...
32687 (__x86_raw_shared_cache_size): This.
32688 (__x86_64_shared_cache_size_half): Renamed to ...
32689 (__x86_shared_cache_size_half): This.
32690 (__x86_64_raw_shared_cache_size_half): Renamed to ...
32691 (__x86_raw_shared_cache_size_half): This.
32692 * sysdeps/x86_64/memcpy.S: Updated.
32693 * sysdeps/x86_64/memset.S: Likewise.
32694 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
32695 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
32696 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
32697
0b3986d0
DM
326982013-01-04 David S. Miller <davem@davemloft.net>
32699
32700 * sysdeps/sparc/fpu/libm-test-ulps: Update.
32701
e47686e9
AS
327022013-01-04 Andreas Schwab <schwab@linux-m68k.org>
32703
d643bac1
AS
32704 * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
32705 1 to avoid redefinition warning.
32706 (__USE_GNU): Don't define.
32707 (init_signaling_nan): Protoize.
32708
e47686e9
AS
32709 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32710
b18decba
SP
327112013-01-04 Siddhesh Poyarekar <siddhesh@redhat.com>
32712
fffb407f
SP
32713 * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
32714 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
32715 (__cpymn): Likewise.
32716 (norm): Remove commented code.
32717 (denorm): Likewise.
32718 (__mp_dbl): Likewise.
32719 (__inv): Likewise.
32720 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
32721 (__cpymn): Likewise.
32722 (norm): Remove commented code.
32723 (denorm): Likewise.
32724 (__mp_dbl): Likewise.
32725 (__inv): Likewise.
32726
b18decba
SP
32727 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
32728 mp_no value for 1.0 and 2.0.
32729 (norm): Use RADIXI instead of radixi.d.
32730 (denorm): Likewise.
32731 (__mul): Use 0.0 instead of zero.d.
32732 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
32733 mp_no value for 1.0 and 2.0.
32734 (norm): Use RADIXI instead of radixi.d.
32735 (denorm): Likewise.
32736 (__mul): Use 0.0 instead of zero.d.
32737
cdc1c96f
JM
327382013-01-04 Joseph Myers <joseph@codesourcery.com>
32739
32740 [BZ #14994]
32741 * math/s_casinh.c (__casinh): Reduce finite argument to first
32742 quadrant then set signs of results at the end.
32743 * math/s_casinhf.c (__casinhf): Likewise.
32744 * math/s_casinhl.c (__casinhl): Likewise.
32745 * math/libm-test.inc (casin_test): Add more tests.
32746 (casinh_test): Likewise.
32747 * sysdeps/i386/fpu/libm-test-ulps: Update.
32748 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32749
302913e1
SP
327502013-01-04 Siddhesh Poyarekar <siddhesh@redhat.com>
32751
6420d207
SP
32752 * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
32753
a9e48ab4
SP
32754 * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
32755
b7837264
SP
32756 * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
32757 declarations.
32758 (denorm): Likewise.
32759 (__mp_dbl): Likewise.
32760 (__inv): Likewise.
32761
f8af25d2
SP
32762 * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
32763 and adjust the header comment.
32764
302913e1
SP
32765 * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
32766 variable name from declaration.
32767
5d7dd1ca
L
327682013-01-03 H.J. Lu <hongjiu.lu@intel.com>
32769
32770 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
32771 Initialize COMMON_CPUID_INDEX_7 element.
32772 * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
32773 (CPUID_RTM): Likewise.
32774 (HAS_RTM): Likewise.
32775 (COMMON_CPUID_INDEX_7): New enum.
32776
2f5f40f4
AS
327772013-01-03 Andreas Schwab <schwab@linux-m68k.org>
32778
32779 [BZ #14981]
32780 * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
32781 size is zero, record memory as freed.
32782
4056f4a0
AJ
327832013-01-03 Andreas Jaeger <aj@suse.de>
32784
32785 * po/ia.po: Add new Interlingua translation.
32786
ab15736f 327872012-01-03 Allan McRae <allan@archlinux.org>
fd80f0b7
AM
32788
32789 * locale/programs/localedef.c: Fix description of '--posix' flag.
32790
568035b7
JM
327912013-01-02 Joseph Myers <joseph@codesourcery.com>
32792
e6898b8d
JM
32793 * NEWS: Update dates in second copyright notice.
32794 * README: Update copyright dates in example.
32795 * manual/libc.texinfo: Update copyright dates.
32796 * scripts/test-installation.pl: Update copyright date in --version
32797 output.
32798
0e2f9562
JM
32799 * hurd/ctty-input.c: Fix copyright notice formatting.
32800 * hurd/ctty-output.c: Likewise.
32801 * hurd/dtable.c: Likewise.
32802 * hurd/hurd-raise.c: Likewise.
32803 * hurd/hurdprio.c: Likewise.
32804 * hurd/msgportdemux.c: Likewise.
32805 * misc/sys/file.h: Likewise.
32806 * misc/sys/ioctl.h: Likewise.
32807 * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
32808 * sysdeps/mach/hurd/chdir.c: Likewise.
32809 * sysdeps/mach/hurd/fchdir.c: Likewise.
32810 * sysdeps/mach/hurd/rename.c: Likewise.
32811 * sysdeps/mach/hurd/rmdir.c: Likewise.
32812 * sysdeps/mach/hurd/seekdir.c: Likewise.
32813 * sysdeps/mach/hurd/setsid.c: Likewise.
32814 * sysdeps/posix/wait3.c: Likewise.
32815
568035b7
JM
32816 * All files with FSF copyright notices: Update copyright dates
32817 using scripts/update-copyrights.
32818 * intl/plural.c: Regenerated.
32819 * locale/programs/charmap-kw.h: Likewise.
32820 * locale/programs/locfile-kw.h: Likewise.
32821
da08f647
SP
328222013-01-02 Siddhesh Poyarekar <siddhesh@redhat.com>
32823
0f5477af
SP
32824 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
32825 four values.
32826
44e0d4c2
SP
32827 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
32828 calculation loop and add branch prediction.
32829
4d55b4e5
SP
32830 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
32831 check access beyond bounds of m1np.
32832
da08f647
SP
32833 * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
32834 MPTWO.
32835 (__inv): Remove local variable MPTWO to use the global
32836 constant.
32837 * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
32838 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
32839 variable MPTWO.
32840 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
32841 MP3HALFS static const.
32842
8e051029
DM
328432013-01-01 David S. Miller <davem@davemloft.net>
32844
32845 * po/ca.po: Update from translation team.
32846
f4cf5f2d
JM
328472013-01-01 Joseph Myers <joseph@codesourcery.com>
32848
32849 * scripts/update-copyrights: New file.
32850 * Makeconfig: Reformat copyright notice.
32851 * ctype/ctype.h: Likewise.
32852 * debug/swprintf_chk.c: Likewise.
32853 * elf/dl-cache.c: Likewise.
32854 * elf/dl-debug.c: Likewise.
32855 * elf/dl-object.c: Likewise.
32856 * grp/initgroups.c: Likewise.
32857 * hurd/Makefile: Likewise.
32858 * hurd/hurd/signal.h: Likewise.
32859 * hurd/hurdfault.c: Likewise.
32860 * hurd/hurdioctl.c: Likewise.
32861 * hurd/hurdlookup.c: Likewise.
32862 * hurd/intr-msg.c: Likewise.
32863 * iconv/gconv_open.c: Likewise.
32864 * libio/swprintf.c: Likewise.
32865 * locale/lc-ctype.c: Likewise.
32866 * locale/nl_langinfo.c: Likewise.
32867 * mach/Machrules: Likewise.
32868 * mach/Makefile: Likewise.
32869 * malloc/obstack.h: Likewise.
32870 * manual/Makefile: Likewise.
32871 * manual/tsort.awk: Likewise.
32872 * misc/bits/stab.def: Likewise.
32873 * nis/nis_print_group_entry.c: Likewise.
32874 * nis/nis_table.c: Likewise.
32875 * nis/nss_compat/compat-pwd.c: Likewise.
32876 * nis/nss_compat/compat-spwd.c: Likewise.
32877 * po/Makefile: Likewise.
32878 * posix/fnmatch.c: Likewise.
32879 * posix/regex.h: Likewise.
32880 * resolv/Makefile: Likewise.
32881 * resolv/nss_dns/dns-network.c: Likewise.
32882 * resolv/res_hconf.c: Likewise.
32883 * scripts/gen-sorted.awk: Likewise.
32884 * soft-fp/soft-fp.h: Likewise.
32885 * stdio-common/printf.h: Likewise.
32886 * stdlib/monetary.h: Likewise.
32887 * stdlib/random.c: Likewise.
32888 * stdlib/random_r.c: Likewise.
32889 * sysdeps/generic/Makefile: Likewise.
32890 * sysdeps/gnu/Makefile: Likewise.
32891 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
32892 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
32893 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
32894 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
32895 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
32896 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
32897 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
32898 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
32899 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
32900 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
32901 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
32902 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
32903 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
32904 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
32905 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
32906 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
32907 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
32908 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
32909 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
32910 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
32911 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
32912 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
32913 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
32914 * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
32915 * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
32916 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
32917 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
32918 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
32919 * sysdeps/mach/hurd/errnos.awk: Likewise.
32920 * sysdeps/mach/hurd/fork.c: Likewise.
32921 * sysdeps/mach/hurd/getcwd.c: Likewise.
32922 * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
32923 * sysdeps/mach/hurd/mmap.c: Likewise.
32924 * sysdeps/mach/hurd/utimes.c: Likewise.
32925 * sysdeps/mach/hurd/xmknod.c: Likewise.
32926 * sysdeps/posix/profil.c: Likewise.
32927 * sysdeps/posix/readdir_r.c: Likewise.
32928 * sysdeps/powerpc/bits/mathdef.h: Likewise.
32929 * sysdeps/powerpc/bits/setjmp.h: Likewise.
32930 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
32931 * sysdeps/powerpc/powerpc32/memset.S: Likewise.
32932 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
32933 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
32934 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
32935 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
32936 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
32937 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
32938 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
32939 * sysdeps/pthread/lio_listio.c: Likewise.
32940 * sysdeps/sparc/dl-procinfo.h: Likewise.
32941 * sysdeps/unix/i386/sysdep.S: Likewise.
32942 * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
32943 * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
32944 * sysdeps/unix/sysv/linux/getdents.c: Likewise.
32945 * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
32946 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
32947 * sysdeps/unix/sysv/linux/semctl.c: Likewise.
32948 * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
32949 * sysdeps/unix/sysv/linux/speed.c: Likewise.
32950 * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
32951 * sysdeps/wordsize-32/divdi3.c: Likewise.
32952 * time/sys/time.h: Likewise.
32953 * wcsmbs/Makefile: Likewise.
32954
0549fbba
DM
329552013-01-01 David S. Miller <davem@davemloft.net>
32956
a141f1a7
DM
32957 * po/fr.po: Update from translation team.
32958
0549fbba
DM
32959 * catgets/gencat.c: Update copyright year.
32960 * csu/version.c: Likewise.
32961 * debug/catchsegv.sh: Likewise.
32962 * debug/pcprofiledump.c: Likewise.
32963 * debug/xtrace.sh: Likewise.
32964 * elf/ldconfig.c: Likewise.
32965 * elf/ldd.bash.in: Likewise.
32966 * elf/pldd.c: Likewise.
32967 * elf/sotruss.ksh: Likewise.
32968 * elf/sprof.c: Likewise.
32969 * iconv/iconv_prog.c: Likewise.
32970 * iconv/iconvconfig.c: Likewise.
32971 * locale/programs/locale.c: Likewise.
32972 * locale/programs/localedef.c: Likewise.
32973 * login/programs/pt_chown.c: Likewise.
32974 * malloc/memusage.sh: Likewise.
32975 * malloc/memusagestat.c: Likewise.
32976 * malloc/mtrace.pl: Likewise.
32977 * nscd/nscd.c: Likewise.
32978 * nss/getent.c: Likewise.
32979 * nss/makedb.c: Likewise.
32980 * posix/getconf.c: Likewise.
32981
18ea052c
SP
329822012-12-31 Siddhesh Poyarekar <siddhesh@redhat.com>
32983
32984 * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
32985 numbers.
32986
9c89fca6
MF
329872012-12-30 Mike Frysinger <vapier@gentoo.org>
32988
32989 * math/bits/mathcalls.h (modf): Use __nonnull.
32990
085ec079
SP
329912012-12-29 Siddhesh Poyarekar <siddhesh@redhat.com>
32992
32993 * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
32994 (split): Use macro CN instead of the bare value.
32995 * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
32996 could be used.
32997 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
32998 instead of the bare value.
32999 (power1): Likewise.
33000
6d9f97e1
SP
330012012-12-28 Siddhesh Poyarekar <siddhesh@redhat.com>
33002
d63f73be
SP
33003 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
33004 __ATAN_TWOM.
33005 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
33006
6d9f97e1
SP
33007 * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
33008 their values.
33009 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
33010 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
33011 * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
33012 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
33013
4c4febf5
AJ
330142012-12-28 Andreas Jaeger <aj@suse.de>
33015
af5843ef
AJ
33016 * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define. New
33017 values are from Linux 3.7.
33018
4c4febf5
AJ
33019 * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
33020 (TCPI_OPT_ECN_SEEN): Define. Sync with Linux 3.7.
33021
99136f82
SP
330222012-12-28 Siddhesh Poyarekar <siddhesh@redhat.com>
33023
2f216c3c 33024 * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
91998e44
SP
33025 TRUE case.
33026
99136f82
SP
33027 * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
33028 (norm): Likewise.
33029 * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
33030 variables with preprocessor constants.
33031 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
33032 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
33033 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
33034
7fffbdff
BH
330352012-12-27 Bruno Haible <bruno@clisp.org>
33036
33037 [BZ #14317]
33038 * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
33039 only if needed.
33040
b76eb5f0
SP
330412012-12-27 Siddhesh Poyarekar <siddhesh@redhat.com>
33042
31a7fe5c
SP
33043 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
33044 and use variable directly.
33045 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
33046
b76eb5f0
SP
33047 * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
33048 MPONE.
33049 * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
33050 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
33051 variable MPONE.
33052 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
33053 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
33054 * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
33055 include directive. Remove local variable MPONE.
33056 * sysdeps/ieee754/dbl-64/mplog.h: Remove.
33057 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
33058 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
33059
2c8bfe7d
DM
330602012-12-25 David S. Miller <davem@davemloft.net>
33061
33062 * version.h (RELEASE): Set to "development".
33063 (VERSION): Set to "2.17.90".
33064 * NEWS: Add 2.18 section.
33065
147d03b0
DM
330662012-12-21 David S. Miller <davem@davemloft.net>
33067
33068 * po/hr.po: Update from translation team.
33069
a8ebb2b9
AK
330702012-12-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
33071
33072 * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
33073
95b4f1b6
SE
330742012-12-19 Steve Ellcey <sellcey@mips.com>
33075
b2d94007 33076 * NEWS: Mention new memcpy for MIPS.
95b4f1b6 33077
cedb2a90
MS
330782012-12-18 Marcus Shawcroft <marcus.shawcroft@linaro.org>
33079
33080 * manual/contrib.texi (Contributors): Spelling correction.
33081
bbf527d6
DM
330822012-12-15 David S. Miller <davem@davemloft.net>
33083
33084 * po/ru.po: Update from translation team.
33085
bc38c906
DM
330862012-12-13 David S. Miller <davem@davemloft.net>
33087
85429b1a
DM
33088 * NEWS: Mention IFUNC testsuite enhancements.
33089
d283e353
DM
33090 * po/pl.po: Update from translation team.
33091 * po/bg.po: Likewise.
33092
bc38c906
DM
33093 * manual/contrib.texi (Contributors): Update entries for Hongjiu
33094 Lu and Joseph S. Myers. Add entry for Marcus Shawcroft.
33095
a181b0d7
DM
330962012-12-11 David S. Miller <davem@davemloft.net>
33097
4641d57e
DM
33098 * po/sv.po: Update from translation team.
33099
f7bc6495
DM
33100 * po/vi.po: Update from translation team.
33101
6fc9048f
DM
33102 * po/cs.po: Update from translation team.
33103
a181b0d7
DM
33104 * po/de.po: Update from translation team.
33105 * po/eo.po: Likewise.
33106 * po/nl.po: Likewise.
33107
f70bfe80
SP
331082012-12-11 Siddhesh Poyarekar <siddhesh@redhat.com>
33109
3c8b4190
SP
33110 [BZ #14246]
33111 * manual/argp.texi (Argp Helper Functions): Move node to follow
33112 Argp Parsing State.
33113
f70bfe80
SP
33114 [BZ #14872]
33115 * manual/conf.texi (Limits on File System Capacity): Mention if
33116 terminating null is included in the max size.
33117
188f0adf
AJ
331182012-12-10 Andreas Jaeger <aj@suse.de>
33119
33120 * po/cs.po: Update from translation team.
33121
56e7d3ad
SP
331222012-12-08 Siddhesh Poyarekar <siddhesh@redhat.com>
33123
33124 * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
33125 void pointer and cast to uintptr_t.
33126 * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
33127 path.
33128 * sysdeps/s390/s390-64/memcpy.S: Likewise.
33129 * sysdeps/s390/s390-64/memset.S: Likewise.
33130
76f2d2ea 331312012-12-08 Benno Schulenberg <bensberg@justemail.net>
c430c4af
BS
33132
33133 [BZ #14833]
33134 * menual/message.texi (Message Translation): Fix typos.
33135 (Helper programs for gettext): Likewise.
33136
67cbf9a2
AS
331372012-12-07 Andreas Schwab <schwab@linux-m68k.org>
33138
33139 [BZ #14898]
33140 * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
33141 Change to -1.
33142
682d0e9a
DM
331432012-12-07 David S. Miller <davem@davemloft.net>
33144
33145 * po/libc.pot: Update.
33146
573cd484
RH
331472012-12-07 Richard Henderson <rth@redhat.com>
33148
7e9da188 33149 [BZ #10114]
573cd484
RH
33150 * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
33151 normal/normal case to before the switch.
33152 (_FP_DIV): Likewise.
33153
e933a943
MF
331542012-12-06 Carlos O'Donell <carlos@systemhalted.org>
33155 Mike Frysinger <vapier@gentoo.org>
33156
33157 * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
33158 check for __NR_fadvise64_64.
33159
82123268
CM
331602012-12-06 Chris Metcalf <cmetcalf@tilera.com>
33161
33162 * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
33163 0, not just to plain "0" as a statement.
33164 (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
33165 with cw.
33166
d9814526
JM
331672012-12-06 Joseph Myers <joseph@codesourcery.com>
33168
33169 * NEWS: Use sourceware.org in Bugzilla URL.
33170
7728c574
SP
331712012-12-06 Siddhesh Poyarekar <siddhesh@redhat.com>
33172
f16946dd
SP
33173 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
33174 (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
33175
5704bbcb
SP
33176 * stdio-common/tst-put-error.c (do_test): Add newline to the
33177 padded test to ensure flush.
33178
17aa0516
JL
331792012-12-05 Jeff Law <law@redhat.com>
33180
33181 * sunrpc/etc.rpc (fedfs_admin): Add entry.
33182
363313b5
JM
331832012-12-05 Joseph Myers <joseph@codesourcery.com>
33184
effbd42a
JM
33185 * README: Don't refer to ports add-on as distributed separately.
33186 Mention AArch64 in list of systems supported in the ports add-on.
33187
87600365
JM
33188 * LICENSES: Add more non-FSF copyright and license notices.
33189
a0d7066a
JM
33190 * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
33191 ((unused)).
33192
66ca5a5b
JM
33193 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
33194
363313b5
JM
33195 * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
33196 10000 as width of padded output.
33197
b37984ad
JM
331982012-12-04 Joseph Myers <joseph@codesourcery.com>
33199
9003570a
JM
33200 * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
33201
b37984ad
JM
33202 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
33203 variable LX with __attribute__ ((unused)).
33204 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
33205 Likewise.
33206 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
33207 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
33208 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
33209 with __attribute__ ((unused)).
33210
c8df52ec
DM
332112012-12-04 David S. Miller <davem@abraco.davemloft.net>
33212
33213 * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
33214
b3b099af
JM
332152012-12-04 Joseph Myers <joseph@codesourcery.com>
33216
c33aa6e3
JM
33217 * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
33218 (CFLAGS-nldbl-acos.c): New variable.
33219 [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
33220 [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
33221 [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
33222 [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
33223 [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
33224 [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
33225 [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
33226 [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
33227 [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
33228 [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
33229 [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
33230 [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
33231 [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
33232 [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
33233 [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
33234 [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
33235 [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
33236 [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
33237 [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
33238 [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
33239 [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
33240 [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
33241 [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
33242 [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
33243 [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
33244 [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
33245 [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
33246 [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
33247 [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
33248 [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
33249 [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
33250 [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
33251 [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
33252 [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
33253 [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
33254 [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
33255 [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
33256 [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
33257 [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
33258 [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
33259 [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
33260 [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
33261 [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
33262 [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
33263 [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
33264 [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
33265 [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
33266 [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
33267 [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
33268 [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
33269 [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
33270 [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
33271 [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
33272 [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
33273 [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
33274 [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
33275 [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
33276 [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
33277 [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
33278 [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
33279 [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
33280 [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
33281 [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
33282 [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
33283 [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
33284 [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
33285 [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
33286 [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
33287 [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
33288 [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
33289 [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
33290 [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
33291 [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
33292 [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
33293 [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
33294 [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
33295 [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
33296 [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
33297 [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
33298 [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
33299 [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
33300 [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
33301 [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
33302 [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
33303 [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
33304 [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
33305 [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
33306 [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
33307 [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
33308 [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
33309 [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
33310 [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
33311 [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
33312 [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
33313 [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
33314 [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
33315 [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
33316
20f0018d
JM
33317 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
33318 (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
33319
b3b099af
JM
33320 [BZ #14914]
33321 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
33322 whole low double instead of just low 47 bits when splitting values
33323 into two parts.
33324
029264d1
AM
333252012-12-03 Allan McRae <allan@archlinux.org>
33326
33327 * manual/stdio.texi (Predefined Printf Handlers): Remove
33328 @hsep and @vsep usage.
33329
c9d6789e
MF
333302012-12-03 Mike Frysinger <vapier@gentoo.org>
33331
33332 * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
33333 * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
33334
4b7634a5
JL
333352012-12-03 Jeff Law <law@redhat.com>
33336
33337 * time/sys/time.h (settimeofday): Do not mark TV argument
33338 as __nonnull.
33339
eb6cbd24
MF
333402012-12-01 Mike Frysinger <vapier@gentoo.org>
33341
33342 * libio/fileops.c (_IO_new_file_close_it): Do not always flush
33343 when currently writing and seek to current position when not.
33344 * libio/Makefile (tests): Remove bug-fclose1.
33345 * libio/bug-fclose1.c: Delete.
33346
f638872a
JM
333472012-12-01 Joseph Myers <joseph@codesourcery.com>
33348
33349 * manual/arith.texi (feenableexcept): Fix typo.
33350 (fedisableexcept): Likewise.
33351
48085d14
RM
333522012-11-30 Roland McGrath <roland@hack.frob.com>
33353
33354 * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
33355 second, differently-typed declaration, rather than a cast.
33356
1a538b9f
SP
333572012-11-30 Siddhesh Poyarekar <siddhesh@redhat.com>
33358
33359 * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
33360 * include/rpc/svc.h: ... here.
33361
d07f2ff1 333622012-11-30 Aurelien Jarno <aurel32@debian.org>
cc8bb21c
AJ
33363
33364 [BZ #13013]
33365 * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
33366 depending n and resplen2 to catch cases where answer
33367 equals answerp2.
33368
c93ec1f0
CD
333692012-11-29 Carlos O'Donell <carlos@systemhalted.org>
33370
33371 * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
33372 for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
33373
37db69de
MF
333742012-11-29 Mike Frysinger <vapier@gentoo.org>
33375
33376 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
33377
e10c4e4f
RM
333782012-11-29 Roland McGrath <roland@hack.frob.com>
33379
33380 * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
33381
2af1b328
JL
333822012-11-28 Jeff Law <law@redhat.com>
33383
33384 [BZ #13761]
33385 * nscd/grpcache.c (cache_addgr): Rename alloca_used to
33386 dataset_temporary. Track alloca usage into alloca_used.
33387 If dataset is large allocate and release it via malloc/free.
33388
111db5b1
FW
333892012-06-04 Florian Weimer <fweimer@redhat.com>
33390
f06cc227 33391 [BZ #14197]
111db5b1
FW
33392 * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
33393
dd694abd
DM
333942012-11-28 David S. Miller <davem@davemloft.net>
33395
33396 * sysdeps/sparc/fpu/libm-test-ulps: Update.
33397
9984dd01
JM
333982012-11-28 Joseph Myers <joseph@codesourcery.com>
33399
33400 [BZ #14803]
33401 * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
33402 of pi/2 rounded to nearest to 64 bits.
33403 (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
33404 nearest to 64 bits.
33405 (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
33406 bits.
33407
14bc93a9
JL
334082012-11-28 Jeff Law <law@redhat.com>
33409 Martin Osvald <mosvald@redhat.com>
33410
33411 [BZ #14889]
33412 * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
33413 * sunrpc/svc.c: Include time.h.
33414 (__svc_accept_failed): New function.
33415 * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
33416 any reason other than EINTR, call __svc_accept_failed.
33417 * sunrpc/svc_udp.c (svcudp_recv): Similarly.
33418 * sunrpc/svc_unix.c (rendezvous_request): Similarly.
33419
e3c6aa3a
AS
334202012-11-28 Andreas Schwab <schwab@suse.de>
33421
33422 * scripts/abilist.awk: Also handle indirect functions in .opd
33423 section.
33424
1bead169
JM
334252012-11-28 Joseph Myers <joseph@codesourcery.com>
33426
33427 [BZ #13881]
33428 * sysdeps/x86/fpu/powl_helper.c: New file.
33429 * sysdeps/x86/fpu/Makefile: Likewise.
33430 * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
33431 (p3): New object.
33432 (__ieee754_powl): Use __powl_helper for finite arguments except
33433 integer exponents below 8.
33434 * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
33435 (p3): New object.
33436 (__ieee754_powl): Use __powl_helper for finite arguments except
33437 integer exponents below 8.
33438 * math/libm-test.inc (pow_test): Add more tests and enable some
33439 previously disabled tests.
33440 * sysdeps/i386/fpu/libm-test-ulps: Update.
33441 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
33442
0817d63d
SP
334432012-11-28 Siddhesh Poyarekar <siddhesh@redhat.com>
33444 Carlos O'Donell <carlos_odonell@mentor.com>
33445
33446 * nss/makedb.c (is_prime): Assert that input is odd and greater
33447 than 4. Note that fact in a comment too.
33448 (next_prime): Add 4 to input.
33449
de2fd463
SP
334502012-11-27 Siddhesh Poyarekar <siddhesh@redhat.com>
33451
33452 [BZ #11741]
33453 * libio/Makefile (tests): Add test case tst-fwrite-error.
33454 * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
33455 * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
33456 * libio/tst-fwrite-error.c: New test case.
33457
c515fb51
L
334582012-11-26 H.J. Lu <hongjiu.lu@intel.com>
33459
33460 * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
33461 before casting to void *.
33462 * include/libc-internal.h (__pointer_type): New macro.
33463 (__integer_if_pointer_type_sub): Likewise.
33464 (__integer_if_pointer_type): Likewise.
33465 (cast_to_integer): Likewise.
33466 * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
33467 (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
33468 before casting to atomic64_t.
33469 (atomic_exchange_acq): Likewise.
33470 (__arch_exchange_and_add_body): Likewise.
33471 (__arch_add_body): Likewise.
33472 (atomic_add_negative): Likewise.
33473 (atomic_add_zero): Likewise.
33474
4cf77aa9
JM
334752012-11-26 Joseph Myers <joseph@codesourcery.com>
33476
33477 * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
33478 (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
33479 (add_fdes): Likewise.
33480 (linear_search_fdes): Likewise.
33481 (binary_search_unencoded_fdes): Likewise.
33482
d260b3b4
AS
334832012-11-26 Andreas Schwab <schwab@linux-m68k.org>
33484
33485 * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
33486
67060746
AC
334872012-11-24 Adam Conrad <adconrad@0c3.net>
33488
33489 * configure.in: Autodetect C++ header directories.
33490 * configure: Regenerated.
33491
800938a1
MF
334922012-11-23 Mike Frysinger <vapier@gentoo.org>
33493
33494 * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
33495
4e6e34e6
AS
334962012-11-23 Andreas Schwab <schwab@linux-m68k.org>
33497
33498 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
33499
7c7feb47
JM
335002012-11-22 Joseph Myers <joseph@codesourcery.com>
33501
7184dcdf
JM
33502 * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
33503 LDBL_MANT_DIG == 106]: Disable some tests.
33504 (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
33505 Likewise.
33506 (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
33507 Likewise.
33508
0a42601f
JM
33509 [BZ #14871]
33510 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
33511 input for small inputs. Return +/- pi/2 for large inputs.
33512 * math/libm-test.inc (atan_test): Add more tests.
33513
79c9b9fe
JM
33514 * sysdeps/generic/unwind-dw2-fde-glibc.c
33515 (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
33516 __attribute__ ((unused)).
33517
c60d3bf2
JM
33518 [BZ #14645]
33519 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
33520 x * y if x and y are nonzero and z is zero.
33521
ef1e0867
JM
33522 [BZ #14811]
33523 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
33524 nonzero exponents with absolute value below 0x1p-117 to +/-
33525 0x1p-117.
33526
1468ded3
JM
33527 [BZ #14869]
33528 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
33529 up arguments below 2**-450, not just those below 2**-500.
33530 * math/libm-test.inc (hypot_test): Add another test.
33531
8e27e3cc
JM
33532 [BZ #14868]
33533 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
33534 Return a+b for ratio over 2**120, not 2**60.
33535 * math/libm-test.inc (hypot_test): Add another test.
33536
c9c0279b
JM
33537 * math/libm-test.inc (clog_test): Use
33538 UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
33539 (clog10_test): Likewise.
33540
7c7feb47
JM
33541 [BZ #6778]
33542 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
33543
fff1530e
AS
335442012-11-22 Andreas Schwab <schwab@suse.de>
33545
33546 * sysdeps/i386/fpu/libm-test-ulps: Update.
33547
94558d30
PT
335482012-11-22 Pino Toscano <toscano.pino@tiscali.it>
33549
33550 * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
33551 printf output with newline.
33552
7e1be741
L
335532012-11-21 H.J. Lu <hongjiu.lu@intel.com>
33554
6bfea974
L
33555 [BZ #14865]
33556 * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
33557 * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
33558 -z nodlopen, -z initfirst and -z execstack support.
33559 * configure: Regenerated.
33560
7e1be741
L
33561 * elf/elf.h (DF_1_NODIRECT): New macro.
33562 (DF_1_IGNMULDEF): Likewise.
33563 (DF_1_NOKSYMS): Likewise.
33564 (DF_1_NOHDR): Likewise.
33565 (DF_1_EDITED): Likewise.
33566 (DF_1_NORELOC): Likewise.
33567 (DF_1_SYMINTPOSE): Likewise.
33568 (DF_1_GLOBAUDIT): Likewise.
33569 (DF_1_SINGLETON): Likewise.
33570 * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
33571 DT_1_SUPPORTED_MASK bits.
33572 * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
33573
105ce2ce
CD
335742012-11-20 Carlos O'Donell <carlos_odonell@mentor.com>
33575
33576 * sysdeps/unix/make-syscalls.sh: Document prefixes.
33577
123be9de
TS
335782012-11-20 Thomas Schwinge <thomas@codesourcery.com>
33579
d072f3f7
TS
33580 * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
33581 macro.
33582
123be9de
TS
33583 * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
33584 (sendmmsg): Move declarations...
33585 * socket/sys/socket.h: ... here.
33586 * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
33587 !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
33588 include it from...
33589 * socket/recvmmsg.c: ... this new file.
33590 * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
33591 (sendmmsg): Rename to __sendmmsg, create weak alias and make
33592 definition of __sendmmsg hidden.
33593 * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
33594 [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
33595 Move ENOSYS stub into and include it from...
33596 * socket/sendmmsg.c: ... this new file.
33597 * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
33598 (sysdep_routines): Move recvmmsg and sendmmsg...
33599 * socket/Makefile (routines): ... here.
33600 * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
33601 (GLIBC_PRIVATE): Add __sendmmsg.
33602 * include/sys/socket.h (__sendmmsg): Add declarations.
33603 * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
33604 sendmmsg.
33605
cf9a5d18
JM
336062012-11-20 Joseph Myers <joseph@codesourcery.com>
33607
33608 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
33609 variable I1 with __attribute__ ((unused)).
33610 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
33611
ecd4caf9
JM
336122012-11-19 Joseph Myers <joseph@codesourcery.com>
33613
be14d48f
JM
33614 * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
33615 DUMMY variables with __attribute__ ((unused)).
33616
ecd4caf9
JM
33617 * bits/byteswap.h: Include <bits/types.h>.
33618 (__bswap_64): Use __uint64_t instead of unsigned long long int.
33619
986cab95
PT
336202012-11-19 Pino Toscano <toscano.pino@tiscali.it>
33621
33622 * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
33623 string_t. Do not manually set errno.
33624 (__ptsname_r): Change the type of PEERNAME to string_t, and check its
33625 length with __strnlen. Make sure to both set errno and return it on
33626 failure.
33627
6d33cc9d
DM
336282012-11-19 David S. Miller <davem@davemloft.net>
33629
33630 With help from Joseph Myers.
33631 * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
33632 very large arguments properly.
33633 * math/libm-test.inc (atan_test): New tests.
33634 (atan2_test): New tests.
33635 * sysdeps/sparc/fpu/libm-test-ulps: Update.
33636 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
33637
ee663277
JM
336382012-11-19 Joseph Myers <joseph@codesourcery.com>
33639
877f2d8e
JM
33640 [BZ #14856]
33641 * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
33642 Define to 3.
33643
116fc08a
JM
33644 * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
33645 [POSIX] (EADDRNOTAVAIL): Likewise.
33646 [POSIX] (EAFNOSUPPORT): Likewise.
33647 [POSIX] (EALREADY): Likewise.
33648 [POSIX] (ECONNABORTED): Likewise.
33649 [POSIX] (ECONNREFUSED): Likewise.
33650 [POSIX] (ECONNRESET): Likewise.
33651 [POSIX] (EDESTADDRREQ): Likewise.
33652 [POSIX] (EDQUOT): Likewise.
33653 [POSIX] (EHOSTUNREACH): Likewise.
33654 [POSIX] (EIDRM): Likewise.
33655 [POSIX] (EISCONN): Likewise.
33656 [POSIX] (ELOOP): Likewise.
33657 [POSIX] (EMULTIHOP): Likewise.
33658 [POSIX] (ENETDOWN): Likewise.
33659 [POSIX] (ENETUNREACH): Likewise.
33660 [POSIX] (ENOBUFS): Likewise.
33661 [POSIX] (ENODATA): Likewise.
33662 [POSIX] (ENOLINK): Likewise.
33663 [POSIX] (ENOMSG): Likewise.
33664 [POSIX] (ENOPROTOOPT): Likewise.
33665 [POSIX] (ENOSR): Likewise.
33666 [POSIX] (ENOSTR): Likewise.
33667 [POSIX] (ENOTCONN): Likewise.
33668 [POSIX] (ENOTSOCK): Likewise.
33669 [POSIX] (EOPNOTSUPP): Likewise.
33670 [POSIX] (EOVERFLOW): Likewise.
33671 [POSIX] (EPROTO): Likewise.
33672 [POSIX] (EPROTONOSUPPORT): Likewise.
33673 [POSIX] (EPROTOTYPE): Likewise.
33674 [POSIX] (ESTALE): Likewise.
33675 [POSIX] (ETIME): Likewise.
33676 [POSIX] (ETXTBSY): Likewise.
33677 [POSIX] (EWOULDBLOCK): Likewise.
33678 [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
33679 * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
33680 [POSIX] (SEEK_CUR): Likewise.
33681 [POSIX] (SEEK_END): Likewise.
33682 [POSIX || UNIX98] (mode_t): Do not require.
33683 [POSIX] (off_t): Likewise.
33684 [POSIX] (pid_t): Likewise.
33685 [POSIX] (sys/stat.h): Do not allow header.
33686 [POSIX] (unistd.h): Likewise.
33687 [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
33688 [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
33689 [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
33690 * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
33691 require.
33692 * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
33693 sigevent): Specify elements.
33694 [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
33695 entry.
33696 [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
33697 [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
33698
a483863f
JM
33699 * conform/data/cpio.h-data [POSIX]: Disable whole file.
33700 * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
33701 * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
33702 (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
33703 [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
33704 [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
33705 [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
33706 [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
33707 [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
33708 [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
33709 [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
33710 [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
33711 [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
33712 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
33713 Likewise.
33714 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
33715 Likewise.
33716 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
33717 Likewise.
33718 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
33719 Likewise.
33720 [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
33721 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
33722 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
33723 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
33724 [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
33725 Specify lower bound on value.
33726 [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
33727 [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
33728 [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
33729 [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
33730 [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
33731 [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
33732 [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
33733 [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
33734 value.
33735 [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
33736 as optional.
33737 [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
33738 [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
33739 [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
33740 [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
33741 [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
33742 [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
33743 [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
33744 [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
33745 [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
33746 [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
33747 [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
33748 [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
33749 [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
33750 [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
33751 [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
33752 [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
33753 entry.
33754 [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
33755 optional.
33756 [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
33757 [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
33758 [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
33759 [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
33760 [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
33761 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
33762 Likewise.
33763 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
33764 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
33765 [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
33766 [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
33767 [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise. Give
33768 value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
33769 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
33770 as optional.
33771 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
33772 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
33773 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
33774 [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
33775 Likewise. Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
33776 [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
33777 specify as optional.
33778 [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
33779 [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
33780 [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
33781 [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
33782 [POSIX || XPG3] (NL_ARGMAX): Do not allow.
33783 [XPG3] (NL_LANGMAX): Likewise.
33784 [POSIX || XPG3] (NL_MSGMAX): Likewise.
33785 [POSIX || XPG3] (NL_NMAX): Likewise.
33786 [POSIX || XPG3] (NL_SETMAX): Likewise.
33787 [POSIX || XPG3] (NL_TEXTMAX): Likewise.
33788 [XPG3] (NZERO): Likewise.
33789 [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
33790 [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
33791 [!ISO && !ISO99 && !ISO11] (*_t): Allow.
33792 * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
33793 (REG_ERANGE): Expect.
33794 * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
33795 optional-constant.
33796 [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
33797 Use (void) in prototype.
33798 [POSIX] (*_t): Allow.
33799 * conform/data/sys/times.h-data [POSIX]: Enable whole file.
33800 * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
33801 (WRDE_BADVAL): Expect.
33802
5ba924e3
JM
33803 * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
33804 expect.
33805 [XPG3 || XPG4] (O_RSYNC): Likewise.
33806 * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
33807 Likewise.
33808 [XPG3 || XPG4] (pthread_sigmask): Likewise.
33809 [XPG3 || XPG4] (sigqueue): Likewise.
33810 [XPG3 || XPG4] (sigtimedwait): Likewise.
33811 [XPG3 || XPG4] (sigwaitinfo): Likewise.
33812 * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
33813 [XPG3 || XPG4] (vsnprintf): Likewise.
33814 * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
33815 Likewise.
33816 [XPG3 || XPG4] (blksize_t): Likewise.
33817 * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
33818 Likewise.
33819 [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
33820 [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
33821 [XPG3 || XPG4] (struct itimerspec): Likewise.
33822 [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
33823 [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
33824 [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
33825 [XPG3 || XPG4] (clockid_t): Likewise.
33826 [XPG3 || XPG4] (timer_t): Likewise.
33827 [XPG3 || XPG4] (clock_getres): Likewise.
33828 [XPG3 || XPG4] (clock_gettime): Likewise.
33829 [XPG3 || XPG4] (clock_settime): Likewise.
33830 [XPG3 || XPG4] (nanosleep): Likewise.
33831 [XPG3 || XPG4] (timer_create): Likewise.
33832 [XPG3 || XPG4] (timer_delete): Likewise.
33833 [XPG3 || XPG4] (timer_gettime): Likewise.
33834 [XPG3 || XPG4] (timer_getoverrun): Likewise.
33835 [XPG3 || XPG4] (timer_settime): Likewise.
33836 * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
33837 [XPG3 || XPG4] (getlogin_r): Likewise.
33838 [XPG3 || XPG4] (pread): Likewise.
33839 [XPG3 || XPG4] (pthread_atfork): Likewise.
33840 [XPG3 || XPG4] (pwrite): Likewise.
33841
ee663277
JM
33842 [BZ #14835]
33843 * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
33844 <bits/siginfo.h>.
33845
942caa16
PT
338462012-11-19 Pino Toscano <toscano.pino@tiscali.it>
33847
e19af380
PT
33848 * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
33849 finalizing MALLSTREAM.
33850
942caa16
PT
33851 * sysdeps/mach/hurd/syncfs.c: New file.
33852
cfde9b46
SP
338532012-11-19 Siddhesh Poyarekar <siddhesh@redhat.com>
33854
33855 [BZ #14719]
33856 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
33857 NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
33858 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
33859 h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
33860 (_nss_dns_gethostbyname4_r): Likewise.
33861 * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
33862 EAI_SYSTEM if NSS_STATUS_UNAVAIL.
33863
f6da27e5
PH
338642012-11-19 Peng Haitao <penght@cn.fujitsu.com>
33865
33866 [BZ #13763]
33867 * sunrpc/bindrsvprt.c: Add lock to protect static variable.
33868
6665d4a2
SM
338692012-11-19 Steve McIntyre <steve.mcintyre@linaro.org>
33870
1f51ee92
SM
33871 * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
33872 * elf/cache.c (print_entry): Print ",AArch64" for
33873 FLAG_AARCH64_LIB64
33874
6665d4a2
SM
33875 * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
33876 * elf/cache.c (print_entry): Print ",hard-float" for
33877 FLAG_ARM_LIBHF.
33878
05b227bd
DM
338792012-11-18 David S. Miller <davem@davemloft.net>
33880
33881 With help from Joseph Myers.
33882 * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
33883 cutoff to 2**-13.
33884 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
33885 cutoff to 2**-25.
33886 * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
33887 ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
33888 small.
33889 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
33890 * math/libm-test.inc (y0_test): New tests.
33891 (y1_test): New tests.
33892 * sysdeps/i386/fpu/libm-test-ulps: Update.
33893 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
33894 * sysdeps/sparc/fpu/libm-test-ulps: Update.
33895
786b0b67
AS
338962012-11-18 Andreas Schwab <schwab@linux-m68k.org>
33897
33898 * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
33899 64-bit targets.
33900 * configure: Regenerated.
33901
8e18b86d
DM
339022012-11-17 David S. Miller <davem@davemloft.net>
33903
33904 [BZ #14811]
33905 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
33906 nonzero exponents with absolute value below 0x1p-128 to +/-
33907 0x1p-128.
33908
531f1ae0
JM
339092012-11-17 Joseph Myers <joseph@codesourcery.com>
33910
12df29e2
JM
33911 * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
33912
150dc1a0
JM
33913 * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
33914
531f1ae0
JM
33915 * posix/getconf-speclist.c: New file.
33916 * posix/posix-envs.def: Likewise.
33917 * posix/confstr.c (START_ENV_GROUP): New macro.
33918 (END_ENV_GROUP): Likewise.
33919 (KNOWN_ABSENT_ENVIRONMENT): Likewise.
33920 (KNOWN_PRESENT_ENV_STRING): Likewise.
33921 (KNOWN_PRESENT_ENVIRONMENT): Likewise.
33922 (UNKNOWN_ENVIRONMENT): Likewise.
33923 (confstr): Include posix-envs.def instead of handling
33924 _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
33925 _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
33926 * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
33927 (END_ENV_GROUP): Likewise.
33928 (KNOWN_ABSENT_ENVIRONMENT): Likewise.
33929 (KNOWN_PRESENT_ENVIRONMENT): Likewise.
33930 (UNKNOWN_ENVIRONMENT): Likewise.
33931 (__sysconf): Include posix-envs.def instead of handling associated
33932 cases directly here.
33933 * posix/Makefile ($(objpfx)getconf.speclist): Generate by
33934 preprocessing getconf-speclist.c rather than running getconf or
33935 generating empty file.
33936
a93f9cbc
PT
339372012-11-16 Pino Toscano <toscano.pino@tiscali.it>
33938
33939 * scripts/check-local-headers.sh: Ignore 'mach' headers.
33940
d64d9f87
AL
339412012-11-16 Andrej Lajovic <natrij@gmail.com>
33942
33943 [BZ #14672]
33944 * iconv/iconv_prog.c (main): Fix -c handling of '/'.
33945
447885eb
DM
339462012-11-16 David S. Miller <davem@davemloft.net>
33947
33948 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
33949 smaller than LDBL_EPSILON/2.0L, just return xm1.
33950
bcbf9830
L
339512012-11-16 H.J. Lu <hongjiu.lu@intel.com>
33952
33953 * elf/tst-array1.c (init): Set constructor priority to 1000.
33954 (fini): Set destructor priority to 1000.
33955 * elf/tst-array2dep.c: Likewise.
33956
2b766585
SP
339572012-11-16 Siddhesh Poyarekar <siddhesh@redhat.com>
33958
33959 [BZ #11741]
33960 * libio/fileops.c (_IO_new_file_write): Correctly return error.
33961 (_IO_new_file_xsputn): Also return EOF if none of the input
33962 data was written when overflow failed.
33963 * libio/iopadn.c (_IO_padn): Likewise.
33964 * libio/iowpadn.c (_IO_wpadn): Likewise.
33965 * stdio-common/tst-put-error.c: Add copyright notice.
33966 (do_test): Add case for printing padded string.
33967 * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
33968 _IO_padn returned error.
33969 [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
33970 * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
33971 return EOF.
33972
b1848fde
SP
339732012-11-16 Siddhesh Poyarekar <siddhesh@redhat.com>
33974
33975 * libio/libioP.h: Add comment note that the references to C++
33976 bits are now obsolete.
33977
2fd89785
MS
339782012-11-15 Marcus Shawcroft <marcus.shawcroft@linaro.org>
33979
33980 * math/libm-test.inc (check_complex): Use asprintf.
33981
e3ea5409
JM
339822012-11-14 Joseph Myers <joseph@codesourcery.com>
33983
33984 * debug/pcprofiledump.c (print_version): Update copyright year.
33985 * malloc/memusagestat.c (print_version): Likewise.
33986
2e64d265
L
339872012-11-14 H.J. Lu <hongjiu.lu@intel.com>
33988
33989 [BZ #14831]
33990 * elf/Makefile (tests): Add tst-audit8.
33991 ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
33992 ($(objpfx)tst-audit8.out): New target.
33993 (tst-audit8-ENV): New variable.
33994 * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
33995 audit if l_reloc_result is NULL.
33996 (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
33997 defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
33998 * elf/tst-audit8.c: New file.
33999
c485e4d2
MS
340002012-11-14 Marcus Shawcroft <marcus.shawcroft@linaro.org>
34001
34002 * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
34003 * misc/Makefile (CFLAGS-select.c): Define.
34004 * posix/Makefile (CFLAGS-pause.c): Define.
34005
3a0d900a
DM
340062012-11-13 David S. Miller <davem@davemloft.net>
34007
34008 * crypt/Makefile: Move test targets after toplevel Rules
34009 inclusion. Grab any necessary sysdep routines when linking.
34010 * crypt/md5.c (md5_process_block): Remove define, we will always
34011 name it __md5_process_block.
34012 (md5_finish_ctx): Update md5_process_block call.
34013 (md5_stream): Likewise.
34014 (md5_process_bytes): Likewise.
34015 (md5_process_block): Rename to __md5_process_block and move to ...
34016 * crypt/md5-block.c: ... here.
34017 * crypt/sha256.c (sha256_process_block): Move to ...
34018 * crypt/sha256-block.c: ... here.
34019 * crypt/sha512.c (sha512_process_block): Move to ...
34020 * crypt/sha512-block.c: ... here.
34021 * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
34022 path.
34023 * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
34024 * sysdeps/sparc/sparc64/multiarch/Makefile
34025 (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
34026 crypt subdir.
34027 (localedef-aux): Add md5 crypto assembler when in locale subdir.
34028 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
34029 multiarch changes.
34030 * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
34031 * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
34032 * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
34033 * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
34034 * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
34035 * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
34036 * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
34037 * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
34038 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
34039 file.
34040 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
34041 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
34042 file.
34043 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
34044
8ca89318
JM
340452012-11-13 Joseph Myers <joseph@codesourcery.com>
34046
e27d476a
JM
34047 * timezone/tzselect.ksh: Update from tzcode git revision
34048 a435f9f0ecafa56d9e0263835836bd0c64cd7307.
34049 * timezone/zdump.c: Likewise.
34050 * timezone/zic.c: Likewise.
34051 * timezone/Makefile ($(objpfx)version.h): Only include $(version)
34052 in TZVERSION setting, not $(PKGVERSION).
34053 ($(objpfx)tzselect): Likewise. Also substitute PKGVERSION and
34054 REPORT_BUGS_TO settings.
34055
8ca89318
JM
34056 [BZ #14838]
34057 * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
34058 macro.
34059
47594329
MS
340602012-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
34061
34062 * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
34063 detection to immediately after _FP_ROUND().
34064 * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
34065 bits are 0.
34066
640ac3f1
DM
340672012-11-11 David S. Miller <davem@davemloft.net>
34068
34069 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
34070 inttypes.h
34071 (__get_clockfreq_via_proc_openprom): Use __open, __read, and
34072 __close rather than their public counterparts.
34073
3d2577bb
JM
340742012-11-10 Joseph Myers <joseph@codesourcery.com>
34075
34076 * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
34077 file.
34078 [UNIX98] (sem_timedwait): Do not expect.
34079 * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
34080 [XPG4 || UNIX98] (sockatmark): Do not expect.
34081 * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
34082 (clock_getcpuclockid): Do not expect.
34083 [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
34084 * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
34085 Do not expect.
34086 [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
34087 * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
34088 [UNIX98] (vwscanf): Likewise.
34089 [UNIX98] (vswscanf): Likewise.
34090
fb1ae1ee
JM
340912012-11-09 Joseph Myers <joseph@codesourcery.com>
34092
9ec6f8bd
JM
34093 * timezone/version.h: Remove file.
34094 * timezone/README: Do not refer to version.h.
34095 * timezone/Makefile ($(objpfx)zic.o): New dependency on
34096 $(objpfx)version.h.
34097 ($(objpfx)zdump.o): Likewise.
c3f81911 34098 ($(objpfx)version.h): New target.
9ec6f8bd 34099
0aa8f8a1
JM
34100 * timezone/tzselect.ksh: Change to verbatim copy from tzcode
34101 2012i.
34102 * timezone/README: Don't mention modification to tzselect.ksh.
34103 * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
34104 work on unmodified tzselect.ksh. Substitute version numbers in
34105 tzselect.ksh.
34106
4e87147f
JM
34107 * Makefile (format-me): Remove.
34108 (INSTALL): Adjust indentation. Use commands directly instead of
34109 using $(format-me).
34110
8b748aed
JM
34111 * aclocal.m4 (ACX_PKGVERSION): New macro.
34112 (ACX_BUGURL): Likewise.
34113 * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
34114 (PKGVERSION): New AC_DEFINE_UNQUOTED.
34115 (REPORT_BUGS_TO): Likewise.
34116 * configure: Regenerated.
34117 * config.h.in (PKGVERSION): New macro.
34118 (REPORT_BUGS_TO): Likewise.
34119 * config.make.in (PKGVERSION): New variable.
34120 (PKGVERSION_TEXI): Likewise.
34121 (REPORT_BUGS_TO): Likewise.
34122 (REPORT_BUGS_TEXI): Likewise.
34123 * Makefile (format-me): Use -I$(common-objpfx)manual.
34124 (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
34125 ($(common-objpfx)manual/%): New target.
34126 (manual/%): Remove target.
34127 * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
34128 (print_version): Use PKGVERSION.
34129 * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
34130 * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
34131 and REPORT_BUGS_TO.
34132 ($(objpfx)xtrace): Likewise.
34133 * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
34134 * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
34135 (print_version): Use PKGVERSION.
34136 * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
34137 (do_version): Use PKGVERSION.
34138 * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
34139 REPORT_BUGS_TO.
34140 (common-ldd-rewrite): Likewise.
34141 * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
34142 * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
34143 (print_version): Use PKGVERSION.
34144 * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
34145 * elf/pldd.c (argp_program_bug_address): Remove variable.
34146 (more_help): New function.
34147 (argp): Use more_help.
34148 (print_version): Use PKGVERSION.
34149 * elf/sln.c (main): Use PKGVERSION.
34150 (usage): Use REPORT_BUGS_TO.
34151 * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
34152 (top level): Use PKGVERSION.
34153 * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
34154 (print_version): Use PKGVERSION.
34155 * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
34156 (print_version): Use PKGVERSION.
34157 * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
34158 (print_version): Use PKGVERSION.
34159 * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
34160 (print_version): Use PKGVERSION.
34161 * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
34162 (print_version): Use PKGVERSION.
34163 * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
34164 (print_version): Use PKGVERSION.
34165 * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
34166 and BUGURL.
34167 ($(objpfx)memusage): Likewise.
34168 * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
34169 (do_version): Use PKGVERSION.
34170 * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
34171 (print_version): Use PKGVERSION.
34172 * malloc/mtrace.pl ($PACKAGE): Remove variable.
34173 ($PKGVERSION): New variable.
34174 ($REPORT_BUGS_TO): Likewise.
34175 (usage): Use $REPORT_BUGS_TO.
34176 (top level): Use $PKGVERSION.
34177 * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
34178 ($(objpfx)pkgvers.texi): New rule.
34179 ($(objpfx)stamp-pkgvers): Likewise.
34180 * manual/install.texi: Include pkgvers.texi.
34181 (--with-pkgversion): Document new configure option.
34182 (--with-bugurl): Likewise.
34183 (Reporting Bugs): Describe Bugzilla as upstream tracker rather
34184 than necessarily for this particular distribution. Use
34185 REPORT_BUGS_TO for where to report bugs.
34186 * INSTALL: Regenerated.
34187 * manual/libc.texinfo: Include pkgvers.texi.
34188 [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
34189 * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
34190 (print_version): Use PKGVERSION.
34191 * nss/getent.c (more_help): Use REPORT_BUGS_TO.
34192 (print_version): Use PKGVERSION.
34193 * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
34194 (print_version): Use PKGVERSION.
34195 * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
34196 * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
34197 macro.
34198 * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
34199 (print_version): Use PKGVERSION.
34200 * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
34201 (print_version): Use PKGVERSION.
34202 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
34203 and PKGVERSION.
34204
92e4b6a9
JM
34205 * timezone/checktab.awk: Update from tzcode 2012i.
34206 * timezone/ialloc.c: Likewise.
34207 * timezone/private.h: Likewise.
34208 * timezone/scheck.c: Likewise.
34209 * timezone/tzfile.h: Likewise.
34210 * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
34211 (TZVERSION): Hardcode tzcode version number.
34212 * timezone/zdump.c: Update from tzcode 2012i.
34213 * timezone/zic.c: Likewise.
34214 * timezone/version.h: New file.
34215 * timezone/README: Describe version.h. Update upstream location.
34216
9bde902c
JM
34217 [BZ #14824]
34218 * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
34219 (mktemp): Enable declaration.
34220 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
34221 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
34222 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
34223 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
34224 Likewise.
34225 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
34226 Likewise.
34227 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
34228 Likewise.
34229 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
34230 Likewise.
34231 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
34232 Likewise.
34233 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
34234 Likewise.
34235
fb1ae1ee
JM
34236 [BZ #14821]
34237 * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
34238 offset in buffer as u_int32_t not u_long. Consistently use memcpy
34239 for copies of such integer values.
34240 * sunrpc/clnt_udp.c (clntudp_control): Likewise.
34241 * sunrpc/clnt_unix.c (clntunix_control): Likewise.
34242
2c1adbcb
AJ
342432012-11-09 Andreas Jaeger <aj@suse.de>
34244
34245 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
34246 definitions and declarations that are provided by
34247 <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
34248
d0f8457e
AK
342492012-11-08 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
34250
3a235abb 34251 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
d0f8457e
AK
34252 * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
34253 * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
34254 definition.
34255
57241e26
MS
342562012-11-08 Marcus Shawcroft <marcus.shawcroft@linaro.org>
34257
34258 * elf/elf.h: Update comment before AArch64 relocations.
34259
60e8270d
DM
342602012-11-07 David S. Miller <davem@davemloft.net>
34261
34262 * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
34263 * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
34264 (__start_context): Declare.
34265 (__makecontext_ret): Delete.
34266 (__makecontext): Hook up __start_context instead of
34267 __makecontext_ret.
34268 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
34269 (sysdep_routines): Add __start_context when in stdlib.
34270
0fbb0fbc
JM
342712012-11-07 Joseph Myers <joseph@codesourcery.com>
34272
34273 * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
34274 $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
34275 * sysdeps/x86/tst-xmmymm.sh (NM): New variable. Use it instead of
34276 hardcoded "nm".
34277 (OBJDUMP): New variable. Use it instead of hardcoded "objdump".
34278 (READELF): New variable. Use it instead of hardcoded "readelf".
34279
eb48db7e
L
342802012-11-07 H.J. Lu <hongjiu.lu@intel.com>
34281
34282 * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
34283 * sysdeps/x86/Makefile: Here.
34284 * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
34285 * sysdeps/x86/tst-xmmymm.sh: This.
34286
05bcf62a
JM
342872012-11-07 Joseph Myers <joseph@codesourcery.com>
34288
c4b6cf53
JM
34289 * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
34290 expectations.
34291 [UNIX98] (pthread_barrier_t): Do not expect.
34292 [UNIX98] (pthread_barrierattr_t): Likewise.
34293 [UNIX98] (pthread_spinlock_t): Likewise.
34294 [UNIX98] (pthread_barrier_destroy): Likewise.
34295 [UNIX98] (pthread_barrier_init): Likewise.
34296 [UNIX98] (pthread_barrier_wait): Likewise.
34297 [UNIX98] (pthread_barrierattr_destroy): Likewise.
34298 [UNIX98] (pthread_barrierattr_getpshared): Likewise.
34299 [UNIX98] (pthread_barrierattr_init): Likewise.
34300 [UNIX98] (pthread_barrierattr_setpshared): Likewise.
34301 [UNIX98] (pthread_getcpuclockid): Likewise.
34302 [UNIX98] (pthread_mutex_timedlock): Likewise.
34303 [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
34304 [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
34305 [UNIX98] (pthread_sigmask): Likewise.
34306 [UNIX98] (pthread_spin_destroy): Likewise.
34307 [UNIX98] (pthread_spin_init): Likewise.
34308 [UNIX98] (pthread_spin_lock): Likewise.
34309 [UNIX98] (pthread_spin_trylock): Likewise.
34310 [UNIX98] (pthread_spin_unlock): Likewise.
34311 * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
34312 Do not expect.
34313 [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
34314 [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
34315 [XPG3 || XPG4] (pthread_cond_t): Likewise.
34316 [XPG3 || XPG4] (pthread_condattr_t): Likewise.
34317 [XPG3 || XPG4] (pthread_key_t): Likewise.
34318 [XPG3 || XPG4] (pthread_mutex_t): Likewise.
34319 [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
34320 [XPG3 || XPG4] (pthread_once_t): Likewise.
34321 [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
34322 [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
34323 [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
34324 [XPG3 || XPG4] (pthread_t): Likewise.
34325
cbe6e120
JM
34326 * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
34327 not expect.
34328 [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
34329
1b126443
JM
34330 * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
34331 Change function return type to int.
34332
b961a573
JM
34333 * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
34334 Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
34335 [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
34336 [!POSIX] (POSIX_MADV_RANDOM): Likewise.
34337 [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
34338 [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
34339 [!POSIX] (posix_madvise): Likewise.
34340 (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
34341 && !UNIX98].
34342 (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
34343 (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
34344 (mode_t): Likewise.
34345 (posix_mem_offset): Likewise.
34346 (posix_typed_mem_get_info): Likewise.
34347 (posix_typed_mem_open): Likewise.
34348
9e188909
JM
34349 * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
34350 Change condition to [XOPEN2K8].
34351
05bcf62a
JM
34352 * conform/conformtest.pl: Preprocess allow-header data with -x c
34353 instead of from stdin.
34354 (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
34355 * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
34356 [C99-based standards] (cerfc): Likewise.
34357 [C99-based standards] (cexp2): Likewise.
34358 [C99-based standards] (cexpm1): Likewise.
34359 [C99-based standards] (clog10): Likewise.
34360 [C99-based standards] (clog1p): Likewise.
34361 [C99-based standards] (clog2): Likewise.
34362 [C99-based standards] (clgamma): Likewise.
34363 [C99-based standards] (ctgamma): Likewise.
34364 [C99-based standards] (cerff): Likewise.
34365 [C99-based standards] (cerfcf): Likewise.
34366 [C99-based standards] (cexp2f): Likewise.
34367 [C99-based standards] (cexpm1f): Likewise.
34368 [C99-based standards] (clog10f): Likewise.
34369 [C99-based standards] (clog1pf): Likewise.
34370 [C99-based standards] (clog2f): Likewise.
34371 [C99-based standards] (clgammaf): Likewise.
34372 [C99-based standards] (ctgammaf): Likewise.
34373 [C99-based standards] (cerfl): Likewise.
34374 [C99-based standards] (cerfcl): Likewise.
34375 [C99-based standards] (cexp2l): Likewise.
34376 [C99-based standards] (cexpm1l): Likewise.
34377 [C99-based standards] (clog10l): Likewise.
34378 [C99-based standards] (clog1pl): Likewise.
34379 [C99-based standards] (clog2l): Likewise.
34380 [C99-based standards] (clgammal): Likewise.
34381 [C99-based standards] (ctgammal): Likewise.
34382 * conform/data/inttypes.h-data [C99-based standards]: Include
34383 stdint.h-data. Remove all expectations for stdint.h contents.
34384 [C99-based standards] (PRI*): Do not allow.
34385 [C99-based standards] (SCN*): Likewise.
34386 [C99-based standards] (*_t): Likewise.
34387 [C99-based-standards] (PRId8): Expect macro.
34388 [C99-based-standards] (PRIi8): Likewise.
34389 [C99-based-standards] (PRIo8): Likewise.
34390 [C99-based-standards] (PRIu8): Likewise.
34391 [C99-based-standards] (PRIx8): Likewise.
34392 [C99-based-standards] (PRIX8): Likewise.
34393 [C99-based-standards] (SCNd8): Likewise.
34394 [C99-based-standards] (SCNi8): Likewise.
34395 [C99-based-standards] (SCNo8): Likewise.
34396 [C99-based-standards] (SCNu8): Likewise.
34397 [C99-based-standards] (SCNx8): Likewise.
34398 [C99-based-standards] (PRIdLEAST8): Likewise.
34399 [C99-based-standards] (PRIiLEAST8): Likewise.
34400 [C99-based-standards] (PRIoLEAST8): Likewise.
34401 [C99-based-standards] (PRIuLEAST8): Likewise.
34402 [C99-based-standards] (PRIxLEAST8): Likewise.
34403 [C99-based-standards] (PRIXLEAST8): Likewise.
34404 [C99-based-standards] (SCNdLEAST8): Likewise.
34405 [C99-based-standards] (SCNiLEAST8): Likewise.
34406 [C99-based-standards] (SCNoLEAST8): Likewise.
34407 [C99-based-standards] (SCNuLEAST8): Likewise.
34408 [C99-based-standards] (SCNxLEAST8): Likewise.
34409 [C99-based-standards] (PRIdFAST8): Likewise.
34410 [C99-based-standards] (PRIiFAST8): Likewise.
34411 [C99-based-standards] (PRIoFAST8): Likewise.
34412 [C99-based-standards] (PRIuFAST8): Likewise.
34413 [C99-based-standards] (PRIxFAST8): Likewise.
34414 [C99-based-standards] (PRIXFAST8): Likewise.
34415 [C99-based-standards] (SCNdFAST8): Likewise.
34416 [C99-based-standards] (SCNiFAST8): Likewise.
34417 [C99-based-standards] (SCNoFAST8): Likewise.
34418 [C99-based-standards] (SCNuFAST8): Likewise.
34419 [C99-based-standards] (SCNxFAST8): Likewise.
34420 [C99-based-standards] (PRId16): Likewise.
34421 [C99-based-standards] (PRIi16): Likewise.
34422 [C99-based-standards] (PRIo16): Likewise.
34423 [C99-based-standards] (PRIu16): Likewise.
34424 [C99-based-standards] (PRIx16): Likewise.
34425 [C99-based-standards] (PRIX16): Likewise.
34426 [C99-based-standards] (SCNd16): Likewise.
34427 [C99-based-standards] (SCNi16): Likewise.
34428 [C99-based-standards] (SCNo16): Likewise.
34429 [C99-based-standards] (SCNu16): Likewise.
34430 [C99-based-standards] (SCNx16): Likewise.
34431 [C99-based-standards] (PRIdLEAST16): Likewise.
34432 [C99-based-standards] (PRIiLEAST16): Likewise.
34433 [C99-based-standards] (PRIoLEAST16): Likewise.
34434 [C99-based-standards] (PRIuLEAST16): Likewise.
34435 [C99-based-standards] (PRIxLEAST16): Likewise.
34436 [C99-based-standards] (PRIXLEAST16): Likewise.
34437 [C99-based-standards] (SCNdLEAST16): Likewise.
34438 [C99-based-standards] (SCNiLEAST16): Likewise.
34439 [C99-based-standards] (SCNoLEAST16): Likewise.
34440 [C99-based-standards] (SCNuLEAST16): Likewise.
34441 [C99-based-standards] (SCNxLEAST16): Likewise.
34442 [C99-based-standards] (PRIdFAST16): Likewise.
34443 [C99-based-standards] (PRIiFAST16): Likewise.
34444 [C99-based-standards] (PRIoFAST16): Likewise.
34445 [C99-based-standards] (PRIuFAST16): Likewise.
34446 [C99-based-standards] (PRIxFAST16): Likewise.
34447 [C99-based-standards] (PRIXFAST16): Likewise.
34448 [C99-based-standards] (SCNdFAST16): Likewise.
34449 [C99-based-standards] (SCNiFAST16): Likewise.
34450 [C99-based-standards] (SCNoFAST16): Likewise.
34451 [C99-based-standards] (SCNuFAST16): Likewise.
34452 [C99-based-standards] (SCNxFAST16): Likewise.
34453 [C99-based-standards] (PRId32): Likewise.
34454 [C99-based-standards] (PRIi32): Likewise.
34455 [C99-based-standards] (PRIo32): Likewise.
34456 [C99-based-standards] (PRIu32): Likewise.
34457 [C99-based-standards] (PRIx32): Likewise.
34458 [C99-based-standards] (PRIX32): Likewise.
34459 [C99-based-standards] (SCNd32): Likewise.
34460 [C99-based-standards] (SCNi32): Likewise.
34461 [C99-based-standards] (SCNo32): Likewise.
34462 [C99-based-standards] (SCNu32): Likewise.
34463 [C99-based-standards] (SCNx32): Likewise.
34464 [C99-based-standards] (PRIdLEAST32): Likewise.
34465 [C99-based-standards] (PRIiLEAST32): Likewise.
34466 [C99-based-standards] (PRIoLEAST32): Likewise.
34467 [C99-based-standards] (PRIuLEAST32): Likewise.
34468 [C99-based-standards] (PRIxLEAST32): Likewise.
34469 [C99-based-standards] (PRIXLEAST32): Likewise.
34470 [C99-based-standards] (SCNdLEAST32): Likewise.
34471 [C99-based-standards] (SCNiLEAST32): Likewise.
34472 [C99-based-standards] (SCNoLEAST32): Likewise.
34473 [C99-based-standards] (SCNuLEAST32): Likewise.
34474 [C99-based-standards] (SCNxLEAST32): Likewise.
34475 [C99-based-standards] (PRIdFAST32): Likewise.
34476 [C99-based-standards] (PRIiFAST32): Likewise.
34477 [C99-based-standards] (PRIoFAST32): Likewise.
34478 [C99-based-standards] (PRIuFAST32): Likewise.
34479 [C99-based-standards] (PRIxFAST32): Likewise.
34480 [C99-based-standards] (PRIXFAST32): Likewise.
34481 [C99-based-standards] (SCNdFAST32): Likewise.
34482 [C99-based-standards] (SCNiFAST32): Likewise.
34483 [C99-based-standards] (SCNoFAST32): Likewise.
34484 [C99-based-standards] (SCNuFAST32): Likewise.
34485 [C99-based-standards] (SCNxFAST32): Likewise.
34486 [C99-based-standards] (PRId64): Likewise.
34487 [C99-based-standards] (PRIi64): Likewise.
34488 [C99-based-standards] (PRIo64): Likewise.
34489 [C99-based-standards] (PRIu64): Likewise.
34490 [C99-based-standards] (PRIx64): Likewise.
34491 [C99-based-standards] (PRIX64): Likewise.
34492 [C99-based-standards] (SCNd64): Likewise.
34493 [C99-based-standards] (SCNi64): Likewise.
34494 [C99-based-standards] (SCNo64): Likewise.
34495 [C99-based-standards] (SCNu64): Likewise.
34496 [C99-based-standards] (SCNx64): Likewise.
34497 [C99-based-standards] (PRIdLEAST64): Likewise.
34498 [C99-based-standards] (PRIiLEAST64): Likewise.
34499 [C99-based-standards] (PRIoLEAST64): Likewise.
34500 [C99-based-standards] (PRIuLEAST64): Likewise.
34501 [C99-based-standards] (PRIxLEAST64): Likewise.
34502 [C99-based-standards] (PRIXLEAST64): Likewise.
34503 [C99-based-standards] (SCNdLEAST64): Likewise.
34504 [C99-based-standards] (SCNiLEAST64): Likewise.
34505 [C99-based-standards] (SCNoLEAST64): Likewise.
34506 [C99-based-standards] (SCNuLEAST64): Likewise.
34507 [C99-based-standards] (SCNxLEAST64): Likewise.
34508 [C99-based-standards] (PRIdFAST64): Likewise.
34509 [C99-based-standards] (PRIiFAST64): Likewise.
34510 [C99-based-standards] (PRIoFAST64): Likewise.
34511 [C99-based-standards] (PRIuFAST64): Likewise.
34512 [C99-based-standards] (PRIxFAST64): Likewise.
34513 [C99-based-standards] (PRIXFAST64): Likewise.
34514 [C99-based-standards] (SCNdFAST64): Likewise.
34515 [C99-based-standards] (SCNiFAST64): Likewise.
34516 [C99-based-standards] (SCNoFAST64): Likewise.
34517 [C99-based-standards] (SCNuFAST64): Likewise.
34518 [C99-based-standards] (SCNxFAST64): Likewise.
34519 [C99-based-standards] (PRIdMAX): Likewise.
34520 [C99-based-standards] (PRIiMAX): Likewise.
34521 [C99-based-standards] (PRIoMAX): Likewise.
34522 [C99-based-standards] (PRIuMAX): Likewise.
34523 [C99-based-standards] (PRIxMAX): Likewise.
34524 [C99-based-standards] (PRIXMAX): Likewise.
34525 [C99-based-standards] (SCNdMAX): Likewise.
34526 [C99-based-standards] (SCNiMAX): Likewise.
34527 [C99-based-standards] (SCNoMAX): Likewise.
34528 [C99-based-standards] (SCNuMAX): Likewise.
34529 [C99-based-standards] (SCNxMAX): Likewise.
34530 [C99-based-standards] (PRIdPTR): Likewise.
34531 [C99-based-standards] (PRIiPTR): Likewise.
34532 [C99-based-standards] (PRIoPTR): Likewise.
34533 [C99-based-standards] (PRIuPTR): Likewise.
34534 [C99-based-standards] (PRIxPTR): Likewise.
34535 [C99-based-standards] (PRIXPTR): Likewise.
34536 [C99-based-standards] (SCNdPTR): Likewise.
34537 [C99-based-standards] (SCNiPTR): Likewise.
34538 [C99-based-standards] (SCNoPTR): Likewise.
34539 [C99-based-standards] (SCNuPTR): Likewise.
34540 [C99-based-standards] (SCNxPTR): Likewise.
34541 * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
34542 allow.
34543 * conform/data/stdint.h-data: Update comments to clarify
34544 requirements.
34545 [C99-based standards] (INT8_MIN): Use macro-int-constant. Specify
34546 type.
34547 [C99-based standards] (INT8_MAX): Likewise.
34548 [C99-based standards] (INT16_MIN): Likewise.
34549 [C99-based standards] (INT16_MAX): Likewise.
34550 [C99-based standards] (INT32_MIN): Likewise.
34551 [C99-based standards] (INT32_MAX): Likewise.
34552 [C99-based standards] (INT64_MIN): Likewise.
34553 [C99-based standards] (INT64_MAX): Likewise.
34554 [C99-based standards] (UINT8_MAX): Likewise.
34555 [C99-based standards] (UINT16_MAX): Likewise.
34556 [C99-based standards] (UINT32_MAX): Likewise.
34557 [C99-based standards] (UINT64_MAX): Likewise.
34558 [C99-based standards] (INT_LEAST8_MIN): Likewise.
34559 [C99-based standards] (INT_LEAST8_MAX): Likewise.
34560 [C99-based standards] (INT_LEAST16_MIN): Likewise.
34561 [C99-based standards] (INT_LEAST16_MAX): Likewise.
34562 [C99-based standards] (INT_LEAST32_MIN): Likewise.
34563 [C99-based standards] (INT_LEAST32_MAX): Likewise.
34564 [C99-based standards] (INT_LEAST64_MIN): Likewise.
34565 [C99-based standards] (INT_LEAST64_MAX): Likewise.
34566 [C99-based standards] (UINT_LEAST8_MAX): Likewise.
34567 [C99-based standards] (UINT_LEAST16_MAX): Likewise.
34568 [C99-based standards] (UINT_LEAST32_MAX): Likewise.
34569 [C99-based standards] (UINT_LEAST64_MAX): Likewise.
34570 [C99-based standards] (INT_FAST8_MIN): Likewise.
34571 [C99-based standards] (INT_FAST8_MAX): Likewise.
34572 [C99-based standards] (INT_FAST16_MIN): Likewise.
34573 [C99-based standards] (INT_FAST16_MAX): Likewise.
34574 [C99-based standards] (INT_FAST32_MIN): Likewise.
34575 [C99-based standards] (INT_FAST32_MAX): Likewise.
34576 [C99-based standards] (INT_FAST64_MIN): Likewise.
34577 [C99-based standards] (INT_FAST64_MAX): Likewise.
34578 [C99-based standards] (UINT_FAST8_MAX): Likewise.
34579 [C99-based standards] (UINT_FAST16_MAX): Likewise.
34580 [C99-based standards] (UINT_FAST32_MAX): Likewise.
34581 [C99-based standards] (UINT_FAST64_MAX): Likewise.
34582 [C99-based standards] (INTPTR_MIN): Likewise.
34583 [C99-based standards] (INTPTR_MAX): Likewise.
34584 [C99-based standards] (UINTPTR_MAX): Likewise.
34585 [C99-based standards] (INTMAX_MIN): Likewise.
34586 [C99-based standards] (INTMAX_MAX): Likewise.
34587 [C99-based standards] (UINTMAX_MAX): Likewise.
34588 [C99-based standards] (PTRDIFF_MIN): Likewise.
34589 [C99-based standards] (PTRDIFF_MAX): Likewise.
34590 [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
34591 [C99-based standards] (SIZE_MAX): Likewise.
34592 [C99-based standards] (WCHAR_MAX): Likewise.
34593 [C99-based standards] (WINT_MAX): Likewise.
34594 [C99-based standards] (SIG_ATOMIC_MIN): Likewise. Do not specify
34595 constraint on value.
34596 [C99-based standards] (WCHAR_MIN): Likewise.
34597 [C99-based standards] (WINT_MIN): Likewise.
34598 [C99-based standards] (*_t): Allow.
34599 * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
34600 condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
34601 Include math.h-data and complex.h-data. Remove all expectations
34602 of math.h and complex.h contents.
34603 * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
34604 at end of line.
34605 * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
34606 (struct tm): Expect tag.
34607 [C99-based-standards] (wcstof): Expect function.
34608 [C99-based-standards] (wcstold): Likewise.
34609 [C99-based-standards] (wcstoll): Likewise.
34610 [C99-based-standards] (wcstoull): Likewise.
34611 [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
34612 macro-int-constant. Specify type.
34613 [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise. Specify
34614 constraint on value.
34615 [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
34616 Specify type.
34617 [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
34618 Specify value.
34619 [ISO C standards]: Do not allow headers.
34620 [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
34621 wcs[abcdefghijklmnopqrstuvwxyz]*.
34622 [ISO C standards] (*_t): Do not allow.
34623 * conform/data/wctype.h-data [C99-based standards] (iswblank):
34624 Expect function.
34625 [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
34626 [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
34627 Specify type.
34628 [ISO C standards]: Do not allow headers.
34629 [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
34630 is[abcdefghijklmnopqrstuvwxyz]*.
34631 [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
34632 to[abcdefghijklmnopqrstuvwxyz]*.
34633 [ISO C standards] (*_t): Do not allow.
34634 * conform/data/stdalign.h-data: New file.
34635 * conform/data/stdbool.h-data: Likewise.
34636 * conform/data/stdnoreturn.h-data: Likewise.
34637
7514feb8
RM
346382012-11-07 Roland McGrath <roland@hack.frob.com>
34639
34640 [BZ #14815]
34641 * manual/filesys.texi (Directory Entries): Typo fix.
34642 Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
34643
19b2ecfc
MS
346442012-11-07 Marcus Shawcroft <marcus.shawcroft@linaro.org>
34645
34646 * elf/elf.h (EM_AARCH64): New macro.
34647 (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
34648 (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
34649 (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
34650 (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
34651 (R_AARCH64_TLSDESC): Likewise.
34652 (NT_ARM_TLS): Likewise.
34653 (NT_ARM_HW_BREAK): Likewise.
34654 (NT_ARM_HW_WATCH): Likewise.
34655
60e235ee
JM
346562012-11-07 Joseph Myers <joseph@codesourcery.com>
34657
34658 [BZ #14811]
34659 * sysdeps/i386/fpu/e_powl.S (pm79): New object.
34660 (__ieee754_powl): Saturate nonzero exponents with absolute value
34661 below 0x1p-79 to +/- 0x1p-79.
34662 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
34663 exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
34664 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
34665 nonzero exponents with absolute value below 0x1p-32 to +/-
34666 0x1p-32.
34667 * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
34668 (__ieee754_powl): Saturate nonzero exponents with absolute value
34669 below 0x1p-79 to +/- 0x1p-79.
34670 * math/libm-test.inc (pow_test): Add more tests.
34671
0ab234b7
AK
346722012-11-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
34673
34674 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
34675 _dl_s390_cap_flags with kernel. Increase string length.
34676 (_dl_s390_platforms): Add z196 and zEC12.
34677
45832f74
JM
346782012-11-07 Joseph Myers <joseph@codesourcery.com>
34679
34680 * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
34681 Change XOPEN21K to XOPEN2K.
34682
19218757
MK
346832012-11-06 Maxim Kuvyrkov <maxim@codesourcery.com>
34684
34685 * string/memmove.c: Use memcpy when possible.
34686
c5f45721
AJ
346872012-11-06 Andreas Jaeger <aj@suse.de>
34688
34689 * po/eo.po: Update from translation team.
34690
82477c28
JM
346912012-11-06 Joseph Myers <joseph@codesourcery.com>
34692
34693 [BZ #14793]
34694 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
34695 exponent and small x and y exponents, scale x or y up. Increase
34696 by 2 the exponent used in scaling up.
34697 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34698 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34699 * math/libm-test.inc (fma_test): Add more tests.
34700 (fma_test_towardzero): Likewise.
34701 (fma_test_downward): Likewise.
34702 (fma_test_upward): Likewise.
34703
99252c8c
JM
347042012-11-05 Joseph Myers <joseph@codesourcery.com>
34705
acfa885f
JM
34706 [BZ #14805]
34707 * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
34708 fenv_t *.
34709
99252c8c
JM
34710 [BZ #14801]
34711 * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
34712 namespace for names of struct fields.
34713 * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
34714 fenv_t fields.
34715 * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
34716 * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
34717
d6d98dea
ST
347182012-11-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
34719
34720 [BZ #3665]
34721 * sysdeps/mach/hurd/bits/errno.h: Regenerated.
34722
e10bb107
TS
347232012-11-04 Thomas Schwinge <thomas@codesourcery.com>
34724
34725 * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
34726 PTR_DEMANGLE.
34727
34728 [BZ #5246]
34729 * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
34730 PTR_DEMANGLE.
34731
a0c2940d
JM
347322012-11-04 Joseph Myers <joseph@codesourcery.com>
34733
34734 [BZ #14797]
34735 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
34736 definitely overflow as x * y not x * y + z.
34737 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34738 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34739 * math/libm-test.inc (fma_test): Add more tests.
34740 (fma_test_towardzero): Likewise.
34741 (fma_test_downward): Likewise.
34742 (fma_test_upward): Likewise.
34743
b830319d
TS
347442012-11-04 Thomas Schwinge <thomas@codesourcery.com>
34745
34746 [BZ #157]
34747
34748 * include/stub-tag.h: Remove file.
34749 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
34750 '#include' of it.
34751 * manual/maint.texi (Porting): Don't reference it.
34752 * Makerules ($(objpfx)stubs): Likewise.
34753 * dirent/closedir.c: Don't include <stub-tag.h>.
34754 * dirent/dirfd.c: Likewise.
34755 * dirent/fdopendir.c: Likewise.
34756 * dirent/getdents.c: Likewise.
34757 * dirent/getdents64.c: Likewise.
34758 * dirent/opendir.c: Likewise.
34759 * dirent/readdir.c: Likewise.
34760 * dirent/readdir64.c: Likewise.
34761 * dirent/readdir64_r.c: Likewise.
34762 * dirent/readdir_r.c: Likewise.
34763 * dirent/rewinddir.c: Likewise.
34764 * dirent/seekdir.c: Likewise.
34765 * dirent/telldir.c: Likewise.
34766 * gmon/profil.c: Likewise.
34767 * grp/setgroups.c: Likewise.
34768 * inet/if_index.c: Likewise.
34769 * io/access.c: Likewise.
34770 * io/chdir.c: Likewise.
34771 * io/chmod.c: Likewise.
34772 * io/chown.c: Likewise.
34773 * io/close.c: Likewise.
34774 * io/dup.c: Likewise.
34775 * io/dup2.c: Likewise.
34776 * io/dup3.c: Likewise.
34777 * io/euidaccess.c: Likewise.
34778 * io/faccessat.c: Likewise.
34779 * io/fchdir.c: Likewise.
34780 * io/fchmod.c: Likewise.
34781 * io/fchmodat.c: Likewise.
34782 * io/fchown.c: Likewise.
34783 * io/fchownat.c: Likewise.
34784 * io/fcntl.c: Likewise.
34785 * io/flock.c: Likewise.
34786 * io/fstatfs.c: Likewise.
34787 * io/fstatfs64.c: Likewise.
34788 * io/fstatvfs.c: Likewise.
34789 * io/fstatvfs64.c: Likewise.
34790 * io/futimens.c: Likewise.
34791 * io/fxstat.c: Likewise.
34792 * io/fxstat64.c: Likewise.
34793 * io/fxstatat.c: Likewise.
34794 * io/fxstatat64.c: Likewise.
34795 * io/getcwd.c: Likewise.
34796 * io/isatty.c: Likewise.
34797 * io/lchmod.c: Likewise.
34798 * io/lchown.c: Likewise.
34799 * io/link.c: Likewise.
34800 * io/linkat.c: Likewise.
34801 * io/lseek.c: Likewise.
34802 * io/lseek64.c: Likewise.
34803 * io/lxstat64.c: Likewise.
34804 * io/mkdir.c: Likewise.
34805 * io/mkdirat.c: Likewise.
34806 * io/mkfifo.c: Likewise.
34807 * io/mkfifoat.c: Likewise.
34808 * io/open.c: Likewise.
34809 * io/open64.c: Likewise.
34810 * io/openat.c: Likewise.
34811 * io/openat64.c: Likewise.
34812 * io/pipe.c: Likewise.
34813 * io/pipe2.c: Likewise.
34814 * io/poll.c: Likewise.
34815 * io/posix_fadvise.c: Likewise.
34816 * io/posix_fadvise64.c: Likewise.
34817 * io/posix_fallocate.c: Likewise.
34818 * io/posix_fallocate64.c: Likewise.
34819 * io/read.c: Likewise.
34820 * io/readlink.c: Likewise.
34821 * io/readlinkat.c: Likewise.
34822 * io/rmdir.c: Likewise.
34823 * io/sendfile.c: Likewise.
34824 * io/sendfile64.c: Likewise.
34825 * io/statfs.c: Likewise.
34826 * io/statfs64.c: Likewise.
34827 * io/statvfs.c: Likewise.
34828 * io/statvfs64.c: Likewise.
34829 * io/symlink.c: Likewise.
34830 * io/symlinkat.c: Likewise.
34831 * io/ttyname.c: Likewise.
34832 * io/ttyname_r.c: Likewise.
34833 * io/umask.c: Likewise.
34834 * io/unlink.c: Likewise.
34835 * io/unlinkat.c: Likewise.
34836 * io/utime.c: Likewise.
34837 * io/utimensat.c: Likewise.
34838 * io/write.c: Likewise.
34839 * io/xmknod.c: Likewise.
34840 * io/xmknodat.c: Likewise.
34841 * io/xstat.c: Likewise.
34842 * io/xstat64.c: Likewise.
34843 * login/getpt.c: Likewise.
34844 * login/grantpt.c: Likewise.
34845 * login/unlockpt.c: Likewise.
34846 * math/e_acoshl.c: Likewise.
34847 * math/e_acosl.c: Likewise.
34848 * math/e_asinl.c: Likewise.
34849 * math/e_atan2l.c: Likewise.
34850 * math/e_atanhl.c: Likewise.
34851 * math/e_coshl.c: Likewise.
34852 * math/e_expl.c: Likewise.
34853 * math/e_fmodl.c: Likewise.
34854 * math/e_gammal_r.c: Likewise.
34855 * math/e_hypotl.c: Likewise.
34856 * math/e_j0l.c: Likewise.
34857 * math/e_j1l.c: Likewise.
34858 * math/e_jnl.c: Likewise.
34859 * math/e_lgammal_r.c: Likewise.
34860 * math/e_log10l.c: Likewise.
34861 * math/e_log2l.c: Likewise.
34862 * math/e_logl.c: Likewise.
34863 * math/e_powl.c: Likewise.
34864 * math/e_rem_pio2l.c: Likewise.
34865 * math/e_sinhl.c: Likewise.
34866 * math/e_sqrtl.c: Likewise.
34867 * math/fclrexcpt.c: Likewise.
34868 * math/fedisblxcpt.c: Likewise.
34869 * math/feenablxcpt.c: Likewise.
34870 * math/fegetenv.c: Likewise.
34871 * math/fegetexcept.c: Likewise.
34872 * math/fegetround.c: Likewise.
34873 * math/feholdexcpt.c: Likewise.
34874 * math/fesetenv.c: Likewise.
34875 * math/fesetround.c: Likewise.
34876 * math/feupdateenv.c: Likewise.
34877 * math/fgetexcptflg.c: Likewise.
34878 * math/fraiseexcpt.c: Likewise.
34879 * math/fsetexcptflg.c: Likewise.
34880 * math/ftestexcept.c: Likewise.
34881 * math/k_cosl.c: Likewise.
34882 * math/k_rem_pio2l.c: Likewise.
34883 * math/k_sinl.c: Likewise.
34884 * math/k_tanl.c: Likewise.
34885 * math/s_asinhl.c: Likewise.
34886 * math/s_atanl.c: Likewise.
34887 * math/s_cbrtl.c: Likewise.
34888 * math/s_erfl.c: Likewise.
34889 * math/s_expm1l.c: Likewise.
34890 * math/s_log1pl.c: Likewise.
34891 * math/s_tanhl.c: Likewise.
34892 * misc/acct.c: Likewise.
34893 * misc/brk.c: Likewise.
34894 * misc/chflags.c: Likewise.
34895 * misc/chroot.c: Likewise.
34896 * misc/fchflags.c: Likewise.
34897 * misc/fgetxattr.c: Likewise.
34898 * misc/flistxattr.c: Likewise.
34899 * misc/fremovexattr.c: Likewise.
34900 * misc/fsetxattr.c: Likewise.
34901 * misc/fsync.c: Likewise.
34902 * misc/ftruncate.c: Likewise.
34903 * misc/futimes.c: Likewise.
34904 * misc/futimesat.c: Likewise.
34905 * misc/getdomain.c: Likewise.
34906 * misc/getdtsz.c: Likewise.
34907 * misc/gethostid.c: Likewise.
34908 * misc/gethostname.c: Likewise.
34909 * misc/getloadavg.c: Likewise.
34910 * misc/getpagesize.c: Likewise.
34911 * misc/getsysstats.c: Likewise.
34912 * misc/getxattr.c: Likewise.
34913 * misc/gtty.c: Likewise.
34914 * misc/ioctl.c: Likewise.
34915 * misc/lgetxattr.c: Likewise.
34916 * misc/listxattr.c: Likewise.
34917 * misc/llistxattr.c: Likewise.
34918 * misc/lremovexattr.c: Likewise.
34919 * misc/lsetxattr.c: Likewise.
34920 * misc/lutimes.c: Likewise.
34921 * misc/madvise.c: Likewise.
34922 * misc/mincore.c: Likewise.
34923 * misc/mlock.c: Likewise.
34924 * misc/mlockall.c: Likewise.
34925 * misc/mmap.c: Likewise.
34926 * misc/mprotect.c: Likewise.
34927 * misc/msync.c: Likewise.
34928 * misc/munlock.c: Likewise.
34929 * misc/munlockall.c: Likewise.
34930 * misc/munmap.c: Likewise.
34931 * misc/preadv.c: Likewise.
34932 * misc/preadv64.c: Likewise.
34933 * misc/ptrace.c: Likewise.
34934 * misc/pwritev.c: Likewise.
34935 * misc/pwritev64.c: Likewise.
34936 * misc/readv.c: Likewise.
34937 * misc/reboot.c: Likewise.
34938 * misc/remap_file_pages.c: Likewise.
34939 * misc/removexattr.c: Likewise.
34940 * misc/revoke.c: Likewise.
34941 * misc/select.c: Likewise.
34942 * misc/setdomain.c: Likewise.
34943 * misc/setegid.c: Likewise.
34944 * misc/seteuid.c: Likewise.
34945 * misc/sethostid.c: Likewise.
34946 * misc/sethostname.c: Likewise.
34947 * misc/setregid.c: Likewise.
34948 * misc/setreuid.c: Likewise.
34949 * misc/setxattr.c: Likewise.
34950 * misc/sstk.c: Likewise.
34951 * misc/stty.c: Likewise.
34952 * misc/swapoff.c: Likewise.
34953 * misc/swapon.c: Likewise.
34954 * misc/sync.c: Likewise.
34955 * misc/syncfs.c: Likewise.
34956 * misc/syscall.c: Likewise.
34957 * misc/truncate.c: Likewise.
34958 * misc/ualarm.c: Likewise.
34959 * misc/usleep.c: Likewise.
34960 * misc/ustat.c: Likewise.
34961 * misc/utimes.c: Likewise.
34962 * misc/vhangup.c: Likewise.
34963 * misc/writev.c: Likewise.
34964 * posix/_exit.c: Likewise.
34965 * posix/alarm.c: Likewise.
34966 * posix/execve.c: Likewise.
34967 * posix/fexecve.c: Likewise.
34968 * posix/fork.c: Likewise.
34969 * posix/fpathconf.c: Likewise.
34970 * posix/getaddrinfo.c: Likewise.
34971 * posix/getegid.c: Likewise.
34972 * posix/geteuid.c: Likewise.
34973 * posix/getgid.c: Likewise.
34974 * posix/getgroups.c: Likewise.
34975 * posix/getlogin.c: Likewise.
34976 * posix/getlogin_r.c: Likewise.
34977 * posix/getpgid.c: Likewise.
34978 * posix/getpid.c: Likewise.
34979 * posix/getppid.c: Likewise.
34980 * posix/getresgid.c: Likewise.
34981 * posix/getresuid.c: Likewise.
34982 * posix/getsid.c: Likewise.
34983 * posix/getuid.c: Likewise.
34984 * posix/glob64.c: Likewise.
34985 * posix/nanosleep.c: Likewise.
34986 * posix/pathconf.c: Likewise.
34987 * posix/pause.c: Likewise.
34988 * posix/posix_madvise.c: Likewise.
34989 * posix/pread.c: Likewise.
34990 * posix/pread64.c: Likewise.
34991 * posix/pwrite.c: Likewise.
34992 * posix/pwrite64.c: Likewise.
34993 * posix/sched_getaffinity.c: Likewise.
34994 * posix/sched_getp.c: Likewise.
34995 * posix/sched_gets.c: Likewise.
34996 * posix/sched_primax.c: Likewise.
34997 * posix/sched_primin.c: Likewise.
34998 * posix/sched_rr_gi.c: Likewise.
34999 * posix/sched_setaffinity.c: Likewise.
35000 * posix/sched_setp.c: Likewise.
35001 * posix/sched_sets.c: Likewise.
35002 * posix/sched_yield.c: Likewise.
35003 * posix/setgid.c: Likewise.
35004 * posix/setlogin.c: Likewise.
35005 * posix/setpgid.c: Likewise.
35006 * posix/setresgid.c: Likewise.
35007 * posix/setresuid.c: Likewise.
35008 * posix/setsid.c: Likewise.
35009 * posix/setuid.c: Likewise.
35010 * posix/sleep.c: Likewise.
35011 * posix/spawni.c: Likewise.
35012 * posix/sysconf.c: Likewise.
35013 * posix/times.c: Likewise.
35014 * posix/wait.c: Likewise.
35015 * posix/wait3.c: Likewise.
35016 * posix/wait4.c: Likewise.
35017 * posix/waitpid.c: Likewise.
35018 * resolv/gai_sigqueue.c: Likewise.
35019 * resource/getpriority.c: Likewise.
35020 * resource/getrlimit.c: Likewise.
35021 * resource/getrusage.c: Likewise.
35022 * resource/nice.c: Likewise.
35023 * resource/setpriority.c: Likewise.
35024 * resource/setrlimit.c: Likewise.
35025 * resource/ulimit.c: Likewise.
35026 * rt/aio_cancel.c: Likewise.
35027 * rt/aio_fsync.c: Likewise.
35028 * rt/aio_read.c: Likewise.
35029 * rt/aio_sigqueue.c: Likewise.
35030 * rt/aio_suspend.c: Likewise.
35031 * rt/aio_write.c: Likewise.
35032 * rt/clock_getres.c: Likewise.
35033 * rt/clock_gettime.c: Likewise.
35034 * rt/clock_nanosleep.c: Likewise.
35035 * rt/clock_settime.c: Likewise.
35036 * rt/lio_listio.c: Likewise.
35037 * rt/mq_close.c: Likewise.
35038 * rt/mq_getattr.c: Likewise.
35039 * rt/mq_notify.c: Likewise.
35040 * rt/mq_open.c: Likewise.
35041 * rt/mq_receive.c: Likewise.
35042 * rt/mq_send.c: Likewise.
35043 * rt/mq_setattr.c: Likewise.
35044 * rt/mq_timedreceive.c: Likewise.
35045 * rt/mq_timedsend.c: Likewise.
35046 * rt/mq_unlink.c: Likewise.
35047 * rt/shm_open.c: Likewise.
35048 * rt/shm_unlink.c: Likewise.
35049 * rt/timer_create.c: Likewise.
35050 * rt/timer_delete.c: Likewise.
35051 * rt/timer_getoverr.c: Likewise.
35052 * rt/timer_gettime.c: Likewise.
35053 * rt/timer_settime.c: Likewise.
35054 * setjmp/__longjmp.c: Likewise.
35055 * setjmp/setjmp.c: Likewise.
35056 * signal/kill.c: Likewise.
35057 * signal/killpg.c: Likewise.
35058 * signal/raise.c: Likewise.
35059 * signal/sigaction.c: Likewise.
35060 * signal/sigaltstack.c: Likewise.
35061 * signal/sigblock.c: Likewise.
35062 * signal/sigignore.c: Likewise.
35063 * signal/sigintr.c: Likewise.
35064 * signal/signal.c: Likewise.
35065 * signal/sigpause.c: Likewise.
35066 * signal/sigpending.c: Likewise.
35067 * signal/sigqueue.c: Likewise.
35068 * signal/sigreturn.c: Likewise.
35069 * signal/sigset.c: Likewise.
35070 * signal/sigsetmask.c: Likewise.
35071 * signal/sigstack.c: Likewise.
35072 * signal/sigsuspend.c: Likewise.
35073 * signal/sigtimedwait.c: Likewise.
35074 * signal/sigvec.c: Likewise.
35075 * signal/sigwait.c: Likewise.
35076 * signal/sigwaitinfo.c: Likewise.
35077 * signal/sysv_signal.c: Likewise.
35078 * socket/accept.c: Likewise.
35079 * socket/accept4.c: Likewise.
35080 * socket/bind.c: Likewise.
35081 * socket/connect.c: Likewise.
35082 * socket/getpeername.c: Likewise.
35083 * socket/getsockname.c: Likewise.
35084 * socket/getsockopt.c: Likewise.
35085 * socket/isfdtype.c: Likewise.
35086 * socket/listen.c: Likewise.
35087 * socket/recv.c: Likewise.
35088 * socket/recvfrom.c: Likewise.
35089 * socket/recvmsg.c: Likewise.
35090 * socket/send.c: Likewise.
35091 * socket/sendmsg.c: Likewise.
35092 * socket/sendto.c: Likewise.
35093 * socket/setsockopt.c: Likewise.
35094 * socket/shutdown.c: Likewise.
35095 * socket/sockatmark.c: Likewise.
35096 * socket/socket.c: Likewise.
35097 * socket/socketpair.c: Likewise.
35098 * stdio-common/ctermid.c: Likewise.
35099 * stdio-common/cuserid.c: Likewise.
35100 * stdio-common/remove.c: Likewise.
35101 * stdio-common/rename.c: Likewise.
35102 * stdio-common/renameat.c: Likewise.
35103 * stdio-common/tempname.c: Likewise.
35104 * stdlib/getcontext.c: Likewise.
35105 * stdlib/makecontext.c: Likewise.
35106 * stdlib/setcontext.c: Likewise.
35107 * stdlib/swapcontext.c: Likewise.
35108 * stdlib/system.c: Likewise.
35109 * streams/fattach.c: Likewise.
35110 * streams/fdetach.c: Likewise.
35111 * streams/getmsg.c: Likewise.
35112 * streams/getpmsg.c: Likewise.
35113 * streams/putmsg.c: Likewise.
35114 * streams/putpmsg.c: Likewise.
35115 * sysdeps/unix/bsd/getpt.c: Likewise.
35116 * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
35117 * sysdeps/unix/sysv/linux/futimens.c: Likewise.
35118 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
35119 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
35120 Likewise.
35121 * sysdeps/unix/sysv/linux/readahead.c: Likewise.
35122 * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
35123 * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
35124 * sysvipc/msgctl.c: Likewise.
35125 * sysvipc/msgget.c: Likewise.
35126 * sysvipc/msgrcv.c: Likewise.
35127 * sysvipc/msgsnd.c: Likewise.
35128 * sysvipc/semctl.c: Likewise.
35129 * sysvipc/semget.c: Likewise.
35130 * sysvipc/semop.c: Likewise.
35131 * sysvipc/semtimedop.c: Likewise.
35132 * sysvipc/shmat.c: Likewise.
35133 * sysvipc/shmctl.c: Likewise.
35134 * sysvipc/shmdt.c: Likewise.
35135 * sysvipc/shmget.c: Likewise.
35136 * termios/tcdrain.c: Likewise.
35137 * termios/tcflow.c: Likewise.
35138 * termios/tcflush.c: Likewise.
35139 * termios/tcgetattr.c: Likewise.
35140 * termios/tcgetpgrp.c: Likewise.
35141 * termios/tcsendbrk.c: Likewise.
35142 * termios/tcsetattr.c: Likewise.
35143 * termios/tcsetpgrp.c: Likewise.
35144 * time/adjtime.c: Likewise.
35145 * time/clock.c: Likewise.
35146 * time/getitimer.c: Likewise.
35147 * time/gettimeofday.c: Likewise.
35148 * time/setitimer.c: Likewise.
35149 * time/settimeofday.c: Likewise.
35150 * time/stime.c: Likewise.
35151 * time/time.c: Likewise.
35152
351532012-11-04 Pino Toscano <toscano.pino@tiscali.it>
72e182e3 35154
a20492cf
PT
35155 * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
35156 /usr/old/bin.
35157
72e182e3
PT
35158 * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
35159 instead of spaces.
35160 * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
35161
fbeafede
JM
351622012-11-03 Joseph Myers <joseph@codesourcery.com>
35163
5b5b04d6
JM
35164 [BZ #14796]
35165 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
35166 FE_TONEAREST before applying Dekker multiplication and Knuth
35167 addition. Clear inexact exceptions and check for exact zero
35168 results afterwards.
35169 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35170 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
35171 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35172 * math/libm-test.inc (fma_test): Add more tests.
35173 (fma_test_towardzero): Likewise.
35174 (fma_test_downward): Likewise.
35175 (fma_test_upward): Likewise.
35176 * sysdeps/generic/math_private.h (default_libc_fesetround): New
35177 function.
35178 (libc_fesetround): New macro.
35179 (libc_fesetroundf): Likewise.
35180 (libc_fesetroundl): Likewise.
35181 * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
35182 function.
35183 (libc_fesetround_387): Likewise.
35184 (libc_fesetroundf): New macro.
35185 (libc_fesetround): Likewise.
35186 (libc_fesetroundl): Likewise.
35187 * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
35188 function.
35189 (libc_fesetroundf): New macro.
35190 (libc_fesetround): Likewise.
35191 (libc_fesetroundl): Likewise.
35192 * include/fenv.h (feclearexcept): Add libm_hidden_proto.
35193 * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
35194 * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
35195 libm_hidden_ver.
35196 * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
35197 * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
35198 libm_hidden_def.
35199 * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
35200 * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
35201 libm_hidden_ver.
35202 * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
35203 libm_hidden_def.
35204
fbeafede
JM
35205 [BZ #3439]
35206 * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
35207 integer constant usable in #if and use that to give value to enum
35208 constant.
35209 (FE_DIVBYZERO): Likewise.
35210 (FE_UNDERFLOW): Likewise.
35211 (FE_OVERFLOW): Likewise.
35212 (FE_INVALID): Likewise.
35213 (FE_INVALID_SNAN): Likewise.
35214 (FE_INVALID_ISI): Likewise.
35215 (FE_INVALID_IDI): Likewise.
35216 (FE_INVALID_ZDZ): Likewise.
35217 (FE_INVALID_IMZ): Likewise.
35218 (FE_INVALID_COMPARE): Likewise.
35219 (FE_INVALID_SOFTWARE): Likewise.
35220 (FE_INVALID_SQRT): Likewise.
35221 (FE_INVALID_INTEGER_CONVERSION): Likewise.
35222 (FE_TONEAREST): Likewise.
35223 (FE_TOWARDZERO): Likewise.
35224 (FE_UPWARD): Likewise.
35225 (FE_DOWNWARD): Likewise.
35226 * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
35227 (FE_DIVBYZERO): Likewise.
35228 (FE_OVERFLOW): Likewise.
35229 (FE_UNDERFLOW): Likewise.
35230 (FE_INEXACT): Likewise.
35231 (FE_TONEAREST): Likewise.
35232 (FE_DOWNWARD): Likewise.
35233 (FE_UPWARD): Likewise.
35234 (FE_TOWARDZERO): Likewise.
35235 * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
35236 (FE_UNDERFLOW): Likewise.
35237 (FE_OVERFLOW): Likewise.
35238 (FE_DIVBYZERO): Likewise.
35239 (FE_INVALID): Likewise.
35240 (FE_TONEAREST): Likewise.
35241 (FE_TOWARDZERO): Likewise.
35242 * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
35243 (FE_OVERFLOW): Likewise.
35244 (FE_UNDERFLOW): Likewise.
35245 (FE_DIVBYZERO): Likewise.
35246 (FE_INEXACT): Likewise.
35247 (FE_TONEAREST): Likewise.
35248 (FE_TOWARDZERO): Likewise.
35249 (FE_UPWARD): Likewise.
35250 (FE_DOWNWARD): Likewise.
35251 * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
35252 (FE_DIVBYZERO): Likewise.
35253 (FE_OVERFLOW): Likewise.
35254 (FE_UNDERFLOW): Likewise.
35255 (FE_INEXACT): Likewise.
35256 (FE_TONEAREST): Likewise.
35257 (FE_DOWNWARD): Likewise.
35258 (FE_UPWARD): Likewise.
35259 (FE_TOWARDZERO): Likewise.
35260
105ca950
CM
352612012-11-02 Chris Metcalf <cmetcalf@tilera.com>
35262
35263 * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
35264
a542b389
AS
352652012-11-03 Andreas Schwab <schwab@linux-m68k.org>
35266
35267 * scripts/cross-test-ssh.sh (command): Use newlines to separate
35268 commands. Quote $PWD.
35269 (blacklist_exports): Don't use remove_newlines. Replace "declare
35270 -x" by "export".
35271 (remove_newlines): Remove.
35272
f62c8abc
L
352732012-11-02 H.J. Lu <hongjiu.lu@intel.com>
35274
35275 * stdlib/Makefile (headers): Add bits/stdlib-float.h.
35276 * stdlib/stdlib.h (atof): Moved to ...
35277 * include/bits/stdlib-float.h: Here. New file.
35278 * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
35279 * stdlib/bits/stdlib-float.h: New file.
35280 * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
35281 -mno-sse -mno-mmx.
35282 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
35283 <xmmintrin.h>.
35284
0155d5b2
JM
352852012-11-02 Joseph Myers <joseph@codesourcery.com>
35286
a68d0680
JM
35287 * conform/conformtest.pl (@headers): Add fenv.h.
35288 * conform/data/fenv.h-data: New file.
35289 * include/fenv.h [_ISOMAC]: Disable all contents of file except
35290 include of <math/fenv.h>.
35291
caf7f573
JM
35292 * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
35293 POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
35294 && !UNIX98]. Enables tests for XOPEN2K8.
35295 * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
35296 POSIX2008]: Likewise.
35297
6c073ad6
JM
35298 * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
35299 (struct rusage): Do not expect type or its members.
35300
0155d5b2
JM
35301 [BZ #3439]
35302 * math/math.h (FP_NAN): Define macro to integer constant usable in
35303 #if and use that to give value to enum constant.
35304 (FP_INFINITE): Likewise.
35305 (FP_ZERO): Likewise.
35306 (FP_SUBNORMAL): Likewise.
35307 (FP_NORMAL): Likewise.
35308
b5dcacb4
AS
353092012-11-02 Andreas Schwab <schwab@linux-m68k.org>
35310
35311 * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
35312 * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
35313 arguments.
35314
f7934be8
RM
353152012-11-02 Roland McGrath <roland@hack.frob.com>
35316
35317 * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
35318 Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
35319 autoconf-time if not.
35320 * configure.in: Remove AC_PREREQ.
35321
d7d08bde
TMQMF
353222012-11-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
35323
35324 * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
35325 __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
35326 of the internal implementation.
35327
dcdae19a
JM
353282012-11-02 Joseph Myers <joseph@codesourcery.com>
35329
35330 * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
35331 except include of <misc/sys/syslog.h>.
35332
d6cffd3e
AS
353332012-11-01 Andreas Schwab <schwab@linux-m68k.org>
35334
35335 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
35336 function returns with a NULL context exit with zero.
35337
b3563932
TMQMF
353382012-11-01 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
35339
35340 * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
35341
b288a93d
L
353422012-11-01 H.J. Lu <hongjiu.lu@intel.com>
35343
35344 * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
35345 (run_program_cmd): This.
35346 * localedata/tst-langinfo.sh (run_program_prefix): Removed.
35347 (tst_langinfo): New variable. Use it.
35348
a2421a68
SAS
353492012-11-01 Sebastan Andrzej Siewior <bigeasy@linutronix.de>
35350
35351 * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
35352 floating point opcodes.
35353
6f796e1b
TS
353542012-11-01 Thomas Schwinge <thomas@codesourcery.com>
35355
7402596b
TS
35356 * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
35357 variable.
35358
d0d4f868
TS
35359 * elf/dl-support.c: Unconditionally include "setup-vdso.h".
35360
6f796e1b
TS
35361 * sysdeps/mach/hurd/powerpc: Remove directory.
35362 * sysdeps/mach/powerpc: Likewise.
35363
4da224a2
AS
353642012-11-01 Andreas Schwab <schwab@linux-m68k.org>
35365
35366 * scripts/check-local-headers.sh: Ignore c++ headers.
35367
341dd673
TS
353682012-11-01 Thomas Schwinge <thomas@codesourcery.com>
35369
35370 * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
35371 __libc_cleanup_region_start argument.
35372
473611b2
JM
353732012-11-01 Joseph Myers <joseph@codesourcery.com>
35374
35375 [BZ #14784]
35376 [BZ #14785]
35377 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
35378 x * y using scaling, not as x * y + z.
35379 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35380 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35381 * math/libm-test.inc (fma_test): Add more tests.
35382 (fma_test_towardzero): Likewise.
35383 (fma_test_downward): Likewise.
35384 (fma_test_upward): Likewise.
35385
4078da3d
TS
353862012-11-01 Thomas Schwinge <thomas@codesourcery.com>
35387
35388 * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
35389
903252aa
JM
353902012-10-31 Joseph Myers <joseph@codesourcery.com>
35391
35392 * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
35393 New variable.
35394
cbc818d0
TS
353952012-10-31 Thomas Schwinge <thomas@codesourcery.com>
35396
35397 * rt/tst-shm.c (worker): Correct checking for mmap failure.
35398
5a03cb1e
AS
353992012-10-31 Andreas Schwab <schwab@linux-m68k.org>
35400
35401 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35402 Fix sort order.
35403 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35404 Likewise.
35405
90aff2ff
TMQMF
354062012-10-31 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
35407
35408 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35409 Fix the order of the list for glibc 2.17.
35410 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35411 Likewise.
35412
1818fcb7
AS
354132012-10-31 Andreas Schwab <schwab@linux-m68k.org>
35414
35415 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
35416
ef82f4da
JM
354172012-10-31 Joseph Myers <joseph@codesourcery.com>
35418
16a0e2ec
JM
35419 [BZ #14610]
35420 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
35421 for low part of x being zero before using __atanl (y).
35422 * math/libm-test.inc (atan2_test): Add another test.
35423
0eb69512
JM
35424 * manual/install.texi (Configuring and compiling): Document
35425 general use of test-wrapper and test-wrapper-env.
35426 * INSTALL: Regenerated.
35427
ef82f4da
JM
35428 * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
35429 (__fma): Do not extract and scale down low bits on after-rounding
35430 systems when result rounded to normal precision would have normal
35431 exponent.
35432 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
35433 (__fmal): Do not extract and scale down low bits on after-rounding
35434 systems when result rounded to normal precision would have normal
35435 exponent.
35436 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
35437 (__fmal): Do not extract and scale down low bits on after-rounding
35438 systems when result rounded to normal precision would have normal
35439 exponent.
35440 * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
35441 macro.
35442 (fma_test): Add more tests.
35443 (fma_test_towardzero): Likewise.
35444 (fma_test_downward): Likewise.
35445 (fma_test_upward): Likewise.
35446
954ef0d9
L
354472012-10-30 H.J. Lu <hongjiu.lu@intel.com>
35448
35449 * sysdeps/i386/tininess.h: Renamed to ...
35450 * sysdeps/x86/tininess.h: This.
35451 * sysdeps/x86_64/tininess.h: Removed.
35452
df61ffb2
JM
354532012-10-30 Joseph Myers <joseph@codesourcery.com>
35454
35455 * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
35456 input. Use $(build-program-cmd).
35457 ($(objpfx)tst-array1-static.out): Likewise.
35458 ($(objpfx)tst-array2.out): Likewise.
35459 ($(objpfx)tst-array3.out): Likewise.
35460 ($(objpfx)tst-array4.out): Likewise.
35461 ($(objpfx)tst-array5.out): Likewise.
35462 ($(objpfx)tst-array5-static.out): Likewise.
35463
01767843
CM
354642012-10-30 Chris Metcalf <cmetcalf@tilera.com>
35465
47cc1490
CM
35466 * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
35467 if defined.
35468
01767843
CM
35469 * nss/nsswitch.h (nss_interface_function): Provide new
35470 macro for use with NSS functions.
35471 * grp/initgroups.c: Use new macro.
35472 * nss/getXXbyYY.c: Likewise.
35473 * nss/getXXbyYY_r.c: Likewise.
35474 * nss/getXXent.c: Likewise.
35475 * nss/getXXent_r.c: Likewise.
35476 * sysdeps/posix/getaddrinfo.c: Likewise.
35477
8321aa97
AJ
354782012-10-30 Andreas Jaeger <aj@suse.de>
35479
35480 * po/ru.po: Update Russion translation from translation project.
35481
2a27fd6d
JM
354822012-10-30 Joseph Myers <joseph@codesourcery.com>
35483
8627a232
JM
35484 [BZ #14152]
35485 [BZ #14783]
35486 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
35487 result and shift together with sticky bit instead of replicating
35488 round-to-nearest rounding.
35489 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
35490 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
35491 * math/libm-test.inc (fma_test): Add more tests. Do not permit
35492 missing underflow exceptions.
35493 (fma_test_towardzero): Add more tests.
35494 (fma_test_downward): Likewise.
35495 (fma_test_upward): Likewise.
35496
2a27fd6d
JM
35497 [BZ #14047]
35498 * sysdeps/generic/tininess.h: New file.
35499 * sysdeps/i386/tininess.h: Likewise.
35500 * sysdeps/sh/tininess.h: Likewise.
35501 * sysdeps/x86_64/tininess.h: Likewise.
35502 * stdlib/tst-strtod-underflow.c: Likewise.
35503 * stdlib/tst-tininess.c: Likewise.
35504 * stdlib/strtod_l.c: Include <tininess.h>.
35505 (round_and_return): Do not set errno for exact underflow cases.
35506 Force an underflow exception when setting errno for underflow.
35507 Determine underflow based on rounding to normal precision if
35508 TININESS_AFTER_ROUNDING.
35509 * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
35510 ERANGE for exact underflow cases.
35511 * stdlib/Makefile (tests): Add tst-tininess and
35512 tst-strtod-underflow.
35513 ($(objpfx)tst-tininess): Use $(link-libm).
35514 ($(objpfx)tst-strtod-underflow): Likewise.
35515
e7170363
AJ
355162012-10-30 Andreas Jaeger <aj@suse.de>
35517
e5088dc6
AJ
35518 [BZ#14767]
35519 * elf/Makefile (tests): Remove conditional for have-initfini-array
35520 since this is now always required and the variable does not exist
35521 anymore.
35522 (tests-static): Likewise.
35523 (modules-names): Likewise.
35524
e7170363 35525 * po/eo.po: Add Esperanto translation from translation project.
b0988f10
AJ
35526
35527 * elf/tst-array1.c (fini_array): Make writeable so that it can be
35528 merged with constructor/destructor.
35529 (init_array): Likewise.
35530 * elf/tst-array2dep.c (fini_array): Likewise.
35531 (init_array): Likewise.
35532
60457d8a
MF
355332012-10-29 Mike Frysinger <vapier@gentoo.org>
35534
35535 * manual/message.texi: Delete @cartouche tags.
35536
8bece752
PT
355372012-10-29 Pino Toscano <toscano.pino@tiscali.it>
35538
94ce799f
PT
35539 * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
35540 EOPNOTSUPP.
35541 * sysdeps/mach/hurd/fsync.c: Likewise.
35542
8bece752
PT
35543 * sysdeps/pthread/aio_notify.c (__aio_notify_only)
35544 [_POSIX_REALTIME_SIGNALS]: Change condition to
35545 [_POSIX_REALTIME_SIGNALS > 0].
35546
86ebe6b1
AJ
355472012-10-27 Andreas Jaeger <aj@suse.de>
35548
35549 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
35550 [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
35551 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
35552 [__WORDSIZE != 64]: Likewise.
35553
54399c08
L
355542012-10-26 H.J. Lu <hongjiu.lu@intel.com>
35555
35556 * iconvdata/tst-table.sh: Remove ${SHELL}.
35557 * iconvdata/tst-tables.sh: Likewise.
35558
e2211bed
DM
355592012-10-25 David S. Miller <davem@davemloft.net>
35560
35561 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35562 (__get_clockfreq_via_proc_openprom): Use strtoumax instead
35563 of strtoull.
35564
f303f97c
DM
35565 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
35566 ifunc-impl-list.c
35567 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
35568 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
35569 * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
35570 file.
35571
1e9d84cd
RM
355722012-10-25 Roland McGrath <roland@hack.frob.com>
35573
35574 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35575 (__get_clockfreq_via_proc_openprom): Use __getdents instead of
35576 __getdirentries.
35577
df381762
JM
355782012-10-25 Joseph Myers <joseph@codesourcery.com>
35579 Jim Blandy <jimb@codesourcery.com>
35580
35581 * scripts/cross-test-ssh.sh: New file.
35582 * manual/install.texi (Configuring and compiling): Document use of
35583 cross-test-ssh.sh.
35584 * INSTALL: Regenerated.
35585
bff64913
PT
355862012-10-25 Pino Toscano <toscano.pino@tiscali.it>
35587
35588 * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
35589 EOPNOTSUPP.
35590
25fe8932
JM
355912012-10-25 Joseph Myers <joseph@codesourcery.com>
35592
35593 * Makeconfig (run-program-prefix): Fix comment.
35594
cc1290d0
JM
355952012-10-24 Joseph Myers <joseph@codesourcery.com>
35596 Jim Blandy <jimb@codesourcery.com>
35597
35598 * Makeconfig (test-wrapper): New variable,
35599 (test-wrapper-env): Likewise.
35600 [$(cross-compiling) = yes && $(test-wrapper) != ""]
35601 (run-built-tests): Define to yes.
35602 (run-program-prefix): Use $(test-wrapper).
35603 (built-program-cmd): Likewise.
35604 * Rules (make-test-out): Use $(test-wrapper-env) and
35605 $(host-built-program-cmd).
35606 * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
35607 ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
35608 tst-pathopt.sh.
35609 ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
35610 $(test-wrapper-env) to tst-rtld-load-self.sh.
35611 ($(objpfx)order2.out): Use $(test-wrapper).
35612 ($(objpfx)tst-initorder.out): Likewise.
35613 ($(objpfx)tst-initorder2.out): Likewise.
35614 ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
35615 * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
35616 (test_wrapper_env): New variable. Use it to run ld.so.
35617 * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
35618 Use it to run ld.so.
35619 (test_wrapper_env): Likewise.
35620 * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
35621 $(test-wrapper) to run-iconv-test.sh.
35622 * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
35623 (ICONV): Use $test_wrapper.
35624 * posix/Makefile ($(objpfx)globtest.out): Pass
35625 $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
35626 globtest.sh, not $(run-program-prefix).
35627 * posix/globtest.sh (run_via_rtld_prefix): New variable.
35628 (test_wrapper): Likewise.
35629 (test_wrapper_env): Likewise. Use it to run globtest with HOME
35630 set together with run_via_rtld_prefix.
35631 (run_program_prefix): Define in terms of test_wrapper and
35632 run_via_rtld_prefix.
35633
6e6249d0
RM
356342012-10-24 Roland McGrath <roland@hack.frob.com>
35635
35636 * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
35637 * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
35638 Targets removed.
35639
35640 [BZ #14743]
35641 * include/time.h: Remove librt_hidden_proto (clock_gettime).
35642 Declare __clock_getres, __clock_gettime, __clock_settime,
35643 __clock_nanosleep, and __clock_getcpuclockid.
35644 * rt/clock_gettime.c: Define __clock_gettime as an alias.
35645 Remove librt_hidden_def (clock_gettime).
35646 * sysdeps/unix/clock_gettime.c: Likewise.
35647 * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
35648 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
35649 * rt/clock_getres.c: Define __clock_getres as an alias.
35650 * sysdeps/posix/clock_getres.c: Likewise.
35651 * rt/clock_settime.c: Define __clock_settime as an alias.
35652 * sysdeps/unix/clock_settime.c: Likewise.
35653 * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
35654 * sysdeps/unix/clock_nanosleep.c: Likewise.
35655 * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
35656 * rt/clock-compat.c: New file.
35657 * rt/Makefile (librt-routines): Add clock-compat and move
35658 $(clock-routines) to ...
35659 (routines): ... here, new variable.
35660 * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
35661 Don't add get_clockfreq here.
35662 * rt/Versions (libc: GLIBC_2.17): New version set.
35663 Add clock_* symbols here.
35664 (libc: GLIBC_PRIVATE): New version set. Add __clock_* symbols here.
35665 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
35666 (GLIBC_2.17): Add clock_* symbols.
35667 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
35668 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
35669 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
35670 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
35671 Likewise.
35672 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
35673 Likewise.
35674 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
35675 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
35676 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
35677 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
35678 * NEWS: Mention the move.
35679
35680 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
35681 Use __open, __read, __close rather than their public counterparts.
35682 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
35683 (__get_clockfreq_via_cpuinfo): Likewise.
35684 (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
35685 (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
35686
35687 * config.h.in (HAVE_IFUNC): New #undef.
35688 * configure.in: Define it if libc_cv_ld_gnu_indirect_function
35689 was successful.
35690 * configure: Regenerated.
35691
0cae3f4b
MF
356922012-10-24 Mike Frysinger <vapier@gentoo.org>
35693
35694 * configure.in: Move READELF check to start of file.
35695 (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
35696 libc_cv_asm_gnu_indirect_function in the process.
35697 * configure: Regenerated.
35698
8175a253
MF
356992012-10-24 Mike Frysinger <vapier@gentoo.org>
35700
35701 * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
35702 send the output to /dev/null.
35703 (libc_cv_cc_with_libunwind): Likewise.
35704 (libc_cv_as_noexecstack): Likewise.
35705 * configure: Regenerate.
35706
0708a7d1
JM
357072012-10-24 Joseph Myers <joseph@codesourcery.com>
35708
10b40d85
JM
35709 * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
35710
0708a7d1
JM
35711 * posix/globtest.sh (TMPDIR): Do not set.
35712 (testdir): Define using ${common_objpfx}posix not $TMPDIR.
35713 (testout): Likewise.
35714
9fddec1a
AJ
357152012-10-24 Andreas Jaeger <aj@suse.de>
35716
3a8db22f
AJ
35717 * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
35718 types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
35719 [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
35720 [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
35721 posix_fadvise64, posix_fallocate64.
35722
9fddec1a
AJ
35723 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
35724 (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
35725 (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
35726 Likewise.
35727 (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
35728 Likewise.
35729 (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
35730
35731 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
35732 (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
35733 <bits/fcntl-linux.h>.
35734 (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
35735
35736 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
35737 (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
35738 (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
35739 (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
35740 [__WORDSIZE != 64]: Likewise.
35741
ebfd1bbd
JM
357422012-10-23 Joseph Myers <joseph@codesourcery.com>
35743
03ac099f
JM
35744 * Makeconfig (run-built-tests): New variable.
35745 * Rules [$(cross-compiling) = yes]: Change condition to
35746 [$(run-built-tests) = no].
35747 * catgets/Makefile [$(cross-compiling) != yes]: Change condition
35748 to [$(run-built-tests) = yes].
35749 * elf/Makefile [$(cross-compiling) = no]: Likewise
35750 * grp/Makefile [$(cross-compiling) = no]: Likewise.
35751 * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
35752 * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
35753 * intl/Makefile [$(cross-compiling) = no]: Likewise.
35754 * io/Makefile [$(cross-compiling) = no]: Likewise.
35755 * libio/Makefile [$(cross-compiling) = no]: Likewise.
35756 * malloc/Makefile [$(cross-compiling) = no]: Likewise.
35757 * misc/Makefile [$(cross-compiling) = no]: Likewise.
35758 * posix/Makefile [$(cross-compiling) = no]: Likewise.
35759 * resolv/Makefile [$(cross-compiling) = no]: Likewise.
35760 * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
35761 * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
35762 * string/Makefile [$(cross-compiling) = no]: Likewise.
35763
ebfd1bbd
JM
35764 * posix/Makefile ($(objpfx)globtest.out): Pass
35765 $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
35766 $(rtld-installed-name).
35767 * posix/globtest.sh (elf_objpfx): Remove variable.
35768 (rtld_installed_name): Likewise.
35769 (library_path): Likewise.
35770 (run_program_prefix): New variable. Use for running globtest
35771 binary.
35772
166bca24
JB
357732012-10-23 Jim Blandy <jimb@codesourcery.com>
35774 Joseph Myers <joseph@codesourcery.com>
35775
35776 * Makeconfig (host-built-program-cmd): New variable.
35777 * elf/Makefile (tst-stackguard1-ARGS): Use
35778 $(host-built-program-cmd).
35779 * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
35780 (tst-spawn-ARGS): Likewise.
35781 * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
35782
88866099
JM
357832012-10-23 Joseph Myers <joseph@codesourcery.com>
35784 Jim Blandy <jimb@codesourcery.com>
35785
35786 * Makeconfig (run-via-rtld-prefix): New variable.
35787 (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
35788 (built-program-cmd): Likewise.
35789
b4b4c296
AJ
357902012-10-22 Andreas Jaeger <aj@suse.de>
35791
35792 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
35793 __O_RSYNC if it exists, otherwise to O_SYNC.
35794
6fb54a22
JB
357952012-10-22 Jim Blandy <jimb@codesourcery.com>
35796 Joseph Myers <joseph@codesourcery.com>
35797
35798 * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
35799 /dev/null.
35800 * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
35801 from /dev/null
35802 * posix/tst-getconf.sh: Redirect getconf stdin in loop from
35803 /dev/null.
35804
481b90b9
AJ
358052012-10-22 Andreas Jaeger <aj@suse.de>
35806
2a0e2669
AJ
35807 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
35808 Define always.
35809 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
35810
76e38f9a
AJ
35811 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
35812 bits/fcntl-linux.h.
35813
7cd37b43
AJ
35814 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
35815 (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
35816
481b90b9
AJ
35817 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
35818 to __O_LARGEFILE.
35819 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
35820 to __O_LARGEFILE.
35821
aba75984
JB
358222012-10-21 Jim Blandy <jimb@codesourcery.com>
35823 Joseph Myers <joseph@codesourcery.com>
35824
35825 * config.make.in (NM): New variable.
35826
88d4247f
AJ
358272012-10-21 Andreas Jaeger <aj@suse.de>
35828
35829 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
35830 definitions and declarations that are provided by
35831 <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
35832
f2eed205
L
358332012-10-20 H.J. Lu <hongjiu.lu@intel.com>
35834
35835 [BZ #14683]
35836 * elf/Makefile (tests-static): Add tst-leaks1-static.
35837 (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
35838 ($(objpfx)tst-leaks1-static): New rule.
35839 ($(objpfx)tst-leaks1-static-mem): Likewise.
35840 (tst-leaks1-static-ENV): New macro.
35841 * elf/dl-open.c (dl_open_worker): Check the main application
35842 only if SHARED is defined.
35843 * elf/tst-leaks1-static.c: New file.
35844
335e6931
AJ
358452012-10-20 Andreas Jaeger <aj@suse.de>
35846
35847 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
35848 generic values for Linux.
35849 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
35850 and declarations that are provided by <bits/fcntl-linux.h> and
35851 include <bits/fcntl-linux.h>.
35852 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
35853 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
35854
ac5c94d3
RM
358552012-10-20 Roland McGrath <roland@hack.frob.com>
35856
35857 * io/fcntl.h: Move include of <bits/types.h> to the top and
35858 include it unconditionally.
35859
de54b33a
L
358602012-10-20 H.J. Lu <hongjiu.lu@intel.com>
35861
228cfb01
L
35862 * wcsmbs/Makefile (tests-ifunc): New variable.
35863 (tests): Add $(tests-ifunc).
35864 * wcsmbs/test-wcschr-ifunc.c: New file.
35865 * wcsmbs/test-wcscmp-ifunc.c: Likewise.
35866 * wcsmbs/test-wcscpy-ifunc.c: Likewise.
35867 * wcsmbs/test-wcslen-ifunc.c: Likewise.
35868 * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
35869 * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
35870
69f07e5f
L
35871 * string/Makefile (tests-ifunc): New variable.
35872 (tests): Add $(tests-ifunc).
35873 * string/test-memccpy.c (TEST_NAME): New macro.
35874 * string/test-memchr.c (TEST_NAME): Likewise.
35875 * string/test-memcmp.c (TEST_NAME): Likewise.
35876 * string/test-memcpy.c (TEST_NAME): Likewise.
35877 * string/test-memmem.c (TEST_NAME): Likewise.
35878 * string/test-memmove.c (TEST_NAME): Likewise.
35879 * string/test-memset.c (TEST_NAME): Likewise.
35880 * string/test-rawmemchr.c (TEST_NAME): Likewise.
35881 * string/test-stpcpy.c (TEST_NAME): Likewise.
35882 * string/test-stpncpy.c (TEST_NAME): Likewise.
35883 * string/test-strcasecmp.c (TEST_NAME): Likewise.
35884 * string/test-strcasestr.c (TEST_NAME): Likewise.
35885 * string/test-strcat.c (TEST_NAME): Likewise.
35886 * string/test-strchr.c (TEST_NAME): Likewise.
35887 * string/test-strcmp.c(TEST_NAME): Likewise.
35888 * string/test-strcpy.c (TEST_NAME): Likewise.
35889 * string/test-strcspn.c (TEST_NAME): Likewise.
35890 * string/test-strlen.c (TEST_NAME): Likewise.
35891 * string/test-strncasecmp.c (TEST_NAME): Likewise.
35892 * string/test-strncmp.c (TEST_NAME): Likewise.
35893 * string/test-strncpy.c (TEST_NAME): Likewise.
35894 * string/test-strnlen.c (TEST_NAME): Likewise.
35895 * string/test-strpbrk.c (TEST_NAME): Likewise.
35896 * string/test-strrchr.c (TEST_NAME): Likewise.
35897 * string/test-strspn.c (TEST_NAME): Likewise.
35898 * string/test-strstr.c (TEST_NAME): Likewise.
35899 * string/test-bcopy-ifunc.c: New file.
35900 * string/test-bzero-ifunc.c: Likewise.
35901 * string/test-memccpy-ifunc.c: Likewise.
35902 * string/test-memchr-ifunc.c: Likewise.
35903 * string/test-memcmp-ifunc.c: Likewise.
35904 * string/test-memcpy-ifunc.c: Likewise.
35905 * string/test-memmem-ifunc.c: Likewise.
35906 * string/test-memmove-ifunc.c: Likewise.
35907 * string/test-mempcpy-ifunc.c: Likewise.
35908 * string/test-memset-ifunc.c: Likewise.
35909 * string/test-rawmemchr-ifunc.c: Likewise.
35910 * string/test-stpcpy-ifunc.c: Likewise.
35911 * string/test-stpncpy-ifunc.c: Likewise.
35912 * string/test-strcasecmp-ifunc.c: Likewise.
35913 * string/test-strcasestr-ifunc.c: Likewise.
35914 * string/test-strcat-ifunc.c: Likewise.
35915 * string/test-strchr-ifunc.c: Likewise.
35916 * string/test-strchrnul-ifunc.c: Likewise.
35917 * string/test-strcmp-ifunc.c: Likewise.
35918 * string/test-strcpy-ifunc.c: Likewise.
35919 * string/test-strcspn-ifunc.c: Likewise.
35920 * string/test-strlen-ifunc.c: Likewise.
35921 * string/test-strncasecmp-ifunc.c: Likewise.
35922 * string/test-strncat-ifunc.c: Likewise.
35923 * string/test-strncmp-ifunc.c: Likewise.
35924 * string/test-strncpy-ifunc.c: Likewise.
35925 * string/test-strnlen-ifunc.c: Likewise.
35926 * string/test-strpbrk-ifunc.c: Likewise.
35927 * string/test-strrchr-ifunc.c: Likewise.
35928 * string/test-strspn-ifunc.c: Likewise.
35929 * string/test-strstr-ifunc.c: Likewise.
35930
de54b33a
L
35931 * debug/Makefile (tests-ifunc): New variable.
35932 (tests): Add $(tests-ifunc).
35933 * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
35934 * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
35935 * debug/test-stpcpy_chk-ifunc.c: New file.
35936 * debug/test-strcpy_chk-ifunc.c: Likewise.
35937
88481c16
SP
359382012-10-20 Siddhesh Poyarekar <siddhesh@redhat.com>
35939
35940 [BZ #13601]
35941 * elf/dl-load.c (open_verify): Retry read if the entire ELF
35942 header is not read in.
35943
135948bd
JM
359442012-10-19 Joseph Myers <joseph@codesourcery.com>
35945
89f1c388
JM
35946 * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh. Pass
35947 script to $(SHELL) as $<. Pass $(common-objpfx) to script
35948 directly. Pass built executable to script as
35949 $(built-program-cmd).
35950 * io/ftwtest-sh (ldso): Remove variable. Run ftwtest directly as
35951 $testprogram without using LD_LIBRARY_PATH and $ldso.
35952
e40a0d21
JM
35953 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
35954 $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
35955 $(rtld-installed-name).
35956 * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
35957 (rtld_installed_name): Likewise.
35958 (library_path): Likewise.
35959 (run_program_prefix): New variable. Use it to run tst_fgetgrent.
35960 * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
35961 $(run-program-prefix) to tst-tables.sh.
35962 * iconvdata/tst-table.sh (run_program_prefix): New variable. Use
35963 it to run tst-table-from and tst-table-to.
35964 * iconvdata/tst-tables.sh (run_program_prefix): New variable.
35965 Pass it to tst-table.sh.
35966 * intl/Makefile ($(objpfx)tst-gettext.out): Pass
35967 $(run-program-prefix) to tst-gettext.sh.
35968 ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
35969 tst-translit.sh.
35970 ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
35971 tst-gettext2.sh.
35972 * intl/tst-gettext.sh (run_program_prefix): New variable. Use it
35973 to run tst-gettext.
35974 * intl/tst-gettext2.sh (run_program_prefix): New variable. Use it
35975 to run tst-gettext2.
35976 * intl/tst-translit.sh (run_program_prefix): New variable. Use it
35977 to run tst-translit.
35978 * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
35979 $(run-program-prefix) to tst-mtrace.sh.
35980 * malloc/tst-mtrace.sh (run_program_prefix): New variable. Use it
35981 to run tst-mtrace.
35982 * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
35983 $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
35984 $(rtld-installed-name).
35985 * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
35986 (rtld_installed_name): Likewise.
35987 (run_program_prefix): New variable. Use it to run wordexp-test.
35988
728e272a
JM
35989 * Makeconfig (ARCH): Remove all definitions.
35990 (machine): Likewise.
35991 [ARCH]: Remove conditional code.
35992 [!objdir]: Give error.
35993 [!objdir] (objpfx): Remove.
35994 [!objdir] (common-objpfx): Likewise.
35995 [!objdir] (common-objdir): Likewise.
35996 * configure.in (config_makefile): Remove. Hardcode Makefile in
35997 AC_CONFIG_FILES call.
35998 * configure: Regenerated.
35999
d528cdcf
JM
36000 [BZ #13888]
36001 * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
36002 or TMPDIR.
36003 (testout): Likewise.
36004
135948bd
JM
36005 * posix/Makefile ($(objpfx)tst-getconf.out): Pass
36006 $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
36007 $(rtld-installed-name).
36008 * posix/tst-getconf.sh (elf_objpfx): Remove variable.
36009 (rtld_installed_name): Likwise.
36010 (runit): Remove function.
36011 (run_getconf): New variable, Use it for running getconf binary.
36012
38c78296
L
360132012-10-18 H.J. Lu <hongjiu.lu@intel.com>
36014
36015 [BZ #14716]
36016 * string/test-memmem.c (check_result): New function.
36017 (do_one_test): Use it.
36018 (check1): New function.
36019 (test_main): Use it.
36020
d077f65f
MT
360212012-10-18 Markus Trippelsdorf <markus@trippelsdorf.de>
36022
36023 * math/Makefile: Comment on slow compilation of test-tgmath2.c.
36024
ced52c71
JM
360252012-10-18 Joseph Myers <joseph@codesourcery.com>
36026
36027 * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
36028 (_G_LSEEK64): Likewise.
36029 (_G_MMAP64): Likewise.
36030 (_G_FSTAT64): Likewise.
36031 * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
36032 (_G_LSEEK64): Likewise.
36033 (_G_MMAP64): Likewise.
36034 (_G_FSTAT64): Likewise.
36035 * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
36036 unconditional. Call __mmap64 directly.
36037 (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
36038 (mmap_remap_check) [_G_LSEEK64]: Make code unconditional. Call
36039 __lseek64 directly.
36040 (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
36041 (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional. Call
36042 __mmap64 directly.
36043 (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
36044 (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional. Call
36045 __lseek64 directly.
36046 (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
36047 (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional. Call
36048 __lseek64 directly.
36049 (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
36050 (_IO_file_seek) [_G_LSEEK64]: Make code unconditional. Call
36051 __lseek64 directly.
36052 (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
36053 (_IO_file_stat) [_G_FSTAT64]: Make code unconditional. Call
36054 __fxstat64 directly.
36055 (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
36056 * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
36057 unconditional.
36058 (freopen64) [!_G_OPEN64]: Remove conditional code.
36059 * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
36060 unconditional.
36061 (fseeko64) [!_G_LSEEK64]: Remove conditional code.
36062 * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
36063 unconditional.
36064 (ftello64) [!_G_LSEEK64]: Remove conditional code.
36065 * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
36066 unconditional.
36067 (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
36068 * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
36069 unconditional.
36070 (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
36071 * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
36072 unconditional.
36073 (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
36074 * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
36075 unconditional.
36076 (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
36077 * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
36078 unconditional.
36079 (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
36080
b741de23
SP
360812012-10-18 Siddhesh Poyarekar <siddhesh@redhat.com>
36082
36083 [BZ #12140]
36084 * manual/memory.texi (Malloc Tunable Parameters): Add note
36085 about free list pointers overwriting some perturb bytes.
36086 Wording suggested by Roland McGrath.
36087
f9b9d9c9
JM
360882012-10-17 Joseph Myers <joseph@codesourcery.com>
36089
36090 * math/libm-test.inc (gamma_test): Do not call feclearexcept.
36091 (lgamma_test): Likewise.
36092 (tgamma_test): Likewise.
36093
172a631a
FW
360942012-10-16 Florian Weimer <fweimer@redhat.com>
36095
36096 [BZ #14700]
36097 * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
36098 (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
36099
e9f37252
MK
361002012-10-16 Maxim Kuvyrkov <maxim@codesourcery.com>
36101
36102 * NEWS: Mention BZ #14716.
36103 * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
36104 when removing AVAILABLE1_USES_J macro.
36105
d394eb74
L
361062012-10-12 H.J. Lu <hongjiu.lu@intel.com>
36107
36108 * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
36109 (__bswap_64): __uint64_t for unsigned 64-bit int.
36110
ca38dc17
AS
361112012-10-12 Andreas Schwab <schwab@linux-m68k.org>
36112
36113 * include/string.h (memmem): Declare libc hidden alias.
36114 * string/memmem.c (memmem): Define libc hidden alias.
36115 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
36116 __read, __close instead of open, read, close.
36117
9a387d1f
L
361182012-10-11 H.J. Lu <hongjiu.lu@intel.com>
36119
ac49ecaf
L
36120 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
36121 * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
36122 global and hidden.
36123 * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
36124 * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
36125 * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
36126 Likewise.
36127 (__rawmemchr_sse2): Likewise.
36128 * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
36129 * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
36130 (__strchr_sse2): Likewise.
36131 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
36132 * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
36133 (__strcasecmp_sse2): Likewise.
36134 (__strncasecmp_sse2): Likewise.
36135 * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
36136 * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
36137 * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
36138 * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
36139 (__strrchr_sse2): Likewise.
36140 * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
36141 ifunc-impl-list.c.
36142 * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
36143 * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
36144 * sysdeps/x86_64/multiarch/memmove.c: Likewise.
36145 * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
36146 * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
36147 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
36148 * sysdeps/x86_64/multiarch/memset.S: Likewise.
36149 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
36150 * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
36151 * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
36152 * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
36153 * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
36154 * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
36155 * sysdeps/x86_64/multiarch/strcat.S: Likewise.
36156 * sysdeps/x86_64/multiarch/strchr.S: Likewise.
36157 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
36158 * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
36159 * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
36160 * sysdeps/x86_64/multiarch/strlen.S: Likewise.
36161 * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
36162 * sysdeps/x86_64/multiarch/strncat.S: Likewise.
36163 * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
36164 * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
36165 * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
36166 * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
36167 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
36168 * sysdeps/x86_64/multiarch/strspn.S: Likewise.
36169 * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
36170 * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
36171 * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
36172
b090e8ea
L
36173 * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
36174 global and hidden.
36175 * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
36176 * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
36177 * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
36178 * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
36179 Likewise.
36180 * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
36181 Likewise.
36182 * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
36183 * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
36184 * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
36185 * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
36186 ifunc-impl-list.c.
36187 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
36188 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
36189 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
36190 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
36191 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
36192 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
36193 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
36194 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
36195 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
36196 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
36197 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
36198 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
36199 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
36200 * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
36201 * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
36202 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
36203 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
36204 * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
36205 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
36206 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
36207 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
36208 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
36209 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
36210 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
36211 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
36212 * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
36213 * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
36214 * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
36215 * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
36216 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
36217 * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
36218 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
36219 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
36220 * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
36221 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
36222 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
36223 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
36224 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
36225 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
36226 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
36227 * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
36228
11dd4af6
L
36229 * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
36230 [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
36231 * include/ifunc-impl-list.h: New file.
36232 * misc/ifunc-impl-list.c: Likewise.
36233 * misc/Makefile (routines): Add ifunc-impl-list.
36234 * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
36235 * string/test-string.h: Include <ifunc-impl-list.h>.
57f41c40
AS
36236 (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
36237 TEST_NAME]: New variables.
11dd4af6
L
36238 (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
36239 are defined.
36240 (test_init): Call __libc_ifunc_impl_list to initialize
36241 func_list if TEST_IFUNC and TEST_NAME are defined.
36242
9a387d1f
L
36243 * string/Makefile (strop-tests): Add bcopy and bzero.
36244 * string/test-bcopy.c: New file.
36245 * string/test-bzero.c: Likewise.
36246 * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
36247 defined.
36248 * string/test-memset.c: Support bzero test if TEST_BZERO is
36249 defined.
36250 * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
36251 __libc_memmove.
36252 * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
36253 __libc_memset.
36254 * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
36255 of memset.
36256
472371b9
JM
362572012-10-10 Joseph Myers <joseph@codesourcery.com>
36258
1e4a9536
JM
36259 * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
36260 * configure: Regenerated.
36261
d173d12e
JM
36262 * Makeconfig (+link-static-before-libc): Don't include
36263 $(link-static-libc).
36264
472371b9
JM
36265 * libio/libio.h (_IO_pos_t): Remove.
36266
89a3ad0b
AO
362672012-10-10 Alexandre Oliva <aoliva@redhat.com>
36268
36269 * NEWS: Add note about FIPS mode. Wording suggested by Roland
36270 McGrath.
36271
e7451425
AO
362722012-10-10 Alexandre Oliva <aoliva@redhat.com>
36273
36274 * crypt/crypt-entry.c: Include fips-private.h.
36275 (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
36276 * crypt/md5c-test.c (main): Tolerate disabled MD5.
36277 * sysdeps/unix/sysv/linux/fips-private.h: New file.
36278 * sysdeps/generic/fips-private.h: New file, dummy fallback.
36279
4ba74a35
AO
362802012-10-10 Alexandre Oliva <aoliva@redhat.com>
36281
36282 * crypt/crypt-private.h: Include stdbool.h.
36283 (_ufc_setup_salt_r): Return bool.
36284 * crypt/crypt-entry.c: Include errno.h.
36285 (__crypt_r): Return NULL with EINVAL for bad salt.
36286 * crypt/crypt_util.c (bad_for_salt): New.
36287 (_ufc_setup_salt_r): Check that salt is long enough and within
36288 the specified alphabet.
36289 * crypt/badsalttest.c: New file.
36290 * crypt/Makefile (tests): Add it.
36291 ($(objpfx)badsalttest): New.
36292
f96f1242
MK
362932012-10-09 Maxim Kuvyrkov <maxim@codesourcery.com>
36294
36295 * NEWS: Add entry for BZ #14602.
36296
0e8e0c1c
JM
362972012-10-09 Joseph Myers <joseph@codesourcery.com>
36298
36299 * math/gen-libm-test.pl (parse_args): Handle comparison macros as
36300 type-generic.
36301 * math/libm-test.inc: Update comment listing what functions and
36302 macros are tested.
36303 (isgreater_test): New function.
36304 (isgreaterequal_test): Likewise.
36305 (isless_test): Likewise.
36306 (islessequal_test): Likewise.
36307 (islessgreater_test): Likewise.
36308 (isunordered_test): Likewise.
36309 (main): Call the new functions.
36310
273edc5e
RM
363112012-10-09 Roland McGrath <roland@hack.frob.com>
36312
b8493de0
RM
36313 * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
36314 _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
36315 AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
36316 * sysdeps/i386/configure: Regenerated.
36317 * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
36318 * sysdeps/mach/configure: Regenerated.
36319 * sysdeps/mach/hurd/configure: Regenerated.
36320 * sysdeps/powerpc/configure: Regenerated.
36321 * sysdeps/powerpc/powerpc32/configure: Regenerated.
36322 * sysdeps/powerpc/powerpc64/configure: Regenerated.
36323 * sysdeps/s390/s390-32/configure: Regenerated.
36324 * sysdeps/s390/s390-64/configure: Regenerated.
36325 * sysdeps/sh/configure: Regenerated.
36326 * sysdeps/sparc/configure: Regenerated.
36327 * sysdeps/unix/sysv/linux/configure: Regenerated.
36328 * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
36329 * sysdeps/x86_64/configure: Regenerated.
36330
273edc5e
RM
36331 * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
36332 defined. Don't check if MAP is NULL.
36333
c8450f70
JM
363342012-10-09 Joseph Myers <joseph@codesourcery.com>
36335
36336 * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
36337 (_G_stat64): Likewise.
36338 * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
36339 (_G_stat64): Likewise.
36340 * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
36341 instead of struct _G_stat64.
36342 * libio/fileops.c (mmap_remap_check): Likewise.
36343 (decide_maybe_mmap): Likewise.
36344 (_IO_new_file_seekoff): Likewise.
36345 (_IO_file_stat): Likewise.
36346 * libio/libio.h (_IO_off64_t): Define to __off64_t, not
36347 _G_off64_t.
36348 * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
36349 instead of struct _G_stat64.
36350 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
36351
57e605ba
MK
363522012-10-08 Maxim Kuvyrkov <maxim@codesourcery.com>
36353
36354 [BZ #14602]
36355 * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36356 Replace with ...
36357 (CHECK_EOL): New macro.
36358 (two_way_short_needle): Check beginning of haystack for EOL. Use
36359 CHECK_EOL.
36360 * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36361 Replace with CHECK_EOL.
36362 * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
36363 Replace with CHECK_EOL.
36364
ef1bb361
JM
363652012-10-08 Joseph Myers <joseph@codesourcery.com>
36366
36367 * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
36368 type-generic.
36369 * math/libm-test.inc: Update comment listing what functions and
36370 macros are tested.
36371 (finite_test): New function.
36372 (isinf_test): Likewise.
36373 (isnan_test): Likewise.
36374 (fpclassify_test): Test subnormal input.
36375 (isfinite_test): Likewise.
36376 (isnormal_test): Likewise.
36377 (main): Call the new functions.
36378
55f11534
JN
363792012-10-08 Jonathan Nieder <jrnieder@gmail.com>
36380
36381 [BZ #14660]
36382 * Makerules (%.dynsym): Force C locale when running
36383 $(OBJDUMP) --dynamic-syms.
36384
1ab29350
AS
363852012-10-08 Andreas Schwab <schwab@linux-m68k.org>
36386
36387 * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
36388 <stdint.h>.
36389
f1ecb7ef
DM
363902012-10-06 David S. Miller <davem@davemloft.net>
36391
36392 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
36393 upper 32-bits of the length value in %o2 since we use branch-on-register
36394 tests which consider the entire 64-bit register.
36395
5d41d91a
L
363962012-10-06 H.J. Lu <hongjiu.lu@intel.com>
36397
36398 * string/test-strstr.c (check2): Add a test for page boundary.
36399
3baddb72
DM
364002012-10-05 David S. Miller <davem@davemloft.net>
36401
36402 * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
36403 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
36404 file.
36405 * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
36406 sysdep_routines.
36407 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
36408 * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
36409 and bzero when HWCAP_SPARC_CRYPTO is present.
36410
9cee5585
L
364112012-10-05 H.J. Lu <hongjiu.lu@intel.com>
36412
d7e0dab9
L
36413 [BZ #14602]
36414 * string/test-strstr.c (check2): New function.
36415 (test_main): Call check2.
36416
03759f47
L
36417 * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
36418 and bug-strchr1.
36419 * string/bug-strcasestr1.c (do_test): Moved to ...
36420 * string/test-strcasestr.c (check1): Here. New function.
36421 (do_one_test): Break out result checking code into ...
36422 (check_result): This. New function.
36423 (do_one_test): Call check_result.
36424 (test_main): Call check1.
36425 * string/bug-strchr1.c (do_test): Moved to ...
36426 * string/test-strchr.c (check1): Here. New function.
36427 (do_one_test): Break out result checking code into ...
36428 (check_result): This. New function.
36429 (do_one_test): Call check_result.
36430 (test_main): Call check1.
36431 * string/bug-strstr1.c (main): Moved to ...
046f153e 36432 * string/test-strstr.c (check1): Here. New function.
03759f47
L
36433 (do_one_test): Break out result checking code into ...
36434 (check_result): This. New function.
36435 (do_one_test): Call check_result.
36436 (test_main): Call check1.
36437 * string/bug-strcasestr1.c: Removed.
36438 * string/bug-strchr1.c: Likewise.
36439 * string/bug-strstr1.c: Likewise.
36440
53cea63e
L
36441 * elf/Makefile (dl-routines): Add hwcaps.
36442 * elf/dl-support.c (_dl_important_hwcaps): Removed.
36443 * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
36444 (_dl_important_hwcaps): Moved to ...
36445 * elf/dl-hwcaps.c: Here. New file.
36446 * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
36447
9cee5585 36448 [BZ #14557]
bb859b06
L
36449 * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
36450 if IS_IN_rtld isn't defined.
36451
9cee5585
L
36452 * elf/dl-support.c (_dl_sysinfo_map): New.
36453 Include "get-dynamic-info.h" and "setup-vdso.h".
36454 (_dl_non_dynamic_init): Call setup_vdso.
36455 * elf/dynamic-link.h: Don't include <assert.h>.
36456 (elf_get_dynamic_info): Moved to ...
36457 * elf/get-dynamic-info.h: Here. New file.
36458 * elf/dynamic-link.h: Include "get-dynamic-info.h".
36459 * elf/rtld.c (dl_main): Break out vDSO setup code into ...
36460 * elf/setup-vdso.h: Here. New file.
36461 * elf/rtld.c: Include "setup-vdso.h".
36462 (dl_main): Call setup_vdso.
36463
23c31b76
JM
364642012-10-05 Joseph Myers <joseph@codesourcery.com>
36465
28234b07
JM
36466 * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
36467 creal in comment listing functions tested. List finite, isinf,
36468 isnan, isless, islessequal, isgreater, isgreaterequal,
36469 islessgreater, isunordered, lgamma_r and pow10 as functions and
36470 macros not tested. Mention which functions not tested are aliases
36471 for other functions. Fix typo. Note that signs of NaNs are not
36472 tested.
36473
23c31b76
JM
36474 * scripts/config.guess: Update from config.git.
36475 * scripts/config.sub: Likewise.
36476
9043e228
RM
364772012-10-04 Roland McGrath <roland@hack.frob.com>
36478
36479 * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
36480 * misc/madvise.c (madvise): Renamed to __madvise.
36481 Make madvise a weak alias.
36482 * include/sys/mman.h: Declare __madvise.
36483 Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
36484 * sysdeps/unix/syscalls.list
36485 (madvise): Make __madvise the strong name, and madvise a weak alias.
36486 * sysdeps/unix/sysv/linux/syscalls.list
36487 (madvise, mmap): Remove redundant entries.
36488 * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
36489 * malloc/malloc.c (mtrim): Likewise.
36490 * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
36491
f57f8055
RM
364922012-10-03 Roland McGrath <roland@hack.frob.com>
36493
36494 * sysdeps/mach/hurd/dl-cache.c: File removed.
36495 * config.h.in (USE_LDCONFIG): New #undef.
36496 * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
36497 * configure: Regenerated.
36498 * elf/Makefile (dl-routines): Add dl-cache only under
36499 [$(use-ldconfig) = yes].
36500 * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
36501 cache on [USE_LDCONFIG].
36502 * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
36503 [USE_LDCONFIG].
36504 * elf/rtld.c (dl_main): Likewise.
36505
5bb0c10a
PT
365062012-10-03 Pino Toscano <toscano.pino@tiscali.it>
36507
36508 * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
36509 _SC_LEVEL4_CACHE_LINESIZE.
36510
010188c6
RM
365112012-10-03 Roland McGrath <roland@hack.frob.com>
36512
36513 * sysdeps/unix/bsd/confstr.h: File removed.
36514
b6c5ec07
AO
365152012-10-02 Alexandre Oliva <aoliva@redhat.com>
36516
36517 * scripts/check-local-headers.sh: Exclude sys/sdt.h and
36518 sys/sdt-config.h.
36519
408223d4
RM
365202012-10-02 Roland McGrath <roland@hack.frob.com>
36521
36522 * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
36523 Make 'mapoff' field ElfW(Off) rather than off_t.
36524
bb9510dc
DL
365252012-10-02 Dmitry V. Levin <ldv@altlinux.org>
36526
fc997c6e
DL
36527 * nscd/Makefile: Remove nscd-cflags and all its users.
36528 (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
36529 (CFLAGS-nonlib): Add compiler flags for nscd modules.
36530
bb9510dc
DL
36531 [BZ #10631]
36532 * malloc.c (malloc_printerr): Clarify error message.
36533
05699367
L
365342012-10-02 H.J. Lu <hongjiu.lu@intel.com>
36535
36536 [BZ #14648]
36537 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
36538 Set bit_FMA_Usable if FMA is supported.
36539 * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
36540 macro.
36541 (bit_FMA4_Usable): Updated.
36542 (index_FMA_Usable): New macro.
36543 (CPUID_FMA): Likewise
36544 (HAS_FMA): Defined with bit_FMA_Usable.
36545
51367701
RM
365462012-10-01 Roland McGrath <roland@hack.frob.com>
36547
36548 * bits/types.h (__swblk_t): Type removed.
36549 * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
36550 * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
36551 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
36552 (__SWBLK_T_TYPE): Likewise.
36553 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36554 (__SWBLK_T_TYPE): Likewise.
36555 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36556 (__SWBLK_T_TYPE): Likewise.
36557 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
36558 (__SWBLK_T_TYPE): Likewise.
36559
4d57bf63 365602012-10-01 Patsy Franklin <pfrankli@redhat.com>
1e9d84cd 36561 Honza Horak <hhorak@redhat.com>
4d57bf63
JL
36562
36563 * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
36564 (xdr_mapname): Use YPMAXMAP as maxsize.
36565 (xdr_peername): Use YPMAXPEER as maxsize.
36566 (xdr_keydat): Use YPAXRECORD as maxsize.
36567 (xdr_valdat): Use YPMAXRECORD as maxsize.
36568
93c65d43
RM
365692012-10-01 Roland McGrath <roland@hack.frob.com>
36570
497a03d6
RM
36571 * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
36572
93c65d43
RM
36573 * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
36574 * csu/init-first.c: ... here.
36575 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
36576 * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
36577 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
36578 * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
36579 * sysdeps/i386/init-first.c: File removed.
36580 * sysdeps/sh/init-first.c: File removed.
36581
bec749fd
JM
365822012-10-01 Joseph Myers <joseph@codesourcery.com>
36583
36584 [BZ #14645]
36585 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
36586 if x * y might underflow to zero and z is zero.
36587 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
36588 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
36589 * math/libm-test.inc (min_subnorm_value): New variable.
36590 (fma_test): Add more tests.
36591 (fma_test_towardzero): Likewise.
36592 (fma_test_downward): Likewise
36593 (fma_test_upward): Likewise.
36594 (initialize): Set min_subnorm_value.
36595
8ec5b013
JM
365962012-09-29 Joseph Myers <joseph@codesourcery.com>
36597
36598 [BZ #14638]
36599 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
36600 0 + 0.
36601 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
36602 mode for addition resulting in exact zero.
36603 * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
36604 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
36605 exact 0 + 0.
36606 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
36607 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
36608 * math/libm-test.inc (fma_test): Add more tests.
36609 (fma_test_towardzero): New function.
36610 (fma_test_downward): Likewise.
36611 (fma_test_upward): Likewise.
36612 (main): Call the new functions.
36613
b1fa802e
DM
366142012-09-28 David S. Miller <davem@davemloft.net>
36615
36616 * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
36617
d3b9fd9e
RM
366182012-09-28 Roland McGrath <roland@hack.frob.com>
36619
ea4d37b3
RM
36620 * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
36621 instead of SIGALRM.
36622
ac51c949
RM
36623 * sysdeps/gnu/_G_config.h: Moved to ...
36624 * sysdeps/unix/sysv/linux/_G_config.h: ... here.
36625 * sysdeps/mach/hurd/_G_config.h: Moved to ...
36626 * sysdeps/generic/_G_config.h: ... here.
36627
28c195f7
RM
36628 * io/open.c (__open): Renamed to __libc_open. Make __open an alias.
36629
848917f9
RM
36630 * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
36631
6bacf05b
RM
36632 * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
36633 Conditionalize target on [libnss_test1.so-version].
36634
91363dbb
RM
36635 * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
36636
cc87f7d8
RM
36637 * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
36638 (elfobjdir): Move out of conditionals.
36639
b1c608fe
RM
36640 * nss/nsswitch.c (nss_new_service): Conditionalize definition and
36641 declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
36642 (__nss_lookup_function): Conditionalize label remove_from_tree on
36643 [!DO_STATIC_NSS || SHARED], matching its only use.
d3b9fd9e 36644
1d9a6d96
DM
366452012-09-28 David S. Miller <davem@davemloft.net>
36646
36647 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
36648 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
36649 file.
36650 * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
36651 sysdep_routines.
36652 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
36653 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
36654 when HWCAP_SPARC_CRYPTO is present.
36655
72581615
PT
366562012-09-28 Pino Toscano <toscano.pino@tiscali.it>
36657
36658 * io/tst-mknodat.c: Create a FIFO instead of a socket.
36659
715a900c
JL
366602012-09-28 Andreas Schwab <schwab@linux-m68k.org>
36661
36662 [BZ #6530]
36663 * stdio-common/vfprintf.c (process_string_arg): Revert
36664 2000-07-22 change.
36665
366662011-09-28 Jonathan Nieder <jrnieder@gmail.com>
36667
36668 * stdio-common/Makefile (tst-sprintf-ENV): Set environment
36669 for testcase.
36670 * stdio-common/tst-sprintf.c: Include <locale.h>
36671 (main): Test sprintf's handling of incomplete multibyte
36672 characters.
36673
9bac1d86
L
366742012-09-28 H.J. Lu <hongjiu.lu@intel.com>
36675
36676 * elf/dl-runtime.c (VERSYMIDX): Removed.
36677 * elf/dl-version.c (VERSYMIDX): Likewise.
36678 * elf/do-rel.h (VERSYMIDX): Likewise.
36679 (VALIDX): Likewise.
36680 * elf/dynamic-link.h (VERSYMIDX): Likewise.
36681 * elf/rtld.c (VALIDX): Likewise.
36682 (ADDRIDX): Likewise.
9bac1d86
L
36683 * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
36684 * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
36685 * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
9c464f9c
L
36686 * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
36687 (VALIDX): Likewise.
36688 (ADDRIDX): Likewise.
9bac1d86 36689
b31606c0
PT
366902012-09-28 Pino Toscano <toscano.pino@tiscali.it>
36691
36692 * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
36693
11541177
JL
366942012-09-28 Dmitry V. Levin <ldv@altlinux.org>
36695
36696 [BZ #11438]
36697 * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
36698 to global scope.
36699 * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
36700 addresses are in the same scope as 192.0.2/24.
36701 * posix/gai.conf: Document new scope table defaults.
36702
adb26fae
SP
367032012-09-28 Siddhesh Poyarekar <siddhesh@redhat.com>
36704
36705 [BZ #5298]
36706 * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
36707 for ftell. Compute offsets from write pointers instead.
36708 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
36709
4573c6b0
SP
367102012-09-28 Siddhesh Poyarekar <siddhesh@redhat.com>
36711
36712 [BZ #14543]
36713 * libio/Makefile (tests): New test case tst-fseek.
36714 * libio/tst-fseek.c: New test case to verify that fseek/ftell
36715 combination works in wide mode.
36716 * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
36717 state when the external buffer state changes.
36718
aa9bbfe6
DM
367192012-09-27 David S. Miller <davem@davemloft.net>
36720
36721 [BZ #14376]
36722 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
36723 pass reloc->r_addend in as the 'high' argument to
36724 sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
36725
784421e7
DM
36726 * sysdeps/sparc/fpu/libm-test-ulps: Update.
36727
c39bc8b8
PT
367282012-09-28 Pino Toscano <toscano.pino@tiscali.it>
36729
36730 * rt/tst-aio2.c: Include <pthread.h>.
36731 * rt/tst-aio3.c: Likewise.
36732
1ccc2399
SE
367332012-09-27 Steve Ellcey <sellcey@mips.com>
36734
36735 * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
36736
31ed4153
L
367372012-09-27 H.J. Lu <hongjiu.lu@intel.com>
36738
25f5f885
L
36739 * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
36740 contents on [SHARED].
31ed4153 36741
b7bfe116
MP
367422012-09-26 Marek Polacek <polacek@redhat.com>
36743
36744 [BZ #14530]
36745 [BZ #13741]
36746 * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
36747 for C++ and GCC <4.3 as well as for non GCC compilers.
36748
43c4edba
MT
367492012-09-26 Markus Trippelsdorf <markus@trippelsdorf.de>
36750
36751 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36752
6a1bf82f
RM
367532012-09-25 Roland McGrath <roland@hack.frob.com>
36754
36755 * Makefile.in (all, install): Declare with .PHONY.
36756 Reported by Michael Hope <michael.hope@linaro.org>.
36757
8ad11b9a
TMQMF
367582012-09-25 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
36759
36760 * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
36761 * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
36762 system header.
36763 * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
36764 Likewise.
36765 (sydep_routines): Add the new and the internal functions.
36766 * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
36767 * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
36768 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
36769 (GLIBC_2.17): Add the new function.
36770 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
36771 (GLIBC_2.17): Likewise.
36772 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
36773 (GLIBC_2.17): Likewise.
36774 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
36775 (GLIBC_2.17): Likewise.
36776 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
36777
7e2fca8d
AM
367782012-09-25 Alan Modra <amodra@gmail.com>
36779
36780 * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
36781 Add release barrier before setting once_control to say
36782 initialisation is done. Add hints on lwarx. Use macro in
36783 place of isync.
36784 (clear_once_control): Add release barrier.
36785
b87c4b24
JM
367862012-09-25 Joseph Myers <joseph@codesourcery.com>
36787
d032e0d2
JM
36788 [BZ #13629]
36789 * math/s_clog.c (__clog): Handle more values close to |z| = 1
36790 specially.
36791 * math/s_clog10.c (__clog10): Likewise.
36792 * math/s_clog10f.c (__clog10f): Likewise.
36793 * math/s_clog10l.c (__clog10l): Likewise.
36794 * math/s_clogf.c (__clogf): Likewise.
36795 * math/s_clogl.c (__clogl): Likewise.
36796 * math/Makefile (libm-calls): Add x2y2m1.
36797 * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
36798 (__x2y2m1): Likewise.
36799 (__x2y2m1l): Likewise.
36800 * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
36801 * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
36802 * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
36803 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
36804 * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
36805 * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
36806 * math/libm-test.inc (clog_test, clog10_test): Add more tests.
36807 * sysdeps/i386/fpu/libm-test-ulps: Update.
36808 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36809
b87c4b24
JM
36810 [BZ #14621]
36811 * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
36812 int as type of variable DEPTH.
36813 (glob): Use size_t instead of int as type of variables NEWCOUNT
36814 and OLD_PATHC.
36815
6d3bf199
LD
368162012-09-25 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
36817
22bf5c17
LD
36818 * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
36819 Add s_sincosf-sse2.
36820 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
36821 * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
36822 * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
36823 macros for using routine as __sincosf_ia32.
36824 Use macro for function declaration and weak_alias.
36825 * sysdeps/i386/fpu/libm-test-ulps: Update.
36826
36827 * sysdeps/x86_64/fpu/s_sincosf.S: New file.
36828 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36829
36830 * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
6d3bf199
LD
36831 subnormal argument.
36832 * math/s_cexpf.c (__cexpf): Likewise.
36833 * math/s_csinf.c (__csinf): Likewise.
36834 * math/s_csinhf.c (__csinhf): Likewise.
36835 * math/s_ctanf.c (__ctanf): Likewise.
36836 * math/s_ctanhf.c (__ctanhf): Likewise.
36837 * math/s_ccosh.c (__ccoshf): Likewise.
36838 * math/s_cexp.c (__cexpl): Likewise.
36839 * math/s_csin.c (__csin): Likewise.
36840 * math/s_csinh.c (__csinh): Likewise.
36841 * math/s_ctan.c (__ctan): Likewise.
36842 * math/s_ctanh.c (ctanh): Likewise.
36843 * math/s_ccoshl.c (__ccoshl): Likewise.
36844 * math/s_cexpl.c (__cexpl): Likewise.
36845 * math/s_csinl.c (__csinl): Likewise.
36846 * math/s_csinhl.c (__csinhl): Likewise.
36847 * math/s_ctanl.c (__ctanl): Likewise.
36848 * math/s_ctanhl.c (__ctanhl): Likewise.
36849
203e5603
JM
368502012-09-25 Joseph Myers <joseph@codesourcery.com>
36851
36852 * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
36853 (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
36854 (_IO_off_t): Define to __off_t, not _G_off_t.
36855 (_IO_pid_t): Define to __pid_t, not _G_pid_t.
36856 (_IO_uid_t): Define to __uid_t, not _G_uid_t.
36857 (_IO_wint_t): Define to wint_t, not _G_wint_t.
36858 * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
36859 type of __dummy and __dummy2 fields.
36860 * sysdeps/generic/_G_config.h (_G_size_t): Remove.
36861 (_G_ssize_t): Likewise.
36862 (_G_off_t): Likewise.
36863 (_G_pid_t): Likewise.
36864 (_G_uid_t): Likewise.
36865 (_G_wchar_t): Likewise.
36866 (_G_wint_t): Likewise.
36867 * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
36868 (_G_ssize_t): Likewise.
36869 (_G_off_t): Likewise.
36870 (_G_pid_t): Likewise.
36871 (_G_uid_t): Likewise.
36872 (_G_wchar_t): Likewise.
36873 (_G_wint_t): Likewise.
36874 * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
36875 (_G_ssize_t): Likewise.
36876 (_G_off_t): Likewise.
36877 (_G_pid_t): Likewise.
36878 (_G_uid_t): Likewise.
36879 (_G_wchar_t): Likewise.
36880 (_G_wint_t): Likewise.
36881
9fab36eb
SP
368822012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
36883
36884 * malloc/arena.c: Include malloc-sysdep.h.
36885 (shrink_heap): Use check_may_shrink_heap to decide if madvise
36886 is sufficient to shrink the heap or an unmap is needed.
36887 * sysdeps/generic/malloc-sysdep.h: New file. Define
36888 new function check_may_shrink_heap.
36889 * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file. Define
36890 new function check_may_shrink_heap.
36891
2b4f00d1
SP
368922012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
36893
36894 * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
36895 comments.
36896
9a9028b1
DL
368972012-09-24 Dmitry V. Levin <ldv@altlinux.org>
36898
57c69bef
DL
36899 * catgets/test-gencat.sh: Add "set -e".
36900 * elf/tst-pathopt.sh: Likewise.
36901 * grp/tst_fgetgrent.sh: Likewise.
36902 * iconvdata/run-iconv-test.sh: Likewise.
36903 * intl/tst-gettext.sh: Likewise.
36904 * intl/tst-gettext2.sh: Likewise.
36905 * intl/tst-gettext4.sh: Likewise.
36906 * intl/tst-gettext6.sh: Likewise.
36907 * intl/tst-translit.sh: Likewise.
36908 * io/ftwtest-sh: Likewise.
36909 * libio/test-freopen.sh: Likewise.
36910 * malloc/tst-mtrace.sh: Likewise.
36911 * posix/globtest.sh: Likewise.
36912 * posix/tst-getconf.sh: Likewise.
36913 * posix/wordexp-tst.sh: Likewise.
36914 * stdio-common/tst-printf.sh: Likewise.
36915 * stdio-common/tst-unbputc.sh: Likewise.
36916 * stdlib/tst-fmtmsg.sh: Likewise.
36917 * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
36918 * catgets/Makefile: Do not specify -e option when running
36919 testsuite shell scripts.
36920 * elf/Makefile: Likewise.
36921 * grp/Makefile: Likewise.
36922 * iconvdata/Makefile: Likewise.
36923 * intl/Makefile: Likewise.
36924 * io/Makefile: Likewise.
36925 * libio/Makefile: Likewise.
36926 * malloc/Makefile: Likewise.
36927 * posix/Makefile: Likewise.
36928 * stdio-common/Makefile: Likewise.
36929 * stdlib/Makefile: Likewise.
36930 * sysdeps/x86_64/Makefile: Likewise.
36931
9a9028b1
DL
36932 * io/ftwtest-sh: Add copyright header.
36933 * posix/globtest.sh: Likewise.
36934 * posix/tst-getconf.sh: Likewise.
36935 * posix/wordexp-tst.sh: Likewise.
36936 * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
36937
ced6f16e
L
369382012-09-24 H.J. Lu <hongjiu.lu@intel.com>
36939
94b32c39
L
36940 [BZ #13679]
36941 * Makeconfig (+link): Defined as $(+link-static) if
36942 $(build-shared) isn't yes.
36943 (link-tests): Defined as $(+link-static-tests) if $(build-shared)
36944 isn't yes.
36945 (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
36946
189e935b
L
36947 * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
36948
ced6f16e
L
36949 [BZ #14562]
36950 * malloc/arena.c (heap_trim): Properly get fencepost and adjust
36951 new chunk size with MALLOC_ALIGN_MASK.
36952
a9f8e53a
JM
369532012-09-24 Joseph Myers <joseph@codesourcery.com>
36954
36955 [BZ #5044]
36956 * stdio-common/printf_fphex.c: Include <stdbool.h> and
36957 <rounding-mode.h>.
36958 (__printf_fphex): Determine rounding using get_rounding_mode and
36959 round_away.
36960 * stdio-common/tst-printf-round.c (struct hex_test): New
36961 structure.
36962 (hex_tests): New variable.
36963 (test_hex_in_one_mode): New function.
36964 (do_test): Also run tests for hex float output.
36965
43153109
JM
369662012-09-21 Joseph Myers <joseph@codesourcery.com>
36967
36968 * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
36969 [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
36970 * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
36971 * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
36972 [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
36973 * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
36974 * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
36975 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
36976
8a26625d
JM
369772012-09-20 Joseph Myers <joseph@codesourcery.com>
36978
36979 * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
36980 * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
36981 * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
36982 * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
36983
f3fd569c
DL
369842012-09-19 Dmitry V. Levin <ldv@altlinux.org>
36985
36986 [BZ #14579]
36987 * elf/rtld.c (dl_main): Limit the check for self loading to normal
36988 mode only.
36989 * elf/tst-rtld-load-self.sh: New test.
36990 * elf/Makefile: Run it.
36991
63bbedd4
JM
369922012-09-18 Joseph Myers <joseph@codesourcery.com>
36993
36994 * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
36995 (tst-writev-ENV): Remove.
36996 * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
36997
626f8b6a
CM
369982012-09-17 Chris Metcalf <cmetcalf@tilera.com>
36999
37000 * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
37001
b7aaa4d6
JM
370022012-09-17 Joseph Myers <joseph@codesourcery.com>
37003
37004 * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
37005 unconditional.
37006 * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
37007 Likewise.
37008 * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
37009 * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
37010 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
37011 Likewise.
37012
65513990
L
370132012-09-14 H.J. Lu <hongjiu.lu@intel.com>
37014
37015 [BZ #14587]
37016 * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
37017 * config.make.in (have-cpp-asm-debuginfo): Removed.
37018 * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
37019 * configure: Regenerated.
37020
784761be
JM
370212012-09-14 Joseph Myers <joseph@codesourcery.com>
37022
37023 [BZ #5044]
37024 * stdio-common/printf_fp.c: Include <stdbool.h> and
37025 <rounding-mode.h>.
37026 (___printf_fp): Determine rounding using get_rounding_mode and
37027 round_away.
37028 * stdio-common/tst-printf-round.c: New file.
37029 * stdio-common/Makefile (tests): Add tst-printf-round.
37030 (link-libm): New variable.
37031 ($(objpfx)tst-printf-round): Depend in $(link-libm).
37032
9503345f
L
370332012-09-13 H.J. Lu <hongjiu.lu@intel.com>
37034
37035 [BZ #14576]
37036 * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
37037 * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
37038 Likewise.
37039 * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
37040 Likewise.
37041
ad35fc00
JM
370422012-09-13 Joseph Myers <joseph@codesourcery.com>
37043
37044 * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
37045 * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37046 * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37047 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
37048
6c9b0f68
JM
370492012-09-12 Joseph Myers <joseph@codesourcery.com>
37050
37051 [BZ #14518]
37052 * include/rounding-mode.h: New file.
37053 * sysdeps/generic/get-rounding-mode.h: Likewise.
37054 * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
37055 * stdlib/strtod_l.c: Include <rounding-mode.h>.
37056 (MAX_VALUE): New macro.
37057 (MIN_VALUE): Likewise.
37058 (overflow_value): New function.
37059 (underflow_value): Likewise.
37060 (round_and_return): Use overflow_value and underflow_value to
37061 determine return values in overflow and underflow cases. Use
37062 round_away to determine rounding depending on rounding mode.
37063 (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
37064 determine return values in overflow and underflow cases.
37065 * stdlib/tst-strtod-round.c: Include <fenv.h>.
37066 (struct test_results): New structure.
37067 (struct test): Use struct test_results to store expected results
37068 for all rounding modes.
37069 (TEST): Include expected results for all rounding modes.
37070 (test_in_one_mode): New function.
37071 (do_test): Use test_in_one_mode to compute and check results.
37072 Check results for all rounding modes.
37073 * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
37074 $(link-libm).
37075
19fcedd5
AM
370762012-12-09 Allan McRae <allan@archlinux.org>
37077
1e9d84cd 37078 * sysdeps/i386/fpu/libm-test-ulps: Update
19fcedd5 37079
8bbfd2f1
JM
370802012-09-11 Joseph Myers <joseph@codesourcery.com>
37081
37082 * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
37083 (_G_int32_t): Likewise.
37084 (_G_uint16_t): Likewise.
37085 (_G_uint32_t): Likewise.
37086 (_G_HAVE_BOOL): Likewise.
37087 (_G_HAVE_ATEXIT): Likewise.
37088 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37089 (_G_HAVE_IO_FILE_OPEN): Likewise.
37090 * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
37091 (_G_int32_t): Likewise.
37092 (_G_uint16_t): Likewise.
37093 (_G_uint32_t): Likewise.
37094 (_G_HAVE_BOOL): Likewise.
37095 (_G_HAVE_ATEXIT): Likewise.
37096 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37097 (_G_HAVE_IO_FILE_OPEN): Likewise.
37098 * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
37099 (_G_int32_t): Likewise.
37100 (_G_uint16_t): Likewise.
37101 (_G_uint32_t): Likewise.
37102 (_G_HAVE_BOOL): Likewise.
37103 (_G_HAVE_ATEXIT): Likewise.
37104 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
37105 (_G_HAVE_IO_FILE_OPEN): Likewise.
37106
b1dc5912
L
371072012-09-11 H.J. Lu <hongjiu.lu@intel.com>
37108
37109 * csu/libc-tls.c: Update copyright years.
37110
0e886ef9
JM
371112012-09-10 Joseph Myers <joseph@codesourcery.com>
37112
28361c5e
JM
37113 * libioP.h [_G_USING_THUNKS]: Make code unconditional.
37114 [!_G_USING_THUNKS]: Remove conditional code.
37115 * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
37116 * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
37117
0e886ef9
JM
37118 * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
37119 [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
37120 * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37121 (_G_VTABLE_LABEL_PREFIX): Likewise.
37122 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37123 * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37124 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37125 (_G_VTABLE_LABEL_PREFIX): Likewise.
37126 (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
37127 * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
37128 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
37129 (_G_VTABLE_LABEL_PREFIX): Likewise.
37130 (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
37131
bcba7aa2
L
371322012-09-10 H.J. Lu <hongjiu.lu@intel.com>
37133
37134 * libio/Makefile: Include ../Makeconfig before tests.
37135 (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
37136 only if $(build-shared) is yes.
37137
06585ee8
L
37138 * iconv/gconv_db.c: Update copyright years.
37139
80ccd52c
LD
371402012-09-10 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
37141
37142 * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
37143 unwind info if defined PIC. Fix special cases description.
37144 * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
37145
37146 * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
37147 DP_HI_MASK entry.
37148 * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
37149
691bc9c1
L
371502012-09-07 H.J. Lu <hongjiu.lu@intel.com>
37151
3d9b46b3
L
37152 * scripts/check-local-headers.sh: Add "shopt -s nullglob".
37153
de2139a9
L
37154 * iconv/gconv_db.c (free_derivation): Check if deriv->steps
37155 is NULL.
37156
5ca78dd0
L
37157 * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
37158 (LDLIBS-tst-chk4): This.
37159 (LDFLAGS-tst-chk5): Renamed to ...
37160 (LDLIBS-tst-chk5): This.
37161 (LDFLAGS-tst-chk6): Renamed to ...
37162 (LDLIBS-tst-chk6): This.
37163 (LDFLAGS-tst-lfschk4): Renamed to ...
37164 (LDLIBS-tst-lfschk4): This.
37165 (LDFLAGS-tst-lfschk5): Renamed to ...
37166 (LDLIBS-tst-lfschk5): This.
37167 (LDFLAGS-tst-lfschk6): Renamed to ...
37168 (LDLIBS-tst-lfschk6): This.
37169
691bc9c1
L
37170 * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
37171 on $(common-objpfx)soversions.mk.
37172
65cafb1c
JM
371732012-09-07 Joseph Myers <joseph@codesourcery.com>
37174
37175 [BZ #10014]
37176 * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
37177 example host name.
37178
c78ab094
SP
371792012-09-07 Siddhesh Poyarekar <siddhesh@redhat.com>
37180
37181 * malloc/arena.c (arena_get_retry): New function that gets
37182 another arena for the caller to try its request on.
37183 * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
37184 current arena cannot fulfill the request.
37185 (__libc_memalign): Likewise.
37186 (__libc_memalign): Likewise.
37187 (__libc_pvalloc): Likewise.
37188 (__libc_calloc): Likewise.
37189
01f49f59
JT
371902012-09-05 John Tobey <john.tobey@gmail.com>
37191
37192 [BZ #13542]
37193 * manual/arith.texi (Operations on Complex): Fix description
37194 of carg branch cut.
37195
4c23fed5
JM
371962012-09-06 Joseph Myers <joseph@codesourcery.com>
37197
1d3c8572
JM
37198 [BZ #10014]
37199 * manual/socket.texi (Host Addresses): Use www.gnu.org as example
37200 host name.
37201
4c23fed5
JM
37202 [BZ #10038]
37203 * manual/memory.texi (Memory): Make order of menu items match
37204 order of sections.
37205
04570aaa
L
372062012-09-06 H.J. Lu <hongjiu.lu@intel.com>
37207
37208 * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
37209 (_dl_initial_dtv): New. Defined if SHARED isn't defined.
37210 (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
37211
b80af2f4
L
372122012-09-06 H.J. Lu <hongjiu.lu@intel.com>
37213
37214 * csu/libc-tls.c (static_dtv): Renamed to ...
37215 (_dl_static_dtv): This. Make it global.
37216 (_dl_initial_dtv): Removed.
37217 (__libc_setup_tls): Updated.
37218 * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
37219 (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
37220 DL_INITIAL_DTV.
37221
2abe9f15
PM
372222012-09-06 Petr Machata <pmachata@redhat.com>
37223
37224 * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
37225 (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
37226 (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
37227 (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
37228
0948c3af
L
372292012-09-06 H.J. Lu <hongjiu.lu@intel.com>
37230
37231 [BZ #14545]
37232 * csu/libc-tls.c (_dl_initial_dtv): New variable.
37233 * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
37234 freeing dtv[-1].
37235
a5055ad1
L
372362012-09-06 H.J. Lu <hongjiu.lu@intel.com>
37237
37238 [BZ #14544]
37239 * Makeconfig (link-static-before-libc): Replace $(+prector)
37240 with $(+prectorT).
37241 (link-static-after-libc): Replace $(+postctor) with
37242 $(+postctorT).
37243 (link-bounded): Replace $(+prector)/$(+postctor) with
37244 $(+prectorT)/$(+postctorT).
37245 (+prectorT): New macro.
37246 (+postctorT): Likewise.
37247
ed8c2ecd
JM
372482012-09-06 Joseph Myers <joseph@codesourcery.com>
37249
37250 * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
37251 (round_str): Handle values above the maximum for IBM long double
37252 as inexact.
37253 * stdlib/tst-strtod-round.c (tests): Regenerated.
37254
14c996c8
AK
372552012-09-06 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
37256
37257 * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
37258 assembler flag.
37259 * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
37260 zarch_nohighgprs around the zarch optimized routines.
37261 * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
37262 * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
37263 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
37264 for zarch.
37265
430d6ce6
DM
372662012-09-05 David S. Miller <davem@davemloft.net>
37267
37268 * sysdeps/sparc/fpu/libm-test-ulps: Update.
37269
57f41c40
AS
37270 * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
37271 (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
ff04dda4
DM
37272 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
37273 * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
37274 entries.
37275
24d4e01b
AO
372762012-09-05 Alexandre Oliva <aoliva@redhat.com>
37277
37278 * malloc/arena.c: Fold copyright years.
37279 * malloc/mcheck.c, malloc/memusage.c: Likewise.
37280
61d58174
AO
372812012-09-05 Alexandre Oliva <aoliva@redhat.com>
37282
37283 * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
37284
20196a5e
AO
372852012-09-05 Alexandre Oliva <aoliva@redhat.com>
37286
37287 * manual/contrib.texi (Contributors): Fix typo. Complete entry.
37288
5c447383
AO
372892012-09-05 Alexandre Oliva <aoliva@redhat.com>
37290
37291 * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
37292 change internal state upon failure.
37293
fad64255
AO
372942012-09-05 Alexandre Oliva <aoliva@redhat.com>
37295
37296 * malloc/mcheck.c (mcheck_check_all): Fix typo.
37297 * malloc/memusage.c (mmap): Likewise.
37298 (mmap64, mremap): Likewise. Adjust name in comment.
37299
1ffb8c90
SP
373002012-09-05 Siddhesh Poyarekar <siddhesh@redhat.com>
37301
37302 * libio/fileops.c: Fix typos in comments.
37303 * libio/oldfileops.c: Likewise.
37304 * libio/wfileops.c: Likewise.
37305
6ef9cc37
SP
373062012-09-05 Siddhesh Poyarekar <siddhesh@redhat.com>
37307
37308 [BZ #1349]
37309 * malloc/Makefile (tests): Add tst-malloc-usable test case.
37310 (tst-malloc-usable-ENV): Set environment for test case.
37311 * malloc/hooks.c (malloc_check_get_size): New function to get
37312 requested size.
37313 * malloc/malloc.c (musable): Use malloc_check_get_size.
37314 * malloc/tst-malloc-usable.c: New test case.
37315
4d038ae3
AS
373162012-09-05 Andreas Schwab <schwab@linux-m68k.org>
37317
37318 * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
37319
c4e85184
AM
373202012-09-05 Allan McRae <allan@archlinux.org>
37321
b9dafc56 37322 [BZ #13966]
c4e85184
AM
37323 * configure.in (CXX_SYSINCLUDES): Use compiler output to
37324 determine header location.
37325 * configure: Regenerated.
37326
e1343020
AS
373272012-09-05 Andreas Schwab <schwab@linux-m68k.org>
37328
37329 * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
37330 float format.
37331 * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
a0070b7e
AS
37332 LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
37333 format.
e1343020
AS
37334 (test): Regenerate.
37335
0a9f1987
DM
373362012-09-04 David S. Miller <davem@davemloft.net>
37337
37338 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
37339 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
37340 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
37341
29237804
FW
373422012-09-04 Florian Weimer <fweimer@redhat.com>
37343
37344 * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
37345 failures.
37346
edb3cb88
FW
37347 * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
37348
60160d83
JM
373492012-09-04 Joseph Myers <joseph@codesourcery.com>
37350
37351 [BZ #9914]
37352 * libio/iogetdelim.c: Include <limits.h>.
37353 (_IO_getdelim): Avoid integer overflow in testing whether cur_len
37354 + len + 1 would overflow.
37355
bcd6c8dc
AJ
373562012-09-03 Andreas Jaeger <aj@suse.de>
37357
37358 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37359 * sysdeps/i386/fpu/libm-test-ulps: Update.
37360
4ffffbd2
LD
373612012-09-03 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
37362
37363 * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
37364 Add s_sinf-sse2, s_conf-sse2.
37365
37366 * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
37367 * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
37368 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
37369 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
37370
37371 * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
37372 for using routine as __sinf_ia32.
37373 Use macro for function declaration and weak_alias.
37374 * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
37375 for using routine as __cosf_ia32.
37376 Use macro for function declaration and weak_alias.
37377
37378 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
37379 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
37380
37381 * sysdeps/x86_64/fpu/s_sinf.S: New file.
37382 * sysdeps/x86_64/fpu/s_cosf.S: New file.
37383 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37384
37385 * math/libm-test.inc (cos_test): Add more test cases.
37386 (sin_test): Likewise.
37387 (sincos_test): Likewise.
37388
511fa286
AK
373892012-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
37390
37391 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
37392 (IFUNC_RESOLVE): Make pointers to the specialized implementations
37393 hidden.
37394 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
37395
5f30cfec
L
373962012-09-02 H.J. Lu <hongjiu.lu@intel.com>
37397
37398 [BZ #14538]
37399 * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
37400 first element of the GOT.
37401 (elf_machine_load_address): Return the difference between
37402 the runtime address of _DYNAMIC and elf_machine_dynamic ().
37403
0786794f
AM
374042012-09-01 Allan McRae <allan@archlinux.org>
37405
5f30cfec
L
37406 [BZ #13412]
37407 * configure.in (AWK): Require gawk version 3.0 or later.
37408 * configure: Regenerated.
0786794f 37409
26889eac
JM
374102012-09-01 Joseph Myers <joseph@codesourcery.com>
37411
37412 * sysdeps/unix/sysv/linux/kernel-features.h
37413 (__ASSUME_POSIX_CPU_TIMERS): Remove.
37414 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
37415 [__NR_clock_getres]: Make code unconditional.
37416 [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
37417 (clock_getcpuclockid): Remove code left unreachable by removal of
37418 conditionals.
37419 * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
37420 code unconditional.
37421 [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
37422 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37423 * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
37424 Make code unconditional.
37425 [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
37426 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37427 * sysdeps/unix/sysv/linux/clock_settime.c
37428 [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
37429 conditional code.
37430 [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
37431 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
37432
d22e28b0
L
374332012-08-29 H.J. Lu <hongjiu.lu@intel.com>
37434
37435 [BZ #14476]
37436 * Makefile (install): Also pass LD_SO=$(ld.so-version) to
37437 scripts/test-installation.pl.
37438
37439 * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
37440 and $ld_so_version if it is set.
37441
050af9c4
SP
374422012-08-29 Siddhesh Poyarekar <siddhesh@redhat.com>
37443
37444 [BZ #14516]
37445 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
37446 failure if reading from procfs failed.
37447 * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
37448
ad845c0b
JM
374492012-08-27 Joseph Myers <joseph@codesourcery.com>
37450
37451 * sysdeps/unix/sysv/linux/kernel-features.h
37452 (__ASSUME_STAT64_SYSCALL): Remove all definitions.
37453 * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
37454 Remove conditional code.
37455 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37456 * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
37457 Remove conditional code.
37458 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37459 * sysdeps/unix/sysv/linux/i386/fxstat.c
37460 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37461 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37462 * sysdeps/unix/sysv/linux/i386/fxstatat.c
37463 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37464 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37465 * sysdeps/unix/sysv/linux/i386/lxstat.c
37466 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
37467 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37468 * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
37469 Remove conditional code.
37470 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37471 * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
37472 Remove conditional code.
37473 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37474 * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
37475 <kernel-features.h>.
37476 [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
37477 Remove.
37478 * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
37479 Remove conditional code.
37480 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
37481 * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
37482 Remove conditional.
37483
5dbf56af
MF
374842012-08-27 Mike Frysinger <vapier@gentoo.org>
37485
37486 [BZ #5400]
37487 * NEWS: Add fixed bug number.
37488
d6e70f43
JM
374892012-08-27 Joseph Myers <joseph@codesourcery.com>
37490
7efb4737
JM
37491 [BZ #14519]
37492 * stdlib/strtod_l.c (round_and_return): Return -0.0 for
37493 underflowing exponent in case of negative sign.
37494 * stdlib/tst-strtod-round-data: Add more tests.
37495 * stdlib/tst-strtod-round.c (tests): Regenerated.
37496
af92131a
JM
37497 [BZ #3479]
37498 * stdlib/strtod_l.c (NDIG): Remove.
37499 (HEXNDIG): Likewise.
37500 (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
37501 smallest representable value.
37502 (____STRTOF_INTERNAL): Use all fractional decimal digits that may
37503 lie within an exact representation of 1/2 ulp of the result.
37504 * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
37505 unconditionally.
37506 (TENS_P9_IDX): Define unconditionally.
37507 (TENS_P9_SIZE): Likewise.
37508 (TENS_P10_IDX): Likewise.
37509 (TENS_P10_SIZE): Likewise.
37510 [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
37511 to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
37512 [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
37513 entries for 10^2^13 and 10^2^14.
37514 [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
37515 (TENS_P13_IDX): Define.
37516 (TENS_P13_SIZE): Likewise.
37517 (TENS_P14_IDX): Likewise.
37518 (TENS_P14_SIZE): Likewise.
37519 (_fpioconst_pow10): Change array size to
37520 FPIOCONST_POW10_ARRAY_SIZE. Make entries for 10^2^9 and 10^2^10
37521 unconditional.
37522 (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
37523 1024]: Add entries for 10^2^13 and 10^2^14.
37524 [LAST_POW10 > _LAST_POW10]: Remove #error.
37525 * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
37526 (_fpioconst_pow10): Change array size to
37527 FPIOCONST_POW10_ARRAY_SIZE.
37528 * stdlib/gen-fpioconst.c: New file.
37529 * stdlib/gen-tst-strtod-round.c: Likewise.
37530 * stdlib/tst-strtod-round-data: Likewise.
37531 * stdlib/tst-strtod-round.c: Likewise.
37532 * stdlib/Makefile (tests): Add tst-strtod-round.
37533
d6e70f43
JM
37534 [BZ #14459]
37535 * stdlib/strtod_l.c: Include <stdint.h>.
37536 (NDEBUG): Do not define.
37537 (round_and_return): Change EXPONENT parameter to type intmax_t.
37538 Rearrange calculations to avoid internal overflow possibilities.
37539 (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
37540 Rearrange calculations to avoid internal overflow possibilities.
37541 Assert that number fits inside MPNSIZE limbs.
37542 (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
37543 Change DIG_NO, INT_NO and LEAD_ZERO to type size_t. Rearrange
37544 calculations and add assertions to avoid internal overflow
37545 possibilities. Add casts to avoid signed/unsigned operations.
37546 * stdlib/tst-strtod-overflow.c: New file.
37547 * stdlib/Makefile (tests): Add tst-strtod-overflow.
37548
1f529f7d
MP
375492012-08-25 Marek Polacek <polacek@redhat.com>
37550
37551 * time/time.h: Fix some typos in comments.
37552
59a629f1
RM
375532012-08-23 Roland McGrath <roland@hack.frob.com>
37554
37555 * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
37556 * posix/tst-rfc3484-2.c: Likewise.
37557 * posix/tst-rfc3484-3.c: Likewise.
37558
d3bafbc9
SM
375592012-08-23 Steve McIntyre <steve.mcintyre@linaro.org>
37560
37561 * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
37562 (EF_ARM_ABI_FLOAT_HARD): Likewise.
37563
4efcc022
JM
375642012-08-23 Joseph Myers <joseph@codesourcery.com>
37565
37566 * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
37567 #include of fxstatat64.c.
37568
3cc3ef96
RM
375692012-08-22 Roland McGrath <roland@hack.frob.com>
37570
f04e2132
RM
37571 * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
37572 * shadow/getspent_r.c: Likewise.
37573 * shadow/getspnam.c: Likewise.
37574 * shadow/getspnam_r.c: Likewise.
37575 * gshadow/getsgent.c: Likewise.
37576 * gshadow/getsgent_r.c: Likewise.
37577 * gshadow/getsgnam.c: Likewise.
37578 * gshadow/getsgnam_r.c: Likewise.
37579 * inet/getnetbyad.c: Likewise.
37580 * inet/getnetbyad_r.c: Likewise.
37581 * inet/getnetbynm.c: Likewise.
37582 * inet/getnetbynm_r.c: Likewise.
37583 * inet/getnetent.c: Likewise.
37584 * inet/getnetent_r.c: Likewise.
37585 * inet/getproto.c: Likewise.
37586 * inet/getproto_r.c: Likewise.
37587 * inet/getprtent.c: Likewise.
37588 * inet/getprtent_r.c: Likewise.
37589 * inet/getprtname.c: Likewise.
37590 * inet/getprtname_r.c: Likewise.
37591 * inet/getrpcbyname.c: Likewise.
37592 * inet/getrpcbyname_r.c: Likewise.
37593 * inet/getrpcbynumber.c: Likewise.
37594 * inet/getrpcbynumber_r.c: Likewise.
37595 * inet/getrpcent.c: Likewise.
37596 * inet/getrpcent_r.c: Likewise.
37597 * inet/getaliasent.c: Likewise.
37598 * inet/getaliasent_r.c: Likewise.
37599 * inet/getaliasname.c: Likewise.
37600 * inet/getaliasname_r.c: Likewise.
37601 * nscd/getgrgid_r.c: Likewise.
37602 * nscd/getgrnam_r.c: Likewise.
37603 * nscd/gethstbyad_r.c: Likewise.
37604 * nscd/gethstbynm3_r.c: Likewise.
37605 * nscd/getpwnam_r.c: Likewise.
37606 * nscd/getpwuid_r.c: Likewise.
37607 * nscd/getsrvbynm_r.c: Likewise.
37608 * nscd/getsrvbypt_r.c: Likewise.
37609 * nscd/gai.c: Likewise.
37610
c53d909c
RM
37611 * configure.in (build_nscd): New substituted variable, set
37612 by --disable-build-nscd and defaults to $use_nscd.
37613 * configure: Regenerated.
37614 * config.make.in (build-nscd): New substituted variable.
37615 * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
37616 Change conditional to require [$(build-nscd) = yes] as well.
37617 * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
37618
3cc3ef96
RM
37619 [BZ# 13696]
37620 * configure.in (use_nscd): New substituted variable, set by
37621 --disable-nscd. If enabled, define USE_NSCD.
37622 * configure: Regenerated.
37623 * config.h.in: Add USE_NSCD.
37624 * config.make.in (use-nscd): New substituted variable.
37625 * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
37626 (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
37627 (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
37628 * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
37629 (CFLAGS-getgrnam_r.c): Likewise.
37630 (CFLAGS-initgroups.c): Likewise.
37631 * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
37632 * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
37633 Variables removed.
37634 * inet/getnetgrent_r.c
37635 (nscd_setnetgrent): New function, broken out of ...
37636 (setnetgrent): ... here. Call it.
37637 (innetgr): Conditionalize nscd bits on [USE_NSCD].
37638 (nscd_getnetgrent): Conditionalize on [USE_NSCD].
37639 (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
37640 * nscd/Makefile (routines, aux): Move definitions after include of
37641 Makeconfig. Conditionalize on [$(use-nscd) != no].
37642 * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
37643 Conditionalize on [USE_NSCD].
37644 (is_nscd, nscd_init_cb): Likewise.
37645 (nss_load_library): Conditionalize init callback on [USE_NSCD].
37646 * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
37647 * nss/nss_db/db-init.c: Likewise.
37648 * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
37649 [USE_NSCD].
37650 * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
37651 (make_request): Use it.
37652 (cache_valid_p): New function.
37653 (__check_pf): Use it.
37654 * NEWS: Add item for --disable-nscd.
37655
07e51550
DL
376562012-08-22 Dmitry V. Levin <ldv@altlinux.org>
37657
37658 * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
37659 to support sed >= 4.2.1-20-ga9bf076.
37660 * configure: Regenerated.
37661
35a5b08b
RM
376622012-08-22 Roland McGrath <roland@hack.frob.com>
37663
37664 * csu/libc-start.c (apply_irel): Move extern declarations inside here.
37665 Conditionalize whole body on [IREL].
37666
8479f23a
JL
376672012-08-22 Jeff Law <law@redhat.com>
37668
37669 [BZ #14505]
37670 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
37671 if the family is PF_UNSPEC.
37672
48da0b21
MF
376732012-08-22 Mike Frysinger <vapier@gentoo.org>
37674
37675 * Makerules (lib-version): Rename from V.
37676 (install-lib-nosubdir): Change V to lib-version.
37677
15d0da8c
WS
376782012-08-22 Will Schmidt <will_schmidt@vnet.ibm.com>
37679
37680 [BZ #14252]
37681 * powerpc32/power6/wcschr.c: New file.
37682 * powerpc32/power6/wcscpy.c: New file.
37683 * powerpc32/power6/wcsrchr.c: New file.
37684 * powerpc64/power6/wcschr.c: New file.
37685 * powerpc64/power6/wcscpy.c: New file.
37686 * powerpc64/power6/wcsrchr.c: New file.
37687
bcca0895
MK
376882012-08-21 Maxim Kuvyrkov <maxim@codesourcery.com>
37689
37690 * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
37691 (two_way_short_needle): Use it.
5a4aaa33
RM
37692 * string/strstr.c (AVAILABLE1_USES_J): Define.
37693 * string/strcasestr.c: Likewise.
99677e57
MK
37694
37695 * string/str-two-way.h (two_way_short_needle): Use pointers instead of
37696 array references.
37697 * string/strcasestr.c (TOLOWER): Make side-effect safe.
37698
400726de
MK
37699 [BZ #11607]
37700 * NEWS: Add an entry.
37701 * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
37702 define their defaults.
37703 (two_way_short_needle): Detect end-of-string on-the-fly.
37704 * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
37705 (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
37706 * string/bug-strcasestr1.c: New test.
37707 * string/Makefile: Run it.
37708
20a71f2c
MK
377092012-08-21 Maxim Kuvyrkov <maxim@codesourcery.com>
37710
37711 [BZ #11607]
37712 * string/str-two-way.h (two_way_short_needle): Optimize matching of
37713 the first character.
37714
21ad0558
RM
377152012-08-21 Roland McGrath <roland@hack.frob.com>
37716
37717 * csu/elf-init.c (__libc_csu_irel): Function removed.
37718 * csu/libc-start.c (apply_irel): New function.
37719 (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
37720
0e1d9911
JM
377212012-08-21 Joseph Myers <joseph@codesourcery.com>
37722
37723 * sysdeps/unix/sysv/linux/kernel-features.h
37724 (__ASSUME_FADVISE64_64_SYSCALL): Remove.
37725 * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
37726 <kernel-features.h>.
37727 [__NR_fadvise64_64]: Make code unconditional.
37728 [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
37729 [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
37730 !__NR_fadvise64_64)]: Likewise.
37731 [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
37732 !__NR_fadvise64_64))]: Likewise.
37733 [__NR_fadvise64]: Make code unconditional.
37734 [!__NR_fadvise64]: Remove conditional code.
37735 * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
37736 <kernel-features.h>.
37737 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37738 unconditional.
37739 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37740 conditional code.
37741 * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
37742 not include <kernel-features.h>.
37743 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37744 unconditional.
37745 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37746 conditional code.
37747 * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
37748 include <kernel-features.h>.
37749 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
37750 unconditional.
37751 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
37752 conditional code.
37753
14a50c9d
WS
377542012-08-21 Will Schmidt <will_schmidt@vnet.ibm.com>
37755
37756 * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
37757 slight instruction rearrangements per scrollpipe analysis.
37758 * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
37759
c0f4faf0
RM
377602012-08-20 Roland McGrath <roland@hack.frob.com>
37761
696da859
RM
37762 * manual/syslog.texi (syslog; vsyslog, closelog):
37763 Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
37764 Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
37765
c0f4faf0
RM
37766 * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
37767 DSOCAPS to match condition on defining it.
37768
348363b2
JM
377692012-08-20 Joseph Myers <joseph@codesourcery.com>
37770
a35cbf28
JM
37771 * sysdeps/unix/sysv/linux/kernel-features.h
37772 (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
37773 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
37774 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37775 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37776 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
37777 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37778 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37779 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
37780 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
37781 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
37782
445f7ecd
JM
37783 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
37784 __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
37785
348363b2
JM
37786 * sysdeps/unix/sysv/linux/kernel-features.h
37787 (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
37788 * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
37789 unconditional.
37790 [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37791 * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
37792 [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
37793 (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37794 * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
37795 Make code unconditional.
37796 (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37797 (__mmap64) [!__NR_mmap2]: Likewise.
37798 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
37799 [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
37800 (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37801 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
37802 [__NR_mmap2]: Make code unconditional.
37803 (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
37804 (__mmap64) [!__NR_mmap2]: Likewise.
37805
bc5bc0e5
AK
378062012-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
37807
37808 * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
37809
88d506de
AJ
378102012-08-18 Andreas Jaeger <aj@suse.de>
37811
37812 * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
37813
493387d2
MF
378142012-08-18 Mike Frysinger <vapier@gentoo.org>
37815
37816 * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
37817 * include/unistd.h (__have_sock_cloexec): Likewise.
37818 (__have_pipe2): Likewise.
37819 (__have_dup3): Likewise.
37820
a277af22
MF
378212012-08-18 Mike Frysinger <vapier@gentoo.org>
37822
37823 [BZ #9685]
37824 * include/unistd.h (__have_pipe2): Change define into an extern int.
37825 (__have_dup3): Likewise.
37826 * socket/have_sock_cloexec.c: Include fcntl.h.
37827 (__have_pipe2): New variable.
37828 (__have_dup3): Likewise.
37829
fdab8fd3
MF
378302012-08-17 Mike Frysinger <vapier@gentoo.org>
37831
37832 * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
37833
31035e80
MP
378342012-08-17 Marek Polacek <polacek@redhat.com>
37835
37836 * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
37837 ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
37838
3bd9e993
RM
378392012-08-17 Roland McGrath <roland@hack.frob.com>
37840
c91c505f
RM
37841 * configure.in: Add AC_SUBST for sysheaders.
37842 * configure: Regenerated.
37843 * config.make.in (sysheaders): New substituted variable.
37844
7c6f9d53
RM
37845 * sysdeps/unix/mkfifo.c: Moved ...
37846 * sysdeps/posix/mkfifo.c: ... here.
37847 * sysdeps/unix/mkfifoat.c: Moved ...
37848 * sysdeps/posix/mkfifoat.c: ... here.
37849
37850 * sysdeps/unix/utime.c: Moved ...
37851 * sysdeps/posix/utime.c: ... here.
37852
37853 * sysdeps/unix/time.c: Moved ...
37854 * sysdeps/posix/time.c: ... here.
e3b398f9
RM
37855 * sysdeps/unix/sysv/linux/time.c: Adjust #include.
37856 * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
7c6f9d53
RM
37857
37858 * sysdeps/unix/nice.c: Moved ...
37859 * sysdeps/posix/nice.c: ... here.
37860
37861 * sysdeps/unix/alarm.c: Moved ...
37862 * sysdeps/posix/alarm.c: ... here.
37863
3bd9e993
RM
37864 * intl/Makefile ($(codeset_mo)): Depend on the input file.
37865
d1f09384
JL
378662012-08-17 Jeff Law <law@redhat.com>
37867
37868 * intl/Makefile (codeset_mo): New variable.
37869 ($(codeset_mo)): New target.
37870 (tst-codeset.out): Depend on that. Remove explicit rule.
37871 (tst-gettext3.out, tst-gettext5.out): Likewise.
37872 (LOCPATH-ENV, tst-codeset-ENV): New variables.
37873 (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
37874 * intl/tst-codeset.sh: Remove.
37875 * intl/tst-gettext3.sh: Likewise.
37876 * intl/tst-gettext5.sh: Likewise.
37877
2ae1ae5c
RM
378782012-08-17 Roland McGrath <roland@hack.frob.com>
37879
c31fdb83
RM
37880 * sysdeps/unix/inet/syscalls.list: File removed. Move contents into ...
37881 * sysdeps/unix/syscalls.list: ... here.
37882
a0844057
RM
37883 * sysdeps/posix/getaddrinfo.c
37884 (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
37885 (gaiconf_init, gaiconf_reload): Use them.
37886 [!_STATBUF_ST_NSEC]
37887 (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
37888 Define using time_t rather than struct timespec.
37889
750c1f2a
RM
37890 * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
37891 (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
37892 Macros removed.
37893 * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
37894 [!NO_THREADS].
37895 (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
37896 (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
37897 Likewise.
37898
2ae1ae5c
RM
37899 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
37900 __libc_cleanup_push argument.
37901
e66a42f5
RM
37902 * bits/param.h: New file.
37903 * misc/sys/param.h: New file.
37904 * include/sys/param.h: New file.
37905 * misc/Makefile (headers): Add bits/param.h.
37906 * sysdeps/generic/sys/param.h: File removed.
37907 * sysdeps/unix/sysv/linux/bits/param.h: New file.
37908 * sysdeps/unix/sysv/linux/sys/param.h: File removed.
37909 * sysdeps/mach/hurd/bits/param.h: New file.
4078da3d 37910 * sysdeps/mach/hurd/sys/param.h: File removed.
e66a42f5 37911
b7c08a66
RM
37912 * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
37913 last change.
37914
b2e1c562
RM
37915 * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
37916 [_IO_MTSAFE_IO].
37917 * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
37918 (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
37919 New macros.
37920
c75ccd4c
RM
37921 * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
37922 * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
37923 rather than -D_IO_MTSAFE_IO conditionally.
37924 * stdio-common/Makefile (CPPFLAGS): Likewise.
37925 * wcsmbs/Makefile (CPPFLAGS): Likewise.
37926 * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
37927 Use $(libio-mtsafe).
37928 * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
37929 of -D_IO_MTSAFE_IO.
37930 (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
37931 (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
37932 (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
37933 (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
37934 (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
37935 (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
37936 (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
37937 (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
37938 (CFLAGS-fread_u_chk.c): Likewise.
37939 (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
37940 (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
37941 (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
37942 (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
37943 * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
37944 * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
37945 * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
37946 * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
37947 * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
37948
37949 * libio/Makefile: Test [$(libc-reentrant) = yes]
37950 instead of [$(filter %REENTRANT, $(defines)) nonempty].
37951
37952 * Makeconfig
37953 [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
37954 * sysdeps/pthread/configure: File removed.
37955 * sysdeps/pthread/Makeconfig: New file.
37956 * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
37957 * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
37958
d9195db8
GB
379592012-08-16 Gary Benson <gbenson@redhat.com>
37960
37961 * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
37962 unmapping the first object in a namespace.
37963
86466cd9
RM
379642012-08-16 Roland McGrath <roland@hack.frob.com>
37965
37966 * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
37967 (__internal_setnetgrent): ... this. Add internal_function to
37968 definition. Add libc_hidden_def.
37969 (setnetgrent): Update caller.
37970 (internal_endnetgrent): Renamed to ...
37971 (__internal_endnetgrent): ... this. Add internal_function to
37972 definition. Add libc_hidden_def.
37973 (endnetgrent): Update caller.
37974 (internal_getnetgrent_r): Renamed to ...
37975 (__internal_getnetgrent_r): ... this. Add internal_function to
37976 definition. Add libc_hidden_def.
37977 (__getnetgrent_r): Update caller.
37978 * inet/netgroup.h: Update declarations. Add libc_hidden_proto uses.
37979
c3c8283c
JM
379802012-08-16 Joseph Myers <joseph@codesourcery.com>
37981
37982 * stdlib/longlong.h: Update from GCC.
37983
db1ee0a8
RM
379842012-08-16 Roland McGrath <roland@hack.frob.com>
37985
37986 * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
37987 on _QL, which is set by umul_ppmm but never used.
37988 * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
37989 variables, which are set by GMP macros but never used.
37990 * stdio-common/_itowa.c (_itowa): Likewise.
37991 * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
37992 * stdlib/mod_1.c (mpn_mod_1): Likewise.
37993
30f69637
CD
379942012-08-16 Carlos O'Donell <carlos_odonell@mentor.com>
37995
37996 * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
37997 struct La_sh_regs is not constant.
37998 * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
37999 <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
38000 and struct La_sparc64_regs are not constant.
38001
93a78ac4
JM
380022012-08-16 Joseph Myers <joseph@codesourcery.com>
38003
38004 * sysdeps/unix/sysv/linux/kernel-features.h
38005 (__ASSUME_POSIX_TIMERS): Remove.
38006 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
38007 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38008 * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
38009 Make code unconditional.
38010 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38011 * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
38012 Make code unconditional.
38013 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38014 * sysdeps/unix/sysv/linux/clock_nanosleep.c
38015 [__ASSUME_POSIX_TIMERS]: Make code unconditional.
38016 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38017 * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
38018 Make code unconditional.
38019 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
38020 [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
38021 (__libc_missing_posix_timers): Remove.
38022
dd924cd7
RM
380232012-08-15 Roland McGrath <roland@hack.frob.com>
38024
4b4f2771
RM
38025 * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
38026 check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
38027
601c888b
RM
38028 * bits/libc-lock.h (__rtld_lock_initialize): New macro.
38029
176790a7
RM
38030 * elf/dl-sym.c: Include <stdlib.h>.
38031
329bc018
RM
38032 * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
38033 constants, which avoids warnings in 32-bit builds.
38034
e04e272d
RM
38035 * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
38036 (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
38037
952bf94a
RM
38038 * misc/lseek.c: File moved to ...
38039 * io/lseek.c: ... here.
38040
7c99b50a
RM
38041 * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
38042
dd924cd7
RM
38043 * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
38044 shifting LEN more than 31 bits at once.
38045
b3f479a8
LD
380462012-08-15 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
38047
38048 [BZ #14195]
8c4ae0d4
RM
38049 * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
38050 segmentation fault for a case of two empty input strings.
b3f479a8
LD
38051 * string/test-strncasecmp.c (check1): Renamed to...
38052 (bz12205): ...this.
38053 (bz14195): Add new testcase for two empty input strings and N > 0.
38054 (test_main): Call new testcase, adapt for renamed function.
38055
9c55864e
AJ
380562012-08-15 Andreas Jaeger <aj@suse.de>
38057
38058 [BZ #14090]
38059 * crypt/md5test2.c: New test, based on test supplied by Serge
38060 Belyshev <belyshev@depni.sinp.msu.ru>.
38061 * crypt/Makefile (xtests): Add md5test-giant..
38062 * crypt/Makefile ($(objpfx)md5test-giant): Add.
38063
02dcb6c5
PE
380642012-08-15 Paul Eggert <eggert@cs.ucla.edu>
38065
38066 [BZ #14090]
38067 * crypt/md5.c (md5_process_block): Don't assume the buffer
38068 length is less than 2**32.
38069 * crypt/sha512.c (sha512_process_block): Don't assume the buffer
38070 length is less than 2**64.
38071
a3f95dcc
RM
380722012-08-15 Roland McGrath <roland@hack.frob.com>
38073
be75d758
RM
38074 * string/str-two-way.h: Include <sys/param.h>.
38075 (MAX): Macro removed.
38076
7312ca90
RM
38077 * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
38078 Move #define and #undef of memmove to just before and after
38079 including <string.h>.
38080
9a0a5486
RM
38081 * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
38082 [!NOT_IN_libc]: Move #define and #undef of memmove to just before
38083 and after including <string.h>. Move declarations of
38084 __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
38085 to before #include "string/memmove.c".
38086
67cc348d
RM
38087 * include/dirent.h: Declare __getdirentries.
38088
a3f95dcc
RM
38089 * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
38090 using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
38091
ca98e171
MF
380922012-08-14 Mike Frysinger <vapier@gentoo.org>
38093
38094 * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
38095 * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
38096 * sysdeps/i386/configure: Regenerated.
38097 * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
38098 STABS_CURRENT_FILE, and STABS_FUN.
38099 (END): Remove call to STABS_FUN_END.
38100 (STABS_CURRENT_FILE1): Delete.
38101 (STABS_CURRENT_FILE): Likewise.
38102 (STABS_FUN): Likewise.
38103 (STABS_FUN_END): Likewise.
38104 (STABS_FUN2): Likewise.
38105 * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
38106 * sysdeps/x86_64/configure: Regenerated.
38107
5908bf46
RM
381082012-08-14 Roland McGrath <roland@hack.frob.com>
38109
38110 * elf/dl-open.c: Include <atomic.h>.
1ec79f26 38111 * elf/dl-lookup.c: Likewise.
5908bf46 38112
f2c05b9e
JM
381132012-08-14 Joseph Myers <joseph@codesourcery.com>
38114
38115 * sysdeps/unix/sysv/linux/kernel-features.h
38116 (__ASSUME_CLONE_THREAD_FLAGS): Remove.
38117 * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
38118 unconditionally.
38119 * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
38120 unconditionally.
38121 * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
38122 condition on __ASSUME_CLONE_THREAD_FLAGS.
38123
e11f5155
AJ
381242012-08-14 Andreas Jaeger <aj@suse.de>
38125
38126 * sysdeps/i386/fpu/libm-test-ulps: Update.
38127
51a9ba86
MK
381282012-08-13 Maxim Kuvyrkov <maxim@codesourcery.com>
38129
2fdd4f78
AJ
38130 * include/atomic.h (atomic_exchange_and_add): Split into ...
38131 (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
38132 New atomic macros.
51a9ba86 38133
ba6cba9e
MT
381342012-08-13 Markus Trippelsdorf <markus@trippelsdorf.de>
38135
38136 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
38137
42443a47
JL
381382012-08-13 Jeff Law <law@redhat.com>
38139
38140 * manual/stdio.texi (snprintf): Clarify handling of the trailing
38141 null byte in the output string.
38142
121dce05
JM
381432012-08-10 Joseph Myers <joseph@codesourcery.com>
38144
38145 * sysdeps/unix/sysv/linux/kernel-features.h
38146 (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
38147 [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
38148 (__ASSUME_ARG_MAX_STACK_BASED): Define.
38149 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
38150 [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
38151 !__ASSUME_ARG_MAX_STACK_BASED. Compare version with
38152 __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
38153
bf51f568
JL
381542012-08-09 Jeff Law <law@redhat.com>
38155
38156 [BZ #13939]
38157 * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
38158 When avoid_arena is set, don't retry in the that arena. Pick the
38159 next one, whatever it might be.
38160 (arena_get2): New parameter avoid_arena, pass through to reused_arena.
38161 (arena_lock): Pass in new parameter to arena_get2.
38162 * malloc/malloc.c (__libc_memalign): Pass in new parameter to
38163 arena_get2.
38164 (__libc_malloc): Unify retrying after main arena failure with
38165 __libc_memalign version.
38166 (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
38167
f85fa270
L
381682012-08-09 H.J. Lu <hongjiu.lu@intel.com>
38169
38170 [BZ #14166]
38171 * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
38172 to __redirect_strstr.
38173 (__strstr_sse42): Use typeof __redirect_strstr.
38174 (__strstr_ia32): Likewise.
38175 (__libc_strstr): New prototype.
38176 (strstr): Renamed to ...
38177 (__libc_strstr): This.
38178 (strstr): New strong alias of __libc_strstr.
38179 * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
38180 * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
38181 __redirect_time.
38182 Include <time.h>.
38183 (__libc_time): New prototype.
38184 (time_ifunc): Replace time with __libc_time.
38185 (time): New strong alias and hidden definition of __libc_time.
38186 (__GI_time): Remove strong alias.
38187 * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
38188 Include <stddef.h>.
38189 (memmove): Redefined to __redirect_memmove.
38190 (__memmove_sse2): Use typeof __redirect_memmove.
38191 (__memmove_ssse3): Likewise.
38192 (__memmove_ssse3_back): Likewise.
38193 (__libc_memmove): New prototype.
38194 (memmove): Renamed to ...
38195 (__libc_memmove): This.
38196 (memmove): New strong alias of __libc_memmove.
38197
33b4a91e
MS
381982012-08-08 Mark Salter <msalter@redhat.com>
38199
38200 * elf/elf.h
38201 (R_MN10300_TLS_GD): Define.
38202 (R_MN10300_TLS_LD): Likewise.
38203 (R_MN10300_TLS_LDO): Likewise.
38204 (R_MN10300_TLS_GOTIE): Likewise.
38205 (R_MN10300_TLS_IE): Likewise.
38206 (R_MN10300_TLS_LE): Likewise.
38207 (R_MN10300_TLS_DTPMOD): Likewise.
38208 (R_MN10300_TLS_DTPOFF): Likewise.
38209 (R_MN10300_TLS_TPOFF): Likewise.
38210 (R_MN10300_SYM_DIFF): Likewise.
38211 (R_MN10300_ALIGN): Likewise.
38212 (R_MN10300_NUM): Update.
38213
b36137f1
JM
382142012-08-08 Joseph Myers <joseph@codesourcery.com>
38215
38216 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
38217 Remove.
38218
cdd915fd
RM
382192012-08-08 Roland McGrath <roland@hack.frob.com>
38220
a2433aac
RM
38221 * sysdeps/posix/fdopendir.c: Include <stddef.h>.
38222
cdd915fd
RM
38223 * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
38224 sysdeps/unix -> sysdeps/posix move.
38225 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
38226
bf9b740a
AM
382272012-08-07 Allan McRae <allan@archlinux.org>
38228
38229 [BZ #14303]
38230 * sunrpc/rpc_main.c (SVR4_CPP): Remove.
38231 (SUNOS_CPP): Likewise.
38232 (find_cpp): Fall back to selecting system cpp when /lib/cpp is
38233 not found.
38234 (open_input): Call CPP using execvp.
38235
93df14ee
JM
382362012-08-07 Joseph Myers <joseph@codesourcery.com>
38237
38238 * sysdeps/unix/sysv/linux/kernel-features.h
38239 (__ASSUME_PROT_GROWSUPDOWN): Remove.
38240 (__ASSUME_NO_CLONE_DETACHED): Likewise.
38241 (__ASSUME_GETDENTS32_D_TYPE): Likewise.
38242 (__ASSUME_WAITID_SYSCALL): Likewise.
38243 * sysdeps/unix/sysv/linux/dl-execstack.c
38244 (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
38245 code unconditional.
38246 (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
38247 conditional code.
38248 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
38249 [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
38250 (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
38251 code.
38252 * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
38253 unconditional.
38254 [__ASSUME_WAITID_SYSCALL]: Likewise.
38255 [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
38256
d34689de
RM
382572012-08-07 Roland McGrath <roland@hack.frob.com>
38258
a281decc
RM
38259 * sysdeps/unix/closedir.c: Renamed to ...
38260 * sysdeps/posix/closedir.c: ... here.
38261 * sysdeps/unix/dirfd.c: Renamed to ...
38262 * sysdeps/posix/dirfd.c: ... here.
38263 * sysdeps/unix/dirstream.h: Renamed to ...
38264 * sysdeps/posix/dirstream.h: ... here.
38265 * sysdeps/unix/fdopendir.c: Renamed to ...
38266 * sysdeps/posix/fdopendir.c: ... here.
38267 * sysdeps/unix/opendir.c: Renamed to ...
38268 * sysdeps/posix/opendir.c: ... here.
38269 * sysdeps/unix/readdir.c: Renamed to ...
38270 * sysdeps/posix/readdir.c: ... here.
38271 * sysdeps/unix/readdir_r.c: Renamed to ...
38272 * sysdeps/posix/readdir_r.c: ... here.
38273 * sysdeps/unix/rewinddir.c: Renamed to ...
38274 * sysdeps/posix/rewinddir.c: ... here.
38275 * sysdeps/unix/seekdir.c: Renamed to ...
38276 * sysdeps/posix/seekdir.c: ... here.
38277 * sysdeps/unix/telldir.c: Renamed to ...
38278 * sysdeps/posix/telldir.c: ... here.
38279 * sysdeps/unix/sysv/linux/opendir.c: Update #include.
38280 * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
38281 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
38282 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
38283
22895b47
RM
38284 * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
38285 * bits/fcntl.h: ... here.
38286
707a53b6
RM
38287 * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
38288 not 0.
38289 (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
38290 [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
38291 (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
38292 (struct flock): Move l_start, l_len to the beginning.
38293 Use __pid_t for l_pid.
38294 [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
38295 [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
38296 [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
38297 (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
38298 [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
38299 [__USE_LARGEFILE64] (struct flock64): New type.
38300 (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
38301
f0bd3e25
RM
38302 * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
38303 * bits/dirent.h: ... here.
38304
d34689de
RM
38305 * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
38306 [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
38307
6dad2c06
JM
383082012-08-07 Joseph Myers <joseph@codesourcery.com>
38309
38310 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
38311 Change from 2.6.0 to 2.6.16.
38312 * sysdeps/unix/sysv/linux/configure: Regenerated.
38313 * sysdeps/unix/sysv/linux/kernel-features.h
38314 (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
38315 (__ASSUME_TGKILL): Define conditional on architectures, not kernel
38316 version.
38317 (__ASSUME_UTIMES): Likewise.
38318 (__ASSUME_CLONE_STOPPED): Remove.
38319 (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
38320 architectures, not kernel version.
38321 (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
38322 (__ASSUME_NO_CLONE_DETACHED): Likewise.
38323 (__ASSUME_GETDENTS32_D_TYPE): Likewise.
38324 (__ASSUME_WAITID_SYSCALL): Likewise.
38325 [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
38326 condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
38327 * README: State 2.6.16 as minimum Linux kernel version. Do not
38328 refer to older versions.
38329
03af9520
RM
383302012-08-06 Roland McGrath <roland@hack.frob.com>
38331
8e49df1d
RM
38332 * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
38333 Define alphasort64 as an alias.
38334 * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
38335 Define versionsort64 as an alias.
38336 * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
38337 Define scandir64 as an alias.
38338 * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
38339 Define scandirat64 as an alias.
38340 * dirent/alphasort64.c (alphasort64):
38341 Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
38342 * dirent/versionsort64.c: Likewise.
38343 * dirent/scandir64.c: Likewise.
38344 * dirent/scandirat64.c: Likewise.
38345 * sysdeps/wordsize-64/alphasort.c: File removed.
38346 * sysdeps/wordsize-64/alphasort64.c: File removed.
38347 * sysdeps/wordsize-64/scandir.c: File removed.
38348 * sysdeps/wordsize-64/scandir64.c: File removed.
38349 * sysdeps/wordsize-64/scandirat.c: File removed.
38350 * sysdeps/wordsize-64/scandirat64.c: File removed.
38351 * sysdeps/wordsize-64/versionsort.c: File removed.
38352 * sysdeps/wordsize-64/versionsort64.c: File removed.
38353 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
38354 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
38355 * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
38356 * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
38357 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
38358 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
38359 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
38360 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
38361
38362 * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
38363 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
38364 [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
38365 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
38366 [defined __arch64__ || defined __sparcv9]
38367 (__INO_T_MATCHES_INO64_T): New macro.
38368 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
38369 [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
38370 * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
38371 * sysdeps/unix/sysv/linux/bits/dirent.h
38372 [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
38373 (_DIRENT_MATCHES_DIRENT64): New macro.
38374
03af9520
RM
38375 * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
38376 Define lockf64 as an alias.
38377 * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
38378 Define fseeko64 as an alias.
38379 * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
38380 Define ftello64 as an alias.
38381 * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
38382 Define _IO_fgetpos64 and fgetpos64 as aliases.
38383 * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
38384 Define _IO_fsetpos64 and fsetpos64 as aliases.
38385 * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
38386 Conditionalize body on this.
38387 * libio/fseeko64.c: Likewise.
38388 * libio/ftello64.c: Likewise.
38389 * libio/iofgetpos64.c: Likewise.
38390 * libio/iofsetpos64.c: Likewise.
38391 * sysdeps/wordsize-64/lockf.c: File removed.
38392 * sysdeps/wordsize-64/lockf64.c: File removed.
38393 * sysdeps/wordsize-64/fseeko.c: File removed.
38394 * sysdeps/wordsize-64/fseeko64.c: File removed.
38395 * sysdeps/wordsize-64/ftello.c: File removed.
38396 * sysdeps/wordsize-64/ftello64.c: File removed.
38397 * sysdeps/wordsize-64/iofgetpos.c: File removed.
38398 * sysdeps/wordsize-64/iofgetpos64.c: File removed.
38399 * sysdeps/wordsize-64/iofsetpos.c: File removed.
38400 * sysdeps/wordsize-64/iofsetpos64.c: File removed.
38401 * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
38402 * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
38403 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
38404 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
38405 * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
38406 * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
38407 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
38408 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
38409 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
38410 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
38411
38412 * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
38413 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
38414 [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
38415 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
38416 [defined __arch64__ || defined __sparcv9]
38417 (__OFF_T_MATCHES_OFF64_T): New macro.
38418 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
38419 [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
38420 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
38421 (__OFF_T_MATCHES_OFF64_T): New macro.
38422
c5757acd
L
384232012-08-06 H.J. Lu <hongjiu.lu@intel.com>
38424
38425 * stdlib/secure-getenv.c (__secure_getenv): Replace
38426 GLIBC_2_16 with GLIBC_2_17.
38427
3a31811e
L
384282012-08-06 H.J. Lu <hongjiu.lu@intel.com>
38429
38430 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
38431 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
38432
faa2bccb
DM
384332012-08-03 David S. Miller <davem@davemloft.net>
38434
38435 * sysdeps/sparc/fpu/libm-test-ulps: Update.
38436
85fe1997
JM
384372012-08-03 Joseph Myers <joseph@codesourcery.com>
38438
38439 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
38440 Remove.
38441 (__ASSUME_CORRECT_SI_PID): Likewise.
38442 (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
38443 (__ASSUME_TMPFS_NAME): Likewise.
38444 * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
38445 [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
38446 * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
38447 (HAVE_AUX_SECURE): Make definition unconditional.
38448 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
38449 [!__ASSUME_TMPFS_NAME]: Remove conditional code.
38450
4f75b7a0
RM
384512012-08-03 Roland McGrath <roland@hack.frob.com>
38452
38453 * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
38454 * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
38455 * sysdeps/mach/hurd/eloop-threshold.h: New file.
38456 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
38457 __eloop_threshold instead of SYMLOOP_MAX.
38458
38459 * sysdeps/generic/eloop-threshold.h: New file.
38460 * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
38461 of MAXSYMLINKS.
38462 * elf/chroot_canon.c (chroot_canon): Likewise.
38463
7aab07e4
JM
384642012-08-03 Joseph Myers <joseph@codesourcery.com>
38465
38466 [BZ #13717]
38467 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
38468 Change to 2.6.0 everywhere.
38469 * sysdeps/unix/sysv/linux/configure: Regenerated.
38470 * sysdeps/unix/sysv/linux/kernel-features.h
38471 (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
38472 (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
38473 kernel versions.
38474 (__ASSUME_POSIX_TIMERS): Define unconditionally.
38475 (__ASSUME_FUTEX_REQUEUE): Remove.
38476 (__ASSUME_STATFS64): Define unconditionally.
38477 (__ASSUME_AT_SECURE): Likewise.
38478 (__ASSUME_CORRECT_SI_PID): Likewise.
38479 (__ASSUME_TGKILL): Define without depending on kernel version for
38480 i386.
38481 (__ASSUME_UTIMES): Likewise.
38482 (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
38483 kernel version.
38484 (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
38485 (__ASSUME_TMPFS_NAME): Likewise.
38486 * README: Update reference to Linux kernel versions.
38487
b67e9372
MP
384882012-08-02 Marek Polacek <polacek@redhat.com>
38489
1f529f7d 38490 [BZ# 14150]
b67e9372
MP
38491 * configure.in (libc_cv_asm_type_prefix): Remove test. Replace
38492 libc_cv_asm_type_prefix with %.
38493 * configure: Regenerated.
d2441631
RM
38494 * include/libc-symbols.h: Remove comment about
38495 ASM_TYPE_DIRECTIVE_PREFIX. Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
b67e9372
MP
38496 (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
38497 (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
38498 (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
38499 (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
38500 * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
38501 [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
38502 [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
38503 * elf/tst-unique2mod1.c: Likewise.
38504 * elf/tst-unique1mod2.c: Likewise.
38505 * elf/tst-unique1mod1.c: Likewise.
38506 * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
38507 * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
38508 Replace ASM_TYPE_DIRECTIVE with .type.
38509 * sysdeps/s390/s390-64/sysdep.h: Likewise.
38510 * sysdeps/i386/sysdep.h: Likewise.
38511 * sysdeps/x86_64/sysdep.h: Likewise.
38512 * sysdeps/sh/sysdep.h: Likewise.
d2441631
RM
38513 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
38514 Do not define ASM_TYPE_DIRECTIVE.
b67e9372 38515 * sysdeps/powerpc/sysdep.h: Likewise.
d2441631
RM
38516 * sysdeps/powerpc/powerpc32/sysdep.h:
38517 Replace ASM_TYPE_DIRECTIVE with .type.
b67e9372
MP
38518 * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
38519 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
38520 * sysdeps/i386/fpu/e_powf.S: Likewise.
38521 * sysdeps/i386/fpu/e_expl.S: Likewise.
38522 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
38523 * sysdeps/i386/fpu/e_acosh.S: Likewise.
38524 * sysdeps/i386/fpu/e_pow.S: Likewise.
38525 * sysdeps/i386/fpu/s_asinhl.S: Likewise.
38526 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
38527 * sysdeps/i386/fpu/s_expm1.S: Likewise.
38528 * sysdeps/i386/fpu/s_frexpf.S: Likewise.
38529 * sysdeps/i386/fpu/e_log2.S: Likewise.
38530 * sysdeps/i386/fpu/e_log2l.S: Likewise.
38531 * sysdeps/i386/fpu/e_scalb.S: Likewise.
38532 * sysdeps/i386/fpu/e_powl.S: Likewise.
38533 * sysdeps/i386/fpu/e_log10f.S: Likewise.
38534 * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
38535 * sysdeps/i386/fpu/e_logl.S: Likewise.
38536 * sysdeps/i386/fpu/s_cbrt.S: Likewise.
38537 * sysdeps/i386/fpu/s_frexpl.S: Likewise.
38538 * sysdeps/i386/fpu/s_expm1f.S: Likewise.
38539 * sysdeps/i386/fpu/e_log2f.S: Likewise.
38540 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
38541 * sysdeps/i386/fpu/e_log.S: Likewise.
38542 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
38543 * sysdeps/i386/fpu/e_logf.S: Likewise.
38544 * sysdeps/i386/fpu/e_log10l.S: Likewise.
38545 * sysdeps/i386/fpu/e_atanh.S: Likewise.
38546 * sysdeps/i386/fpu/s_asinhf.S: Likewise.
38547 * sysdeps/i386/fpu/e_log10.S: Likewise.
38548 * sysdeps/i386/fpu/s_frexp.S: Likewise.
38549 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
38550 * sysdeps/i386/fpu/s_asinh.S: Likewise.
38551 * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
38552 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
38553 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
38554 * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
38555 * sysdeps/i386/i686/strtok.S: Likewise.
38556 * sysdeps/i386/i386-mcount.S: Likewise.
38557 * sysdeps/i386/strtok.S: Likewise.
38558 * sysdeps/x86_64/fpu/e_expl.S: Likewise.
38559 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
38560 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
38561 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
38562 * sysdeps/x86_64/fpu/e_expf.S: Likewise.
38563 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
38564 * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
38565 * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
38566 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
38567 * sysdeps/x86_64/_mcount.S: Likewise.
38568 * sysdeps/x86_64/strtok.S: Likewise.
38569 * sysdeps/sh/_mcount.S: Likewise.
38570
2747bf9a
RM
385712012-08-01 Roland McGrath <roland@hack.frob.com>
38572
38573 * libio/iofopen.c: Include <fcntl.h>.
38574 [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
38575 (_IO_fopen64, fopen64): Define as aliases.
38576 * libio/iofopen64.c: Include <fcntl.h>.
38577 [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
38578 Conditionalize body on this.
38579 * sysdeps/wordsize-64/iofopen.c: File removed.
38580 * sysdeps/wordsize-64/iofopen64.c: File removed.
38581
3fb791b8
MP
385822012-08-01 Marek Polacek <polacek@redhat.com>
38583
38584 * libc/Makeconfig: Use elf in place of binfmt-subdir.
38585 Use dlfcn directly instead of a variable.
38586 (binfmt-subdir): Do not define.
38587 (dlfcn): Likewise.
38588
a9f1039f
JM
385892012-08-01 Joseph Myers <joseph@codesourcery.com>
38590
23bddc06
JM
38591 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
38592 Remove all definitions.
38593 * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
38594 <kernel-features.h>.
38595 [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
38596 (miss_F_GETOWN_EX): Remove all definitions.
38597 [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
38598 macro definition.
38599 [!__ASSUME_FCNTL64]: Remove conditional code.
38600 [__ASSUME_FCNTL64]: Make code unconditional.
38601 * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
38602 <kernel-features.h>.
38603 [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
38604 (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
38605 (lockf64) [__NR_fcntl64]: Make code unconditional.
38606 (lockf64) [__ASSUME_FCNTL64]: Likewise.
38607
a9f1039f
JM
38608 * sysdeps/unix/sysv/linux/kernel-features.h
38609 (__ASSUME_VFORK_SYSCALL): Remove all definitions.
38610 * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
38611 Make code unconditional.
38612 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38613 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38614 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
38615 [__NR_vfork]: Make code unconditional.
38616 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38617 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38618 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
38619 [__NR_vfork]: Make code unconditional.
38620 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
38621 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
38622
09c0ee5f
RM
386232012-08-01 Roland McGrath <roland@hack.frob.com>
38624
48aec5b9
RM
38625 * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
38626 (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
38627
cd97c966
RM
38628 * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38629 Define mkstemp64 as an alias.
3f55550c
RM
38630 * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38631 Define mkstemps64 as an alias.
cd97c966
RM
38632 * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38633 Define mkostemp64 as an alias.
b8625cfc
RM
38634 * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
38635 Define mkostemps64 as an alias.
cd97c966
RM
38636 * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
38637 Conditionalize body on this.
38638 * misc/mkostemp64.c: Likewise.
b8625cfc 38639 * misc/mkostemps64.c: Likewise.
3f55550c 38640 * misc/mkstemps64.c: Likewise.
cd97c966
RM
38641 * sysdeps/wordsize-64/mkstemp64.c: File removed.
38642 * sysdeps/wordsize-64/mkostemp64.c: File removed.
38643 * sysdeps/wordsize-64/mkostemp.c: File removed.
38644 * sysdeps/wordsize-64/mkstemp.c: File removed.
38645 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
38646 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
38647 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
38648 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
38649
09c0ee5f
RM
38650 [BZ #14138]
38651 * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
38652 * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
38653 * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
38654 * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
38655
38656 * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
38657 compat_symbol macros from <shlib-compat.h> rather than the underlying
38658 default_symbol_version and symbol_version macros, so that DEFAULT
38659 lines in shlib-versions are respected.
38660 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
38661
7e66ee51
FW
386622012-08-01 Florian Weimer <fweimer@redhat.com>
38663
38664 * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
38665 Declare with warn_unused_result.
38666 (setgid, setregid, setegid, setresgid): Likewise.
38667 * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
38668 Likewise.
38669 * WUR-REPORT: Remove set*id functions.
38670
d2a54255
PT
386712012-07-31 Pino Toscano <toscano.pino@tiscali.it>
38672
38673 * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
38674
7ecdb005
RM
386752012-07-31 Roland McGrath <roland@hack.frob.com>
38676
b4180a5e 38677 [BZ #10191]
789bd351
RM
38678 * include/sys/socket.h (__libc_accept, __libc_accept4):
38679 Add attribute_hidden.
38680 * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
38681
40ce302d
RM
38682 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
38683 use of PTR_MANGLE.
38684 * inet/getnetgrent_r.c (setup): Likewise.
38685
7ecdb005
RM
38686 * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
38687
e2eabb2c
DM
386882012-07-31 David S. Miller <davem@davemloft.net>
38689
38690 * sysdeps/sparc/fpu/libm-test-ulps: Update.
38691
d0419dbf
JM
386922012-07-31 Joseph Myers <joseph@codesourcery.com>
38693
38694 [BZ #13629]
38695 * math/s_clog.c (__clog): Use __log1p if larger part has absolute
38696 value between 1.0 and 2.0 and smaller part has absolute value less
38697 than 1.0.
38698 * math/s_clog10.c (__clog10): Likewise.
38699 * math/s_clog10f.c (__clog10f): Likewise.
38700 * math/s_clog10l.c (__clog10l): Likewise.
38701 * math/s_clogf.c (__clogf): Likewise.
38702 * math/s_clogl.c (__clogl): Likewise.
38703 * math/libm-test.inc (clog_test): Add more tests.
38704 (clog10_test): Likewise.
38705 * sysdeps/i386/fpu/libm-test-ulps: Update.
38706 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38707
2bc13872
FW
387082012-07-31 Florian Weimer <fweimer@redhat.com>
38709
38710 * stdlib/tst-secure-getenv.c: Use printf for error reporting.
38711 Exit with zero in case no suitable GID is found, and write a
38712 message to standard error.
38713
bea9b193
RM
387142012-07-30 Roland McGrath <roland@hack.frob.com>
38715
38716 * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
38717 rather than to 1.
38718 (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
38719 (MAXPATHLEN): Removed.
38720 (NOGROUP, NODEV): New macros.
38721 (setbit, clrbit, isset, isclr): New macros.
38722 (howmany, roundup, powerof2): New macros.
38723 (DEV_BSIZE): New macro.
38724
38725 * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
38726 * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
38727
38728 * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
38729 definition on [!__NO_LONG_DOUBLE_MATH].
38730
38731 * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
38732 PTR_MANGLE and PTR_DEMANGLE.
38733
38734 * socket/accept4.c (accept4): Rename to __libc_accept4.
38735 Define accept4 as a weak alias.
38736
38737 * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
38738 on [_DIRENT_HAVE_D_TYPE].
38739 * io/ftw.c (ftw_dir): Likewise.
38740
38741 * io/xmknod.c (__xmknod): Don't check PATH for being null.
38742
38743 * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
38744
38745 * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
38746 Use the BSD numbers rather than the arbitrary ones we had.
38747 (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
38748 (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
38749 (SIGXCPU, SIGXFSZ): New macros.
38750 (_NSIG): Now 32.
38751
38752 * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
38753 initializer on [_LIBC_REENTRANT].
38754
38755 * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
38756 definitions inside [_POSIX_MAPPED_FILES].
38757
38758 * posix/regex.c: Include <sys/param.h> for MIN/MAX.
38759
38760 * dirent/opendir.c: Include <fcntl.h>.
38761
38762 * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
38763 (__libc_getspecific): Likewise.
38764 (__libc_key_create): Likewise.
38765
38766 * stdio-common/tmpfile64.c: Include <fcntl.h> first.
38767 [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
38768 * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
38769 (tmpfile64): Define as alias.
38770 * sysdeps/wordsize-64/tmpfile.c: File removed.
38771 * sysdeps/wordsize-64/tmpfile64.c: File removed.
38772 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
38773 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
38774
38775 * stdio-common/vfscanf.c: Include <stdbool.h>.
38776 * nss/makedb.c: Likewise.
38777 * stdio-common/_i18n_number.h: Likewise.
38778 * argp/argp-help.c: Likewise.
38779 * posix/wordexp.c: Likewise.
38780 * sysdeps/posix/spawni.c: Likewise.
38781 * nss/nss_files/files-initgroups.c: Likewise.
38782 * stdio-common/reg-modifier.c: Include <stdlib.h>.
38783 * nss/nss_files/files-initgroups.c: Likewise.
38784 * nss/nss_db/db-netgrp.c: Likewise.
38785 * nss/nss_db/db-initgroups.c: Likewise.
38786 * io/fchmodat.c: Include <sys/stat.h>.
38787
38788 * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
38789 __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
38790
38791 * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
38792 [HAVE_MMAP].
38793
38794 * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
38795 Add multiple inclusion protection.
38796
e5abc686
DM
387972012-07-27 David S. Miller <davem@davemloft.net>
38798
38799 * sysdeps/sparc/fpu/libm-test-ulps: Update.
38800
815e6fa3
GB
388012012-07-27 Gary Benson <gbenson@redhat.com>
38802
38803 [BZ #14298]
38804 * elf/rtld.c: Include <stap-probe.h>.
38805 (dl_main): Added static probes "init_start" and "init_complete".
38806 * elf/dl-load.c: Include <stap-probe.h>.
38807 (lose): Take new parameter "nsid".
38808 Added static probe "map_failed".
38809 (_dl_map_object_from_fd): Pass namespace id to lose.
38810 Added static probe "map_start".
38811 (open_verify): Pass namespace id to lose.
38812 * elf/dl-open.c: Include <stap-probe.h>.
38813 (dl_open_worker) Added static probes "map_complete", "reloc_start"
38814 and "reloc_complete".
38815 * elf/dl-close.c: Include <stap-probe.h>.
38816 (_dl_close_worker): Added static probes "unmap_start" and
38817 "unmap_complete".
38818 * elf/rtld-debugger-interface.txt: New file documenting the above.
38819
9f98c16c
RM
388202012-07-26 Roland McGrath <roland@hack.frob.com>
38821
38822 * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
38823 rather than a string variable.
38824 * sunrpc/rpc_main.c (h_output): Likewise.
38825 * sunrpc/rpc_svcout.c (write_real_program): Likewise.
38826
f3c22df3
PT
388272012-07-26 Pino Toscano <toscano.pino@tiscali.it>
38828
38829 * inet/check_native.c: New file.
38830
3129cfc6
JM
388312012-07-26 Joseph Myers <joseph@codesourcery.com>
38832
da865e95
JM
38833 [BZ #13629]
38834 * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
38835 if larger part has absolute value 1.0.
38836 * math/s_clog10.c (__clog10): Likewise.
38837 * math/s_clog10f.c (__clog10f): Likewise.
38838 * math/s_clog10l.c (__clog10l): Likewise.
38839 * math/s_clogf.c (__clogf): Likewise.
38840 * math/s_clogl.c (__clogl): Likewise.
38841 * math/libm-test.inc (clog_test): Add more tests.
38842 (clog10_test): Likewise.
38843 * sysdeps/i386/fpu/libm-test-ulps: Update.
38844 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38845
3129cfc6
JM
38846 * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
38847 (pltexit): Likewise.
38848 (La_regs): Likewise.
38849 (La_retval): Likewise.
38850 (int_retval): Likewise.
38851 Update #error for removed macros to refer only to definitions in
38852 tst-audit.h.
38853 * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
38854 macro.
38855 (pltexit): Likewise.
38856 (La_regs): Likewise.
38857 (La_retval): Likewise.
38858 (int_retval): Likewise.
38859 * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
38860 macro.
38861 (pltexit): Likewise.
38862 (La_regs): Likewise.
38863 (La_retval): Likewise.
38864 (int_retval): Likewise.
38865 * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
38866 macro.
38867 (pltexit): Likewise.
38868 (La_regs): Likewise.
38869 (La_retval): Likewise.
38870 (int_retval): Likewise.
38871 * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
38872 macro.
38873 (pltexit): Likewise.
38874 (La_regs): Likewise.
38875 (La_retval): Likewise.
38876 (int_retval): Likewise.
38877 * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
38878 macro.
38879 (pltexit): Likewise.
38880 (La_regs): Likewise.
38881 (La_retval): Likewise.
38882 (int_retval): Likewise.
38883 * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
38884 macro.
38885 (pltexit): Likewise.
38886 (La_regs): Likewise.
38887 (La_retval): Likewise.
38888 (int_retval): Likewise.
38889 * sysdeps/generic/tst-audit.h: Update comment to refer only to
38890 macro definitions in tst-audit.h.
38891 * sysdeps/i386/tst-audit.h: New file.
38892 * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
38893 * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
38894 * sysdeps/s390/s390-32/tst-audit.h: Likewise.
38895 * sysdeps/s390/s390-64/tst-audit.h: Likewise.
38896 * sysdeps/sh/tst-audit.h: Likewise.
38897 * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
38898 * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
38899 * sysdeps/x86_64/tst-audit.h: Likewise.
38900
bfc07087
AJ
389012012-07-26 Andreas Jaeger <aj@suse.de>
38902
b1b2aaf8
AJ
38903 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
38904 ptrace.
38905
38906 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
38907 new value PTRACE_EVENT_SECCOMP from Linux 3.5.
38908 (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
38909 PTRACE_O_MASK.
38910 * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
38911 * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
38912 * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
38913
bfc07087
AJ
38914 * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
38915 value.
38916
38917 * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
38918 _sigsys.
38919 (si_call_addr, si_syscall, si_arch): Define new macro.
38920 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
38921 _sigsys.
38922 (si_call_addr, si_syscall, si_arch): Define new marcro.
38923 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
38924 _sigsys.
38925 (si_call_addr, si_syscall, si_arch): Define new macro.
38926 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
38927 _sigsys.
38928 (si_call_addr, si_syscall, si_arch): Define new macro.
38929
89b4b02f
JM
389302012-07-25 Joseph Myers <joseph@codesourcery.com>
38931
38932 [BZ #13717]
38933 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
38934 Change to 2.4.21 where previously 2.4.1.
38935 * sysdeps/unix/sysv/linux/configure: Regenerated.
38936 * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
38937 __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
38938 Linux kernel version.
38939 (__ASSUME_STD_AUXV): Remove.
38940 [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
38941 kernel version.
38942 [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
38943 (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
38944 (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
38945 (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
38946 (__ASSUME_NETLINK_SUPPORT): Likewise.
38947 * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
38948 (__no_netlink_support): Remove conditional definition.
38949 * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
38950 Remove.
38951 (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
38952 [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
38953 * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
38954 (if_nameindex_ioctl): Remove.
38955 (if_nameindex_netlink): Do not handle __no_netlink_support.
38956 (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
38957 code.
38958 * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
38959 Remove conditional code.
38960 (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
38961 code.
38962 (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
38963 unconditional.
38964 [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
38965 [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
38966 * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
38967 Remove.
38968 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
38969 [!__ASSUME_STD_AUXV]: Remove conditional code.
38970 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
38971 [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
38972 [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
38973 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
38974 [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
38975 (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
38976 code.
38977 [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
38978 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
38979 [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
38980 (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
38981 conditional code.
38982 [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
38983 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
38984 (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
38985 code.
38986 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
38987 (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
38988 conditional code.
38989 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
38990 (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
38991 code unconditional.
38992 (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
38993 conditional code.
38994 (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
38995 unconditional.
38996 (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
38997 conditional code.
38998 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
38999 (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39000 unconditional.
39001 (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39002 conditional code.
39003 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
39004 (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
39005 code unconditional.
39006 (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39007 conditional code.
39008 (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39009 unconditional.
39010 (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39011 conditional code.
39012 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
39013 (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
39014 code unconditional.
39015 (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39016 conditional code.
39017 (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
39018 unconditional.
39019 (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
39020 conditional code.
39021
842a39cd
AS
390222012-07-25 Andreas Schwab <schwab@linux-m68k.org>
39023
39024 * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
39025 * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
39026 * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
39027 * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
39028 * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
39029 * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
39030 * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
39031 * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
39032 * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
39033 * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
39034 * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
39035 * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
39036 * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
39037 * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
39038 * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
39039 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
39040 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
39041 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
39042 * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
39043 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
39044 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
39045 * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
39046 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
39047
84b3fd84
FW
390482012-07-25 Florian Weimer <fweimer@redhat.com>
39049
39050 * Versions.def: Add GLIBC_2.17.
84b3fd84
FW
39051 * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
39052 * include/stdlib.h: Rename __secure_getenv to secure_getenv.
39053 Introduce __libc_secure_getenv.
0c7936d5
FW
39054 * stdlib/Versions (2.17): Add secure_getenv
39055 (GLIBC_PRIVATE): Add __libc_secure_getenv.
39056 * stdlib/secure-getenv.c: Rename __secure_getenv to
39057 __libc_secure_getenv. Add secure_getenv alias. Add compatibility
39058 symbol __secure_getenv for GLIBC_2.0.
84b3fd84
FW
39059 * stdlib/tst-secure-getenv.c: New.
39060 * stdlib/Makefile (tests): Add testcase.
84b3fd84
FW
39061 * manual/startup.texi (Environment Access): Document
39062 secure_getenv.
84b3fd84
FW
39063 * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
39064 __libc_secure_getenv.
39065 * inet/ruserpass.c (ruserpass): Likewise.
39066 * malloc/mtrace.c (mtrace): Likewise.
39067 * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
0c7936d5 39068 * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
84b3fd84
FW
39069 * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
39070 * sysdeps/posix/tempname.c: Likewise. Evaluate
39071 HAVE_SECURE_GETENV.
39072 * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
0c7936d5 39073 __secure_getenv to __libc_secure_getenv.
84b3fd84 39074 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
84b3fd84
FW
39075 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
39076 Likewise.
39077 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
39078 Likewise.
39079 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
39080 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
39081 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
39082 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
39083 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
39084 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
39085 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
84b3fd84 39086
56e49b71
JM
390872012-07-25 Joseph Myers <joseph@codesourcery.com>
39088
39089 * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
39090 (struct La_i86_retval): Likewise.
39091 (struct La_x86_64_regs): Likewise.
39092 (struct La_x86_64_retval): Likewise.
39093 (struct La_x32_regs): Likewise.
39094 (struct La_x32_retval): Likewise.
39095 (struct La_ppc32_regs): Likewise.
39096 (struct La_ppc32_retval): Likewise.
39097 (struct La_ppc64_regs): Likewise.
39098 (struct La_ppc64_retval): Likewise.
39099 (struct La_sh_regs): Likewise.
39100 (struct La_sh_retval): Likewise.
39101 (struct La_s390_32_regs): Likewise.
39102 (struct La_s390_32_retval): Likewise.
39103 (struct La_s390_64_regs): Likewise.
39104 (struct La_s390_64_retval): Likewise.
39105 (struct La_sparc32_regs): Likewise.
39106 (struct La_sparc32_retval): Likewise.
39107 (struct La_sparc64_regs): Likewise.
39108 (struct La_sparc64_retval): Likewise.
39109 (struct audit_ifaces): Remove architecture-specific pltenter and
39110 pltexit members.
39111 * sysdeps/i386/ldsodefs.h: New file.
39112 * sysdeps/powerpc/ldsodefs.h: Likewise.
39113 * sysdeps/s390/ldsodefs.h: Likewise.
39114 * sysdeps/sh/ldsodefs.h: Likewise.
39115 * sysdeps/sparc/ldsodefs.h: Likewise.
39116 * sysdeps/x86_64/ldsodefs.h: Likewise.
39117
354691b7
MP
391182012-07-25 Marek Polacek <polacek@redhat.com>
39119
39120 [BZ #6808]
39121 * math/libm-test.inc (yn_test): Add another test.
39122 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
39123 to ERANGE when the result is +-Inf.
39124 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
39125 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
39126 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
39127 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
39128
bf9e2071
JM
391292012-07-24 Joseph Myers <joseph@codesourcery.com>
39130
39131 * conform/data/time.h-data (NULL): Use macro-constant. Require
39132 equal to 0.
39133 (CLOCKS_PER_SEC): Use macro instead of constant. Specify type as
39134 clock_t.
39135 [ISO11] (TIME_UTC): Use macro-int-constant. Require value > 0.
39136
57633811
TS
391372012-07-23 Thomas Schwinge <thomas@codesourcery.com>
39138
39139 * configure.in <sysdeps resolving>: Correct printing
39140 Implies_before.
39141 * configure: Regenerate.
39142
c23c33b0
TS
391432012-07-22 Thomas Schwinge <thomas@codesourcery.com>
39144
39145 * math/w_ilogb.c: Include <limits.h>.
39146 * math/w_ilogbl.c: Likewise.
39147
b5982523
JM
391482012-07-20 Joseph Myers <joseph@codesourcery.com>
39149
39150 * manual/lang.texi (__va_copy): Document primarily as ISO C99
39151 va_copy. Document allowing for unavailable va_copy only as
39152 pre-C99 compatibility.
39153 * manual/string.texi (Copying and Concatenation): Use va_copy
39154 instead of __va_copy in concat example.
39155
ac4ea442
PT
391562012-07-20 Pino Toscano <toscano.pino@tiscali.it>
39157
39158 * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
39159 (__sendto): Use create_address_port. Initialize APORT and deallocate
39160 it if not null.
39161
f98eafbd
PT
39162 * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
39163 with O_NOLINK passed to __file_name_lookup.
39164
898c7aab
PT
39165 * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
39166 with O_NOLINK passed to __file_name_lookup.
39167
0ced335a
PT
39168 * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
39169 negative N or less than NGIDS.
39170
b3404dbd
PT
39171 * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
39172 type to string_t. Set ERANGE as errno and return it if NAME is not big
39173 enough. Use memcpy instead of strncpy.
39174
0f48659e
JM
391752012-07-20 Joseph Myers <joseph@codesourcery.com>
39176
39177 * elf/Makefile (check-data): Remove.
39178 (localplt.data): New vpath directive.
39179 ($(objpfx)check-localplt.out): Use localplt.data from vpath
39180 instead of $(check-data).
39181 * scripts/data/localplt-generic.data: Move to ...
39182 * sysdeps/generic/localplt.data: ... here.
39183 * scripts/data/localplt-i386-linux-gnu.data: Move to ...
39184 * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
39185 * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
39186 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
39187 ... here.
39188 * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
39189 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
39190 ... here.
39191 * scripts/data/localplt-s390-linux-gnu.data: Move to ...
39192 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
39193 ... here.
39194 * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
39195 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
39196 ... here.
39197 * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
39198 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
39199 ... here.
39200 * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
39201 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
39202 ... here.
39203
d37cbdaa
AZ
392042012-07-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39205
39206 * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
39207 PPC32 and PPC64 files.
39208 * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
39209 * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
39210
46f85fc2
AK
392112012-07-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39212
39213 * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
39214 __makecontext_ret to ...
39215 * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
39216 ... here and call exit if uc_link is NULL. New file.
39217 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
39218 __makecontext_ret.S.
39219 * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
39220 __makecontext_ret to ...
39221 * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
39222 ... here and call exit if uc_link is NULL. New file.
39223 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
39224 __makecontext_ret.S.
39225
08f43f9b
AK
392262012-07-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39227
39228 * elf/elf.h (R_390_IRELATIVE): New definition.
39229 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
39230 resolver function for IFUNC symbols. Support R_390_IRELATIVE.
39231 (elf_machine_lazy_rel): Support R_390_IRELATIVE.
39232 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
39233 (elf_machine_lazy_rel): Likewise.
39234 * sysdeps/s390/dl-irel.h: New file.
39235 * sysdeps/s390/s390-64/memcpy.S: New asm code.
39236 * sysdeps/s390/s390-64/memset.S: New asm code.
39237 * sysdeps/s390/s390-64/memcmp.S: New asm code.
39238 * sysdeps/s390/s390-64/multiarch/memset.S: New file.
39239 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
39240 * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
39241 * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
39242 * sysdeps/s390/s390-64/multiarch/Makefile: New file.
39243 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
39244 * sysdeps/s390/s390-32/multiarch/Makefile: New file.
39245 * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
39246 * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
39247 * sysdeps/s390/s390-32/multiarch/memset.S: New file.
39248 * sysdeps/s390/s390-32/memcpy.S: New asm code.
39249 * sysdeps/s390/s390-32/memset.S: New asm code.
39250 * sysdeps/s390/s390-32/memcmp.S: New asm code.
39251
3b05db33
MP
392522012-07-17 Marek Polacek <polacek@redhat.com>
39253
39254 [BZ #14349]
39255 * sysdeps/s390/s390-32/configure.in: Remove TLS check.
39256 * sysdeps/s390/s390-64/configure.in: Likewise.
39257 * sysdeps/sparc/configure.in: Likewise.
39258 * sysdeps/powerpc/powerpc32/configure.in: Likewise.
39259 * sysdeps/powerpc/powerpc64/configure.in: Likewise.
39260 * sysdeps/i386/configure.in: Likewise.
39261 * sysdeps/x86_64/configure.in: Likewise.
39262 * sysdeps/sh/configure.in: Likewise.
39263 * sysdeps/s390/s390-32/configure: Regenerated.
39264 * sysdeps/s390/s390-64/configure: Likewise.
39265 * sysdeps/x86_64/configure: Likewise.
39266 * sysdeps/sh/configure: Likewise.
39267 * sysdeps/powerpc/powerpc64/configure: Likewise.
39268 * sysdeps/powerpc/powerpc32/configure: Likewise.
39269 * sysdeps/sparc/configure: Likwise.
39270 * sysdeps/i386/configure: Likewise.
39271
a66877c6
MP
39272 * elf/dl-open.c: Comment fixes.
39273
cfc82fd8
JM
392742012-07-17 Joseph Myers <joseph@codesourcery.com>
39275
bd29910a
JM
39276 * Makefile [CXX] (check-data): Remove.
39277 [CXX] (c++-types.data): New vpath directive.
39278 [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
39279 vpath. Do not allow for C++ type data being missing.
39280 * scripts/data/c++-types-alpha-linux-gnu.data: Move to
39281 ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
39282 * scripts/data/c++-types-ia64-linux-gnu.data: Move to
39283 ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
39284 * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
39285 * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
39286 * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
39287 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
39288 ... here.
39289 * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
39290 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
39291 ... here.
39292 * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
39293 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
39294 ... here.
39295 * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
39296 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
39297 ... here.
39298 * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
39299 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
39300 ... here.
39301 * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
39302 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
39303 ... here.
39304 * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
39305 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
39306 ... here.
39307 * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
39308 * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
39309
cfc82fd8
JM
39310 * elf/tls-macros.h (TLS_LE): Move architecture-specific
39311 definitions to architecture-specific files.
39312 (TLS_IE): Likewise.
39313 (TLS_LD): Likewise.
39314 (TLS_GD): Likewise.
39315 * sysdeps/i386/tls-macros.h: New file.
39316 * sysdeps/powerpc/tls-macros.h: Likewise.
39317 * sysdeps/s390/s390-32/tls-macros.h: Likewise.
39318 * sysdeps/s390/s390-64/tls-macros.h: Likewise.
39319 * sysdeps/sh/tls-macros.h: Likewise.
39320 * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
39321 * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
39322 * sysdeps/x86_64/tls-macros.h: Likewise.
39323
f7db3170
TS
393242012-07-17 Thomas Schwinge <thomas@codesourcery.com>
39325
07cbfc23
TS
39326 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
39327 zero value for regular exit case.
39328
f7db3170
TS
39329 * sysdeps/unix/sysv/linux/x86_64/__start_context.S
39330 (__start_context): Preserve zero value for regular exit case.
39331
dc97c227
TS
393322012-07-17 Thomas Schwinge <thomas@codesourcery.com>
39333 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
39334
39335 * manual/setjmp.texi (setcontext): Clarify normal process
39336 termination when uc_link is the null pointer.
39337 * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
39338 exit call.
39339
d0cd7d02
AS
393402012-07-16 Andreas Schwab <schwab@linux-m68k.org>
39341
39342 * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
39343 preprocessor. Test for each exception mask separately.
39344
dd318934
AJ
393452012-07-16 Andreas Jaeger <aj@suse.de>
39346
39347 * po/ru.po: Update from translation team.
39348
8048311a
JM
393492012-07-15 Joseph Myers <joseph@codesourcery.com>
39350
39351 * conform/data/string.h-data (NULL): Use macro-constant. Require
39352 equal to 0.
39353 [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
39354 (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
39355 (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
39356 (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
39357 [ISO || ISO99 || ISO11] (*_t): Do not allow.
39358
b637d46e
AJ
393592012-07-13 Andreas Jaeger <aj@suse.de>
39360
39361 * po/fr.po: Update from translation team.
39362
541428fe
MP
393632012-07-12 Marek Polacek <polacek@redhat.com>
39364
39365 [BZ #14173]
39366 * math/libm-test.inc (yn_test): Add test for BZ #14173.
39367 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
39368 loop condition.
39369
ec332e94
JM
393702012-07-12 Joseph Myers <joseph@codesourcery.com>
39371
39372 [BZ #13717]
39373 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
39374 Change to 2.4.1 where previously 2.4.0.
39375 * sysdeps/unix/sysv/linux/configure: Regenerated.
39376 * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
39377 (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
39378 version.
39379 [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
39380 (__ASSUME_AT_CLKTCK): Remove.
39381 (__ASSUME_AT_PAGESIZE): Likewise.
39382 (__ASSUME_AT_XID): Likewise.
39383 (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
39384 [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
39385 * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
39386 unconditionally.
39387 (HAVE_AUX_PAGESIZE): Likewise.
39388 * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
39389 [__ASSUME_AT_CLKTCK]: Make code unconditional.
39390 [!__ASSUME_AT_CLKTCK]: Remove conditional code.
39391
7b6e99be
JB
393922012-07-12 Jeroen van Bemmel <jvb127@gmail.com>
39393
39394 [BZ #14307]
39395 * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
39396 the temporary buffer used to invoke __gethostbyname2_r,
39397 __gethostbyaddr_r and gethostbyname4_r to make room for struct
39398 host_data / struct gaih_addrtuple.
39399 * resolv/nss_dns/dns-host.c (global scope): Move definition of
39400 implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
39401 header file nss/nsswitch.h.
39402 * nss/nsswitch.h (global scope): Add definition of implementation
39403 constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
39404 resolv/nss_dns/dns-host.c).
39405
608404eb
AJ
394062012-07-11 Andreas Jaeger <aj@suse.de>
39407
39408 * po/fr.po: Update from translation team.
39409
71220aca
AJ
39410 * po/sv.po: Update from translation team
39411 * po/fr.po: Another update from translation team.
39412
28cfe843
AZ
394132012-07-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39414
39415 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
39416 for subnormals or multiply small sinh result by itself.
39417 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
39418 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39419
6b90f981
DM
394202012-07-11 David S. Miller <davem@davemloft.net>
39421
39422 * sysdeps/sparc/fpu/libm-test-ulps: Update.
39423
c6825772
AS
394242012-07-10 Andreas Schwab <schwab@linux-m68k.org>
39425
39426 [BZ #14347]
39427 * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
39428 (INTERNAL_MARK): Shift it here.
39429
7b8e0d49
MP
394302012-07-10 Marek Polacek <polacek@redhat.com>
39431
39432 [BZ #14151]
39433 * configure.in (libc_cv_asm_global_directive): Remove test. Replace
39434 libc_cv_asm_global_directive with .globl.
39435 * configure: Regenerated.
39436 * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
39437 with .globl.
39438 * sysdeps/i386/configure: Regenerated.
39439 * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
39440 with .globl.
39441 * sysdeps/x86_64/configure: Regenerated.
39442 * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
39443 * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
39444 * elf/tst-unique2mod2.c: Likewise.
39445 * elf/tst-unique2mod1.c: Likewise.
39446 * elf/tst-unique1mod2.c: Likewise.
39447 * elf/tst-unique1mod1.c: Likewise.
39448 * sysdeps/s390/s390-32/sysdep.h: Likewise.
39449 * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
39450 * sysdeps/s390/s390-64/sysdep.h: Likewise.
39451 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
39452 * sysdeps/mach/sysdep.h: Likewise.
39453 * sysdeps/i386/sysdep.h: Likewise.
39454 * sysdeps/i386/i386-mcount.S: Likewise.
39455 * sysdeps/x86_64/_mcount.S: Likewise.
39456 * sysdeps/x86_64/sysdep.h: Likewise.
39457 * sysdeps/sh/_mcount.S: Likewise.
39458 * sysdeps/sh/sysdep.h: Likewise.
39459 * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
39460 * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
39461 * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
39462 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
39463 * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
39464 * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
39465 * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
39466 * locale/localeinfo.h: Likewise.
39467 (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
39468 (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
39469
6c55cda3
RM
394702012-07-09 Roland McGrath <roland@hack.frob.com>
39471
39472 [BZ #14336]
39473 * manual/charset.texi (Extended Char Intro): Word use fix, "operating
39474 system".
39475 * manual/message.texi (The Uniforum approach): Likewise.
39476 * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
39477 (glibc iconv Implementation): Likewise.
39478
638a572e
JM
394792012-07-09 Joseph Myers <joseph@codesourcery.com>
39480
39481 [BZ #14337]
39482 * math/s_clog.c (__clog): Avoid scaling a value down where that
39483 could result in underflow.
39484 * math/s_clog10.c (__clog10): Likewise.
39485 * math/s_clog10f.c (__clog10f): Likewise.
39486 * math/s_clog10l.c (__clog10l): Likewise.
39487 * math/s_clogf.c (__clogf): Likewise.
39488 * math/s_clogl.c (__clogl): Likewise.
39489 * math/libm-test.inc (clog_test): Add more tests.
39490 (clog10_test): Likewise.
39491 * sysdeps/i386/fpu/libm-test-ulps: Update.
39492 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39493
261f4859
AS
394942012-07-06 Andreas Schwab <schwab@linux-m68k.org>
39495
0abaf3e4
AS
39496 [BZ #14283]
39497 * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
39498 by 7 not 8 to examine high bit of fractional part.
39499
261f4859
AS
39500 [BZ #14042]
39501 * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
39502 for call to __mcount_internal.
39503 * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
39504 (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
39505 * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
39506
f17ac40d
JM
395072012-07-06 Joseph Myers <joseph@codesourcery.com>
39508
9ad63c23
JM
39509 [BZ #14154]
39510 * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
39511 approximation for values within 0x1p-13f of an odd multiple of
39512 pi/4.
39513 * math/libm-test.inc (tan_test): Do not allow spurious underflow
39514 exception. Add more tests.
39515 * sysdeps/i386/fpu/libm-test-ulps: Update.
39516
f17ac40d
JM
39517 [BZ #6778]
39518 * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
39519 inputs and return -1 for them. Do not check for +Inf in case not
39520 reachable for +Inf.
39521 * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
39522 * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
39523 (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
39524 and return -1 for them. Do not check for +Inf in case not
39525 reachable for +Inf.
39526 * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
39527 define.
39528 (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
39529 and return -1 for them. Do not check for +Inf in case not
39530 reachable for +Inf.
39531 * math/libm-test.inc (expm1_test): Add more tests. Do not allow
39532 spurious underflow.
39533 * sysdeps/i386/fpu/libm-test-ulps: Update.
39534 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39535
fb21f89b
MF
395362012-07-06 Mike Frysinger <vapier@gentoo.org>
39537
39538 * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
39539
cdfe2c5e
JM
395402012-07-05 Joseph Myers <joseph@codesourcery.com>
39541
39542 [BZ #14157]
39543 [BZ #14331]
39544 * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
39545 could result in spurious underflow. Scale down values above
39546 DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
39547 * math/s_csqrtf.c (__csqrtf): Likewise.
39548 * math/s_csqrtl.c (__csqrtl): Likewise.
39549 * math/libm-test.inc (csqrt_test): Add more tests. Do not allow
39550 spurious underflow.
39551 * sysdeps/i386/fpu/libm-test-ulps: Update.
39552 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39553
70d35b67
AS
395542012-07-04 Andreas Schwab <schwab@linux-m68k.org>
39555
704bc459
AS
39556 * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
39557 xopen-msg.sed.
39558 * catgets/xopen-msg.awk: New file.
39559 * catgets/xopen-msg.sed: Removed.
39560
70d35b67
AS
39561 * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
39562 po2text.sed.
39563 * intl/po2test.awk: New file.
39564 * intl/po2test.sed: Removed.
39565
ca61cf32
JM
395662012-07-04 Joseph Myers <joseph@codesourcery.com>
39567
39568 [BZ #14328]
39569 * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
39570 or multiply small sinh result by itself.
39571 * math/s_ctanf.c (__ctanf): Likewise.
39572 * math/s_ctanh.c (__ctanh): Likewise.
39573 * math/s_ctanhf.c (__ctanhf): Likewise.
39574 * math/s_ctanhl.c (__ctanhl): Likewise.
39575 * math/s_ctanl.c (__ctanl): Likewise.
39576 * math/libm-test.inc (ctan_test_tonearest): New function.
39577 (ctan_test_towardzero): Likewise.
39578 (ctan_test_downward): Likewise.
39579 (ctan_test_upward): Likewise.
39580 (ctanh_test_tonearest): Likewise.
39581 (ctanh_test_towardzero): Likewise.
39582 (ctanh_test_downward): Likewise.
39583 (ctanh_test_upward): Likewise.
39584 (main): Call these new functions.
39585 * sysdeps/i386/fpu/libm-test-ulps: Update.
39586 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39587
ca48a46a
MF
395882012-07-03 Mike Frysinger <vapier@gentoo.org>
39589
39590 * .gitignore: Delete /ports entry.
39591
9d63d37d
AJ
395922012-07-03 Andreas Jaeger <aj@suse.de>
39593
39594 * po/bg.po: Update from translation team.
39595 * po/cs.po: Likewise.
39596 * po/de.po: Likewise.
39597 * po/hr.po: Likewise.
39598 * po/nl.pl: Likewise.
39599 * po/pl.po: Likewise.
39600 * po/vi.po: Likewise.
39601
370ca3d2
JM
396022012-07-03 Joseph Myers <joseph@codesourcery.com>
39603
95f5a9a8
JM
39604 * Makeconfig [!+link] (+link-before-libc): New variable.
39605 [!+link] (+link-after-libc): Likewise.
39606 [!+link] (+link-tests): Likewise.
39607 [!+link] (+link): Define in terms of $(+link-before-libc) and
39608 $(+link-after-libc).
39609 [!+link-static] (+link-static-before-libc): New variable.
39610 [!+link-static] (+link-static-after-libc): Likewise.
39611 [!+link-static] (+link-static-tests): Likewise.
39612 [!+link-static] (+link-static): Define in terms of
39613 $(+link-static-before-libc) and $(+link-static-after-libc).
39614 [build-shared] (link-libc-before-gnulib): New variable.
39615 [build-shared] (link-libc-tests): Likewise.
39616 [build-shared] (link-libc): Define in terms of
39617 $(link-libc-before-gnulib).
39618 [!build-shared] (link-libc-tests): New variable.
39619 (link-libc-static-tests): New variable.
39620 [!gnulib] (gnulib-arch): New variable.
39621 [!gnulib] (gnulib-tests): Likewise.
39622 [!gnulib] (static-gnulib-arch): Likewise.
39623 [!gnulib] (static-gnulib-tests): Likewise.
39624 [!gnulib] (gnulib): Use $(gnulib-arch). Do not use $(libgcc_eh).
39625 Define with "=" instead of ":=".
39626 [!gnulib] (static-gnulib): Use $(static-gnulib-arch). Do not use
39627 -lgcc_eh $(libunwind). Define with "=" instead of ":=".
39628 * Rules (binaries-all-notests): New variable.
39629 (binaries-all-tests): Likewise.
39630 (binaries-static-notests): Likewise.
39631 (binaries-static-tests): Likewise.
39632 (binaries-all): Define using $(binaries-all-notests) and
39633 $(binaries-all-tests).
39634 (binaries-static): Define using $(binaries-static-notests) and
39635 $(binaries-static-tests).
39636 (binaries-shared-tests): New variable.
39637 (binaries-shared-notests): Likewise.
39638 (binaries-shared): Remove variable.
39639 ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
39640 ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
39641 ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
39642 ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
39643 ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
39644 ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
39645 * elf/Makefile (sln-modules): New variable.
39646 (extra-objs): Add $(sln-modules:=.o).
39647 (ldconfig-modules): Add static-stubs.
39648 ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
39649 * elf/static-stubs.c: New file.
39650
7a845b2c
JM
39651 [BZ #14283]
39652 * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
39653 by 7 not 8 to examine high bit of fractional part. Use volatile
39654 variables when splitting into final array of floats if
39655 __FLT_EVAL_METHOD__ != 0.
39656 * math/libm-test.inc (cos_test): Add another test.
39657 (sin_test): Likewise.
39658 * sysdeps/i386/fpu/libm-test-ulps: Update.
39659
e2283f38
JM
39660 [BZ #14273]
39661 * math/libm-test.inc (cosh_test): Add more tests.
39662
370ca3d2
JM
39663 * version.h (RELEASE): Set to "development".
39664 (VERSION): Set to "2.16.90".
39665
ee9247c3
CD
396662012-06-30 Carlos O'Donell <carlos_odonell@mentor.com>
39667
39668 * NEWS: Update copyright. Remove last-updated date.
39669 Mention math library bug fixes and timezone data changes.
39670 * README: Mention GNU/Hurd, x32, and HPPA support status.
39671
4648c381
TS
396722012-06-28 Thomas Schwinge <thomas@codesourcery.com>
39673
39674 * manual/contrib.texi (Contributors): Sort alphabetically by last name.
39675
aac78a43
AJ
396762012-06-27 Andreas Jaeger <aj@suse.de>
39677
39678 * manual/contrib.texi (Contributors): Add Samuel Thibault.
39679
ed3dbfad
AJ
396802012-06-25 Andreas Jaeger <aj@suse.de>
39681
39682 * sysdeps/s390/fpu/libm-test-ulps: Update.
39683
4d0ee855
AS
396842012-06-23 Andreas Schwab <schwab@linux-m68k.org>
39685 Thomas Schwinge <thomas@codesourcery.com>
39686
39687 * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
39688 * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
39689 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
39690 fanotify_mark.
39691
af1bce34
TS
396922012-06-23 Thomas Schwinge <thomas@codesourcery.com>
39693
a9fa33ba
TS
39694 * sysdeps/mach/start.c: Remove file.
39695 * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
39696 * sysdeps/i386/init-first.c: Fix comment regarding start.S.
39697 * sysdeps/sh/init-first.c: Likewise.
39698
58f902b8
TS
39699 * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
39700 registers for frame unwinding purposes, add CFI directives.
39701 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
39702 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
39703 * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
39704 Likewise.
39705
1518f58b
TS
39706 * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
39707 __fortify_fail returning.
39708 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
39709
db9b5059
TS
39710 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
39711 sysdeps/sh/____longjmp_chk.S.
39712 * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
39713 on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
39714 * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
39715 (gen-as-const-headers): Append sigaltstack-offsets.sym.
39716
967705fe
TS
39717 * sysdeps/sh/abort-instr.h: New file.
39718 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
39719 process in case exit returns.
39720
a9def8c4
TS
39721 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
39722 initialize the GOT register before use.
39723
2a649725
TS
39724 * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
39725 calculation of ARGC > 4.
39726
af1bce34
TS
39727 * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
39728 meaningful names to some local labels.
39729
d230f50a
KK
397302012-06-22 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39731 Kaz Kojima <kkojima@rr.iij4u.or.jp>
39732
39733 * sysdeps/unix/sysv/linux/sh/bits/atomic.h
39734 (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
39735 (__arch_compare_and_exchange_val_16_acq): Likewise.
39736 (__arch_compare_and_exchange_val_32_acq): Likewise.
39737 (atomic_exchange_and_add): Fix gUSA sequence.
39738 (atomic_add): Likewise.
39739 (atomic_add_negative): Likewise.
39740 (atomic_add_zero): Likewise.
39741 (atomic_bit_test_set): Likewise.
39742
0479b305
AS
397432012-06-22 Andreas Schwab <schwab@redhat.com>
39744
39745 [BZ #13579]
39746 * include/link.h (struct link_map): Add l_free_initfini.
39747 * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
39748 l_initfini.
39749 * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
39750 * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
39751 * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
39752 set.
39753
0e3933b9
CD
397542012-06-22 Carlos O'Donell <carlos_odonell@mentor.com>
39755
39756 * configure.in: Use AC_LANG_SOURCE.
39757 * configure: Regenerate.
39758
4248b1b1
RM
397592012-06-22 Roland McGrath <roland@hack.frob.com>
39760
39761 * configure.in (libc_cv_localstatedir): New substituted variable.
39762 * configure: Regenerated.
39763 * config.make.in (localstatedir): New variable, substituted from
39764 libc_cv_localstatedir.
39765 * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
39766 * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
39767 ${prefix}/var to /var when we change ${prefix}/etc to /etc.
39768 * sysdeps/gnu/configure: Regenerated.
39769
006dd861
JL
397702012-06-21 Jeff Law <law@redhat.com>
39771
39772 [BZ #14277]
39773 * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
39774 free. Simplify list management for _LIBC case.
39775
79662d42
JM
397762012-06-21 Joseph Myers <joseph@codesourcery.com>
39777
b7abb4bf
JM
39778 [BZ #14273]
39779 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
39780 Clear sign bit of 64-bit integer value before comparing against
39781 overflow value.
39782
79662d42
JM
39783 * sysdeps/mach/configure: Regenerated.
39784
1f150908
L
397852012-06-21 H.J. Lu <hongjiu.lu@intel.com>
39786
39787 [BZ #14278]
39788 * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
39789
28363bbf
JL
397902012-06-21 Jeff Law <law@redhat.com>
39791
39792 [BZ #13882]
39793 * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection. Use
39794 uint16_t for elements in the "seen" array to avoid char overflows.
80784193 39795 * elf/dl-fini.c (_dl_sort_fini): Likewise.
28363bbf
JL
39796 * elf/dl-open.c (dl_open_worker): Likewise.
39797
09615db4
CD
397982012-06-21 Carlos O'Donell <carlos_odonell@mentor.com>
39799
39800 * scripts/list-sources.sh: Scan PORTS for translations.
39801 * po/libc.pot: Regenerated.
39802
2174c6dd
AJ
398032012-06-21 Andreas Jaeger <aj@suse.de>
39804
39805 [BZ #12194]
39806 * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
39807 warning.
39808 * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
39809 * bits/byteswap-16.h (__bswap_16): Likewise.
39810 * bits/byteswap.h (__bswap_constant_16): Likewise.
39811
3ee947b1
L
398122012-06-18 H.J. Lu <hongjiu.lu@intel.com>
39813
39814 [BZ #14117]
a2f34833
L
39815 * sysdeps/i386/fpu_control.h: Removed.
39816 * sysdeps/x86_64/fpu_control.h: Moved to ...
39817 * sysdeps/x86/fpu_control.h: Here.
39818
3ee947b1
L
39819 * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
39820 (_FPU_SETCW): Likewise.
39821
ed1825f8
L
398222012-06-15 H.J. Lu <hongjiu.lu@intel.com>
39823
25f1282a
L
39824 [BZ #14117]
39825 * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
39826 * sysdeps/x86/fpu/bits/mathinline.h: This.
39827 * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
39828
ed1825f8
L
39829 [BZ #14050]
39830 [BZ #14117]
39831 * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
39832 functions if __x86_64__ is defined.
39833
36d54b74
CLT
398342012-06-15 Chung-Lin Tang <cltang@codesourcery.com>
39835
39836 * string/endian.h: Add !__ASSEMBLER__ condition for including
39837 conversion interfaces.
39838
10285c21
JM
398392012-06-15 Joseph Myers <joseph@codesourcery.com>
39840
39841 [BZ #14241]
39842 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
39843 of ABS(x) in calculating zero to negative powers other than odd
39844 integers.
39845 * math/libm-test.inc (pow_test): Add more tests.
39846
06c5abbd
AJ
398472012-06-15 Andreas Jaeger <aj@suse.de>
39848
39849 * manual/contrib.texi (Contributors): Update entry of Liubov
39850 Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
39851 Machado Filho.
39852
a3aeac40
CH
398532012-06-15 Cyril Hrubis <metan@ucw.cz>
39854
39855 * string/string.h: Add __wur to GNU version of strerror_r.
39856
49bdf4c1
L
398572012-06-14 H.J. Lu <hongjiu.lu@intel.com>
39858
39859 [BZ #14229]
39860 * string/Makefile (tests): Add tst-strtok_r.
39861 * string/tst-strtok_r.c: New file.
39862 * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
39863 RAX_LP/RDX_LP on SAVE_PTR.
39864
834f9b8d
RM
398652012-06-14 Roland McGrath <roland@hack.frob.com>
39866
39867 * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
39868
75fa1921
JM
398692012-06-14 Joseph Myers <joseph@codesourcery.com>
39870
39871 * libm_test.inc (csqrt_test): Allow more spurious underflow
39872 exceptions.
39873 (j0_test): Likewise.
39874 (j1_test): Likewise.
39875 (y0_test): Likewise.
39876 (y1_test): Likewise.
39877
771766df
CD
398782012-06-13 Carlos O'Donell <carlos_odonell@mentor.com>
39879
39880 * po/Makefile (libc.pot): Use UTF-8 charset.
39881
ceb9e56b
PP
398822012-06-13 Paul Pluzhnikov <ppluzhnikov@google.com>
39883
39884 [BZ #14210]
39885 Suppress sign-conversion warning from FD_SET.
39886 See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
39887 * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
39888 not unsigned long int.
39889 * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
39890
ddb28975
L
398912012-06-12 H.J. Lu <hongjiu.lu@intel.com>
39892
39893 [BZ #14050]
39894 [BZ #14117]
39895 * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
39896 __extern_always_inline instead of __extern_inline.
39897 (__signbitf): Support __SSE2_MATH__ and C++ namespace.
39898 (__signbit): Likewise.
39899 (__signbitl): Support C++ namespace.
39900 (lrintf): New inline function.
39901 (lrint): Likewise.
39902 (llrintf): Likewise.
39903 (llrint): Likewise.
39904 (fmaxf): Likewise.
39905 (fmax): Likewise.
39906 (fminf): Likewise.
39907 (fmin): Likewise.
39908 (rint): Likewise.
39909 (rintf): Likewise.
39910 (ceil): Likewise.
39911 (ceilf): Likewise.
39912 (floor): Likewise.
39913 (floorf): Likewise.
39914 (nearbyint): Likewise.
39915 (nearbyintf): Likewise.
39916
d7b4fb26
TS
399172012-06-12 Thomas Schwinge <thomas@codesourcery.com>
39918
39919 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
39920 non-default versions.
39921
eb55f5c2
RM
399222012-06-11 Roland McGrath <roland@hack.frob.com>
39923
39924 [BZ #14218]
39925 * manual/argp.texi (Argp): Reword argp_parse description slightly.
39926
366af02c
TS
399272012-06-09 Thomas Schwinge <thomas@codesourcery.com>
39928
99ff6e5c
TS
39929 * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
39930 (FE_UPWARD, FE_DOWNWARD): Don't define.
39931 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
39932 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
39933
366af02c
TS
39934 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
39935 reading it.
39936 * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
39937 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
39938
793ea851
KK
399392012-06-09 Kaz Kojima <kkojima@rr.iij4u.or.jp>
39940
39941 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
39942 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
39943 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
39944 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
39945
a728a38f
L
399462012-06-06 H.J. Lu <hongjiu.lu@intel.com>
39947
39948 [BZ #14117]
c08010c7
L
39949 * sysdeps/i386/fpu/bits/fenv.h: Removed.
39950 * sysdeps/i386/fpu/Implies: New file.
39951 * sysdeps/x86_64/fpu/Implies: Likewise.
39952 * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
39953 * sysdeps/x86/fpu/bits/fenv.h: This.
39954
a728a38f
L
39955 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
39956 __SSE_MATH__.
39957
6e230d11
SP
399582012-06-06 Siddhesh Poyarekar <siddhesh@redhat.com>
39959
39960 [BZ #14134]
39961 * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
39962 character 0xffff that matches the last element of the
39963 conversion table.
39964
1b671feb
AZ
399652012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39966
39967 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
39968 fmodl commit.
39969
6043738b
AZ
399702012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39971
39972 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
39973 values higher than 25.6283.
39974
34ae0b32
AZ
399752012-06-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39976
39977 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
39978 subnormal exponent extraction and add some __builtin_expect.
39979 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
39980 Fix for subnormal mantissa calculation.
39981
1214ec8f
MF
399822012-06-04 Mike Frysinger <vapier@gentoo.org>
39983
39984 * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
39985 cpu2 is -1 and errno is not ENOSYS.
39986
f3d1f93c
L
399872012-06-04 H.J. Lu <hongjiu.lu@intel.com>
39988
39989 [BZ #14117]
0e4a3cd7
L
39990 * sysdeps/i386/i486/bits/string.h: Renamed to ...
39991 * sysdeps/x86/bits/string.h: This.
39992 * sysdeps/x86_64/bits/string.h: Removed.
39993
6704c645
L
39994 * sysdeps/i386/i486/bits/string.h: Define inline functions only
39995 if not compiling for x86-64, but compiling for >= i486.
39996
48495318
L
39997 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
39998 * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
39999
14adcbfc
L
40000 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
40001 New macro from Linux kernel 3.4.0.
40002 (FP_XSTATE_MAGIC2): Likewise.
40003 (FP_XSTATE_MAGIC2_SIZE): Likewise.
40004 (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
40005 (struct _fpx_sw_bytes): New struct.
40006 (struct _xsave_hdr): Likewise.
40007 (struct _ymmh_state): Likewise.
40008 (struct _xstate): Likewise.
40009
68e408ab
L
40010 * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
40011 * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
40012 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
40013 * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
40014 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
40015 * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
40016
f3d1f93c
L
40017 * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
40018 * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
40019 * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
40020 * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
40021 * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
40022 * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
40023
d9dc34cd
TMQMF
400242012-06-04 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
40025
40026 [BZ #13743]
40027 * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
40028 * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
40029 (sysdep_headers): Include sys/platform/ppc.h.
40030 * sysdeps/powerpc/test-gettimebase.c: Test for
40031 __ppc_get_timebase() to catch future ISA opcode/insn changes.
40032 * manual/Makefile (appendices): Include platform.texi.
40033 * manual/contrib.texi (Contributors): Update @node pointers.
40034 * manual/maint.texi (Maintenance): Likewise.
40035 (Platform): New node.
40036 * manual/platform.texi: New file. Document the new features.
40037
4af3879c
SP
400382012-06-04 Siddhesh Poyarekar <siddhesh@redhat.com>
40039 Jakub Jelinek <jakub@redhat.com>
40040
40041 [BZ #14188]
40042 * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
40043 where __builtin_expect is unavailable.
40044
2fd6ff13
DM
400452012-06-03 David S. Miller <davem@davemloft.net>
40046
40047 * stdlib/longlong.h: Updated from GCC.
40048
173f7220
AS
400492012-06-02 Andreas Schwab <schwab@linux-m68k.org>
40050
40051 [BZ #14042]
40052 * sysdeps/powerpc/powerpc32/mcount.c: New file.
40053 * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
40054 __mcount_internal.
40055 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
40056 (GLIBC_2.16): Likewise.
40057
f34a1c6f
L
400582012-06-01 H.J. Lu <hongjiu.lu@intel.com>
40059
40060 * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
40061
88a4576f
JM
400622012-06-01 Joseph Myers <joseph@codesourcery.com>
40063
ea32bcdd
JM
40064 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
40065 (default-abi): New variable.
40066 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
40067 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
40068 variable.
40069 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
40070 Likewise.
40071 * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
40072 Likewise.
40073 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
40074 Likewise.
40075
88a4576f
JM
40076 * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
40077 definition. Document in comment.
40078
402fe938
DM
400792012-06-01 David S. Miller <davem@davemloft.net>
40080
40081 * stdlib/longlong.h: Updated from GCC.
40082
3553723f
L
400832012-06-01 H.J. Lu <hongjiu.lu@intel.com>
40084
40085 [BZ #14117]
3bd872c4
L
40086 * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
40087 Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
40088 sys/debugreg.h sys/io.h here.
40089 * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
40090 sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
40091 sys/io.h.
40092 * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
40093 Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
40094 * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
40095 * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
40096 * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
40097 * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
40098
3553723f
L
40099 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
40100 Define only if __x86_64__ is defined.
40101
4842e4fe
JM
401022012-06-01 Joseph Myers <joseph@codesourcery.com>
40103
c5bfe3d5
JM
40104 [BZ #14048]
40105 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
40106 Use int64_t for variable i.
40107 * math/libm-test.inc (fmod_test): Add more tests.
40108
4842e4fe
JM
40109 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
40110 z computation is not scheduled after fetestexcept.
40111 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
40112 Use math_force_eval instead of asm to ensure calculation scheduled
40113 before exception test.
40114 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
40115 Ensure a1 + u.d computation is not scheduled after fetestexcept.
40116
efb73488
AJ
401172012-06-01 Aurelien Jarno <aurelien@aurel32.net>
40118
40119 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
40120 computation is not scheduled after fetestexcept.
40121
29bcce7c
L
401222012-06-01 H.J. Lu <hongjiu.lu@intel.com>
40123
40124 [BZ #14117]
40125 * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
40126 * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
40127
73a68f94
AZ
401282012-06-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
40129
40130 * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
40131 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
40132
67b6df78
L
401332012-05-31 H.J. Lu <hongjiu.lu@intel.com>
40134
edf2933a 40135 [BZ #14117]
ebc64a18
L
40136 * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
40137 <bits/wordsize.h>.
40138 (__WCHAR_MIN): Support __WORDSIZE == 64.
40139 (__WCHAR_MAX): Likewise.
40140
edf2933a
L
40141 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
40142 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
40143
57c6cf40
L
40144 [BZ #14183]
40145 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
40146 Defined with __SWORD_TYPE if __x86_64__ isn't defined.
40147
67b6df78 40148 [BZ #14117]
8eb6281e
L
40149 * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
40150 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
40151
aac639f4
L
40152 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
40153 * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
40154
67b6df78
L
40155 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
40156 Defined to 1 if __x86_64__ isn't defined.
40157 (_STAT_VER_LINUX_OLD): New.
40158 (st_atime): Remove duplicate.
40159 (st_mtime): Likewise.
40160 (st_ctime): Likewise.
40161
1c2cfe81
DM
401622012-05-31 David S. Miller <davem@davemloft.net>
40163
40164 * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
40165 entries.
40166
5be8418c
AS
401672012-06-01 Andreas Schwab <schwab@linux-m68k.org>
40168
e7725326
AS
40169 * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
40170 gen-libm-test.pl.
40171
5be8418c
AS
40172 [BZ #14132]
40173 * elf/dl-reloc.c: Include <_itoa.h>.
40174 (_dl_reloc_bad_type): Remove use of INTUSE.
40175 * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
40176 * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
40177 * stdio-common/psiginfo.c (psiginfo): Likewise.
40178 * stdio-common/psignal.c (psignal): Likewise.
40179 * string/strsignal.c (strsignal): Likewise.
40180 * include/signal.h (_sys_siglist): Declare hidden proto.
40181 * stdio-common/itoa-digits.c: Include <_itoa.h>. Replace
40182 INTVARDEF with libc_hidden_data_def.
40183 * stdio-common/itoa-udigits.c: Likewise.
40184 * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
40185 (_itoa_lower_digits_internal): Remove declaration.
40186 (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
40187 * sysdeps/gnu/siglist.c (_sys_siglist_internal)
40188 (_sys_sigabbrev_internal): Remove aliases.
40189 (_sys_siglist): Define hidden alias.
40190
507352f1
MT
401912012-05-31 Markus Trippelsdorf <markus@trippelsdorf.de>
40192
40193 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
40194 bits/sysctl.h.
40195
42bbb1c3
L
401962012-05-31 H.J. Lu <hongjiu.lu@intel.com>
40197
40198 [BZ #14117]
6bd784b6
L
40199 * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
40200 * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
40201
8bca20f0
L
40202 * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
40203 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
40204 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
40205 * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
40206 * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
40207 * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
40208
f9e890a9
L
40209 * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
40210 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
40211 * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
40212
471101a1
L
40213 * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
40214 with __addr.
40215 (insw): Likewise.
40216 (insl): Likewise.
40217 (outsb): Likewise.
40218 (outsw): Likewise.
40219 (outsl): Likewise.
40220
6451c862
L
40221 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
40222 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
40223 * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
40224
a254b8c9
L
40225 * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
40226 * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
40227 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
40228 * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
40229 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
40230 * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
40231
b8dfdd92
L
40232 * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
40233 * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
40234
578cd270
L
40235 * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
40236 * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
40237
de662f5f
L
40238 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
40239 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
40240 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
40241
25653439
L
40242 * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
40243 * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
40244 to ...
40245 * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
40246
6bad24a0
L
40247 * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
40248 * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
40249 * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
40250
42bbb1c3
L
40251 * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
40252 for x86-64.
40253 * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
40254
2d10d547
JM
402552012-05-31 Joseph Myers <joseph@codesourcery.com>
40256
40257 * math/math.h (M_El): Use two more decimal places.
40258 (M_LOG2El): Likewise.
40259 (M_LOG10El): Likewise.
40260 (M_LN2l): Likewise.
40261 (M_LN10l): Likewise.
40262 (M_PIl): Likewise.
40263 (M_PI_2l): Likewise.
40264 (M_PI_4l): Likewise.
40265 (M_1_PIl): Likewise.
40266 (M_2_PIl): Likewise.
40267 (M_2_SQRTPIl): Likewise.
40268 (M_SQRT2l): Likewise.
40269 (M_SQRT1_2l): Likewise.
40270
f230c29b
DM
402712012-05-31 David S. Miller <davem@davemloft.net>
40272
40273 * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
40274 values between float registers.
40275 * sysdeps/sparc/sparc64/memset.S: Likewise.
40276 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
40277
fed806c3
MF
402782012-05-31 Mike Frysinger <vapier@gentoo.org>
40279
40280 * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
40281 -D_FORTIFY_SOURCE=1.
40282 (CPPFLAGS-tst-longjmp_chk.c): Define.
40283 (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
40284 (CPPFLAGS-tst-longjmp_chk2.c): Define.
40285 * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
40286 CFLAGS-tst-wchar-h.c.
40287
30917259
MP
402882012-05-31 Marek Polacek <polacek@redhat.com>
40289
40290 [BZ #14132]
40291 * include/mntent.h (__setmntent_internal, __getmntent_r_internal
40292 __endmntent_internal): Remove declaration.
40293 (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
40294 (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
40295 * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
40296
1c58d5dc
DM
402972012-05-30 David S. Miller <davem@davemloft.net>
40298
40299 * sysdeps/sparc/sparc32/soft-fp/q_util.c
40300 (___Q_simulate_exceptions): Use real FP ops rather than writing
40301 into the %fsr.
40302 * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
40303 Likewise.
40304
7dc00e0d
L
403052012-05-30 H.J. Lu <hongjiu.lu@intel.com>
40306
40307 [BZ #14117]
0bd53985
L
40308 * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
40309 * sysdeps/x86/bits/xtitypes.h: This.
40310
3a257e66
L
40311 * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
40312 * sysdeps/x86/bits/wordsize.h: This.
40313
62f62904
L
40314 * sysdeps/i386/bits/huge_vall.h: Renamed to ...
40315 * sysdeps/x86/bits/huge_vall.h: This.
40316
404fe9d9
L
40317 * sysdeps/i386/bits/select.h: Removed.
40318 * sysdeps/x86_64/bits/select.h: Renamed to ...
40319 * sysdeps/x86/bits/select.h: This.
40320
d48d0446
L
40321 * sysdeps/i386/bits/setjmp.h: Removed.
40322 * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
40323 * sysdeps/x86/bits/setjmp.h: This.
40324
7dc00e0d
L
40325 * sysdeps/i386/bits/mathdef.h: Removed.
40326 * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
40327 * sysdeps/x86/bits/mathdef.h: This.
40328
03277f8f
AS
403292012-05-30 Andreas Schwab <schwab@linux-m68k.org>
40330
40331 [BZ #14132]
40332 * include/sys/socket.h (__connect_internal)
40333 (__libc_sa_len_internal): Remove declaration.
40334 (__connect, __libc_sa_len): Declare hidden_proto.
40335 (SA_LEN): Remove use of INTUSE.
40336 * socket/connect.c: Add libc_hidden_def.
40337 * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
40338 * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
40339 * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
40340 alias.
40341 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
40342 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
40343 * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
40344 of adding _internal alias.
40345
13764867
L
403462012-05-30 H.J. Lu <hongjiu.lu@intel.com>
40347
40348 [BZ #14117]
6bd97696
L
40349 * sysdeps/i386/bits/link.h: Removed.
40350 * sysdeps/i386/bits/linkmap.h: Likewise.
40351 * sysdeps/x86_64/bits/link.h: Renamed to ...
40352 * sysdeps/x86/bits/link.h: This.
40353 * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
40354 * sysdeps/x86/bits/linkmap.h: This.
40355
f726f0bb
L
40356 * sysdeps/i386/bits/endian.h: Removed.
40357 * sysdeps/x86_64/bits/endian.h: Renamed to ...
40358 * sysdeps/x86/bits/endian.h: This.
40359
13764867
L
40360 * sysdeps/i386/bits/byteswap.h: Removed.
40361 * sysdeps/i386/bits/byteswap-16.h: Likewise.
40362 * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
40363 * sysdeps/x86/bits/byteswap.h: This.
40364 * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
40365 * sysdeps/x86/bits/byteswap-16.h: This.
40366 * sysdeps/i386/Implies: Add x86.
40367 * sysdeps/x86_64/Implies: Likewise.
40368
ae251b0b
DM
403692012-05-30 David S. Miller <davem@davemloft.net>
40370
40371 * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
40372 (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
40373 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
40374 (FP_TRAPPING_EXCEPTIONS): Define.
40375 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
40376 (FP_TRAPPING_EXCEPTIONS): Define.
40377 * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
40378 subnormals only when inexact has been signalled or underflow
40379 exceptions are enabled.
40380 (_FP_PACK_CANONICAL): Likewise.
40381
d5c90867
L
403822012-05-30 H.J. Lu <hongjiu.lu@intel.com>
40383
40384 [BZ #14183]
40385 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
40386 Defined with __UWORD_TYPE if __x86_64__ isn't defined.
40387
63f1549e
RH
403882012-05-30 Richard Henderson <rth@twiddle.net>
40389
8d8f2279
RH
40390 * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
40391 with #ifndef NOT_IN_libc.
40392
63f1549e
RH
40393 * scripts/abilist.awk: Accept 8 fields. Handle Alpha functions
40394 marked to avoid plt entry.
40395
0ab0291b
L
403962012-05-30 H.J. Lu <hongjiu.lu@intel.com>
40397
40398 [BZ #14112]
40399 * Makeconfig (default-abi): New macro.
40400 (abi-includes): Likewise.
40401 ($(common-objpfx)soversions.mk): Remove WORDSIZE check. Use
40402 $(abi-$(default-abi)-lib-soname) for soname if defined.
40403 ($(common-objpfx)gnu/lib-names.stmp): Generate from
40404 abi-variants.
40405 * Makefile (installed-stubs): Likewise.
40406 * include/stubs-biarch.h: Removed.
40407 * scripts/lib-names.awk: Only handle one library at a time.
40408 * scripts/soversions.awk: Remove WORDSIZE support.
40409 * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
40410 entries.
40411 * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
40412 Removed.
40413 (syscall-list-default-condition): Likewise.
40414 (syscall-list-default-condition): Likewise.
40415 (syscall-list-includes): Likewise.
40416 ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
40417 syscall-list-* with abi-*. Handle undefined abi-variants.
40418 * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
40419 * sysdeps/unix/sysv/linux/i386/Implies: New file.
40420 * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
40421 * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
40422 * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
40423 * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
40424 Removed.
40425 (syscall-list-32-options): Likewise.
40426 (syscall-list-32-condition): Likewise.
40427 (syscall-list-64-options): Likewise.
40428 (syscall-list-64-condition): Likewise.
40429 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
40430 macro.
40431 * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
40432 Renamed to ...
40433 (abi-*): This.
40434 (abi-64-ld-soname): New macro.
40435 * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
40436 * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
40437 Renamed to ...
40438 (abi-*): This.
40439 * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
40440 * sysdeps/x86_64/x32/shlib-versions: Likewise.
40441
4da0431d
JM
404422012-05-30 Joseph Myers <joseph@codesourcery.com>
40443
3a85279c
JM
40444 * sysdeps/unix/sysv/linux/kernel-features.h
40445 (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
40446 * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
40447 include <kernel-features.h>.
40448 [!__NR_ftruncate64]: Remove conditional code.
40449 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40450 [__NR_ftruncate64]: Make code unconditional.
40451 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40452 * sysdeps/unix/sysv/linux/truncate64.c: Do not
40453 include <kernel-features.h>.
40454 [!__NR_ftruncate64]: Remove conditional code.
40455 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40456 [__NR_ftruncate64]: Make code unconditional.
40457 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40458 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
40459 include <kernel-features.h>.
40460 [!__NR_ftruncate64]: Remove conditional code.
40461 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40462 [__NR_ftruncate64]: Make code unconditional.
40463 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40464 * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
40465 include <kernel-features.h>.
40466 [!__NR_ftruncate64]: Remove conditional code.
40467 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40468 [__NR_ftruncate64]: Make code unconditional.
40469 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
40470
4da0431d
JM
40471 * configure.in (libc_cv_fpie): Weaken to a compile test using
40472 LIBC_TRY_CC_OPTION.
40473 * configure: Regenerated.
40474
11ef492c
AK
404752012-05-29 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
40476
40477 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
40478 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
40479 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
40480 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
40481 Refreshed.
40482 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
40483 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
40484 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
40485 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
40486 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
40487 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
40488 Refreshed.
40489
d66ef399
DM
404902012-05-27 David S. Miller <davem@davemloft.net>
40491
40492 * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
40493 (___Q_zero): New.
40494 (__Q_simulate_exceptions): Return void. Change to simulate
40495 exceptions by writing into the %fsr.
40496 * sysdeps/sparc/sparc64/soft-fp/qp_util.c
40497 (__Qp_handle_exceptions): Likewise.
40498 (numbers): Delete.
40499 * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
40500 __Qp_handle_exceptions.
40501 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
40502 __Qp_handle_exceptions.
40503 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
40504 as unused and give dummy FP_RND_NEAREST initializer.
40505 (FP_INHIBIT_RESULTS): Define.
40506 (___Q_simulate_exceptions): Update declaration.
40507 (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
40508 formatting.
40509 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
40510 as unused and give dummy FP_RND_NEAREST initializer.
40511 (__Qp_handle_exceptions): Update declaration.
40512 (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
40513 formatting.
40514
04fb54b5
TS
405152012-05-27 Thomas Schwinge <thomas@codesourcery.com>
40516
40517 * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
40518 the temporary FPU control word.
40519 * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
40520 * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
40521 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
40522 * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
40523 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
40524 * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
40525 * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
40526 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
40527 * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
40528 * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
40529 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
40530
3f99608f
KK
405312012-05-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
40532
40533 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
40534 fields.
40535
65a4de4e
CLT
405362012-05-27 Chung-Lin Tang <cltang@codesourcery.com>
40537
40538 * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
40539 * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
40540 * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
40541 * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
40542 Likewise.
40543 * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
40544 * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
40545 Likewise.
40546
15749d40
UD
405472012-05-27 Ulrich Drepper <drepper@gmail.com>
40548
40549 * po/h.po: Update from translation team.
40550
25dbcb27
AS
405512012-05-26 Andreas Schwab <schwab@linux-m68k.org>
40552
3d3f8e55
AS
40553 * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
40554
25dbcb27
AS
40555 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
40556 handling of denormals.
40557 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
40558 * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
40559 * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
40560 * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
40561 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
40562 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
40563 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
40564 Likewise.
40565
7ad47a80 405662012-05-26 Marek Polacek <polacek@redhat.com>
d81dcb35
MP
40567
40568 [BZ #14152]
40569 * math/libm-test.inc (fma_test): Don't always expect underflow
40570 exception.
40571
9c6ea9fa
SP
405722012-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
40573
40574 [BZ #12416]
40575 * elf/tst-execstack.c: Include stackinfo.h.
40576 (do_test): Adjust test case to ensure that pthread_getattr_np
40577 behaviour remains the same after marking stack executable.
40578
a8239222
JM
405792012-05-25 Joseph Myers <joseph@codesourcery.com>
40580
40581 * sysdeps/unix/sysv/linux/kernel-features.h
40582 (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
40583 * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
40584 kernel-features.h.
40585 [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
40586 [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
40587 * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
40588 kernel-features.h.
40589 [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
40590 [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
40591
918b5606
L
405922012-05-25 H.J. Lu <hongjiu.lu@intel.com>
40593
40594 * configure.in: Define the default includes to being none.
40595 * configure: Regenerated.
40596
3a097cc7
RM
405972012-05-25 Roland McGrath <roland@hack.frob.com>
40598
8422c9a5
RM
40599 * sysdeps/x86_64/__longjmp.S: Add a static probe here.
40600 * sysdeps/x86_64/setjmp.S: Likewise.
40601 * sysdeps/i386/bsd-setjmp.S: Likewise.
40602 * sysdeps/i386/bsd-_setjmp.S: Likewise.
40603 * sysdeps/i386/setjmp.S: Likewise.
40604 * sysdeps/i386/__longjmp.S: Likewise.
40605 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
40606 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
40607
3a097cc7
RM
40608 * include/stap-probe.h: New file.
40609 * configure.in: Handle --enable-systemtap.
40610 * configure: Regenerated.
40611 * config.h.in (USE_STAP_PROBE): New #undef.
40612 * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
40613 * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
40614 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
40615
21708942
JM
406162012-05-25 Joseph Myers <joseph@codesourcery.com>
40617
40618 [BZ #13717]
40619 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
40620 to 2.4.0 where earlier.
40621 * sysdeps/unix/sysv/linux/configure: Regenerated.
40622 * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
40623 <kernel-features.h>.
40624 [__ASSUME_32BITUIDS]: Make code unconditional.
40625 [!__ASSUME_32BITUIDS]: Remove conditional code.
40626 * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
40627 <kernel-features.h>.
40628 [__ASSUME_32BITUIDS]: Make code unconditional.
40629 [!__ASSUME_32BITUIDS]: Remove conditional code.
40630 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
40631 [__ASSUME_32BITUIDS]: Make code unconditional.
40632 (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
40633 * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
40634 <kernel-features.h>.
40635 [__ASSUME_32BITUIDS]: Make code unconditional.
40636 [!__ASSUME_32BITUIDS]: Remove conditional code.
40637 * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
40638 <kernel-features.h>.
40639 [__ASSUME_32BITUIDS]: Make code unconditional.
40640 [!__ASSUME_32BITUIDS]: Remove conditional code.
40641 * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
40642 <kernel-features.h>.
40643 [__ASSUME_32BITUIDS]: Make code unconditional.
40644 [!__ASSUME_32BITUIDS]: Remove conditional code.
40645 * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
40646 <kernel-features.h>.
40647 [__ASSUME_32BITUIDS]: Make code unconditional.
40648 [!__ASSUME_32BITUIDS]: Remove conditional code.
40649 * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
40650 <kernel-features.h>.
40651 [__ASSUME_32BITUIDS]: Make code unconditional.
40652 [!__ASSUME_32BITUIDS]: Remove conditional code.
40653 * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
40654 <kernel-features.h>.
40655 [__ASSUME_32BITUIDS]: Make code unconditional.
40656 [!__ASSUME_32BITUIDS]: Remove conditional code.
40657 * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
40658 <kernel-features.h>.
40659 [__ASSUME_32BITUIDS]: Make code unconditional.
40660 [!__ASSUME_32BITUIDS]: Remove conditional code.
40661 * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
40662 <kernel-features.h>.
40663 [__ASSUME_32BITUIDS]: Make code unconditional.
40664 [!__ASSUME_32BITUIDS]: Remove conditional code.
40665 * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
40666 <kernel-features.h>.
40667 [__ASSUME_32BITUIDS]: Make code unconditional.
40668 [!__ASSUME_32BITUIDS]: Remove conditional code.
40669 * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
40670 <kernel-features.h>.
40671 [__ASSUME_32BITUIDS]: Make code unconditional.
40672 [!__ASSUME_32BITUIDS]: Remove conditional code.
40673 * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
40674 <kernel-features.h>.
40675 [__NR_setresgid] (__setresgid): Do not declare.
40676 [__ASSUME_32BITUIDS]: Make code unconditional.
40677 [!__ASSUME_32BITUIDS]: Remove conditional code.
40678 * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
40679 <kernel-features.h>.
40680 [__NR_setresuid] (__setresuid): Do not declare.
40681 [__ASSUME_32BITUIDS]: Make code unconditional.
40682 [!__ASSUME_32BITUIDS]: Remove conditional code.
40683 * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
40684 <kernel-features.h>.
40685 [__ASSUME_32BITUIDS]: Make code unconditional.
40686 [!__ASSUME_32BITUIDS]: Remove conditional code.
40687 * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
40688 <kernel-features.h>.
40689 [__ASSUME_32BITUIDS]: Make code unconditional.
40690 [!__ASSUME_32BITUIDS]: Remove conditional code.
40691 * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
40692 <kernel-features.h>.
40693 [__ASSUME_32BITUIDS]: Make code unconditional.
40694 [!__ASSUME_32BITUIDS]: Remove conditional code.
40695 * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
40696 <kernel-features.h>.
40697 [__ASSUME_32BITUIDS]: Make code unconditional.
40698 [!__ASSUME_32BITUIDS]: Remove conditional code.
40699 * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
40700 <kernel-features.h>.
40701 [__ASSUME_32BITUIDS]: Make code unconditional.
40702 [!__ASSUME_32BITUIDS]: Remove conditional code.
40703 * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
40704 <kernel-features.h>.
40705 [__ASSUME_32BITUIDS]: Make code unconditional.
40706 [!__ASSUME_32BITUIDS]: Remove conditional code.
40707 * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
40708 <kernel-features.h>.
40709 [__ASSUME_32BITUIDS]: Make code unconditional.
40710 [!__ASSUME_32BITUIDS]: Remove conditional code.
40711 * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
40712 <kernel-features.h>.
40713 [__ASSUME_32BITUIDS]: Make code unconditional.
40714 [!__ASSUME_32BITUIDS]: Remove conditional code.
40715 * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
40716 <kernel-features.h>.
40717 [__ASSUME_32BITUIDS]: Make code unconditional.
40718 [!__ASSUME_32BITUIDS]: Remove conditional code.
40719 * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
40720 <kernel-features.h>.
40721 [__ASSUME_32BITUIDS]: Make code unconditional.
40722 [!__ASSUME_32BITUIDS]: Remove conditional code.
40723 * sysdeps/unix/sysv/linux/kernel-features.h
40724 (__ASSUME_SETRESUID_SYSCALL): Remove.
40725 (__ASSUME_SETRESGID_SYSCALL): Likewise.
40726 (__ASSUME_32BITUIDS): Likewise.
40727 (__ASSUME_LDT_WORKS): Likewise.
40728 (__ASSUME_O_DIRECTORY): Likewise.
40729 (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
40730 architecture but not kernel version.
40731 (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
40732 (__ASSUME_MMAP2_SYSCALL): Likewise.
40733 (__ASSUME_STAT64_SYSCALL): Likewise.
40734 (__ASSUME_IPC64): Likewise.
40735 * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
40736 <kernel-features.h>.
40737 [__ASSUME_32BITUIDS]: Make code unconditional.
40738 [!__ASSUME_32BITUIDS]: Remove conditional code.
40739 * sysdeps/unix/sysv/linux/opendir.c: Do not include
40740 <kernel-features.h>.
40741 [__ASSUME_O_DIRECTORY]: Make code unconditional.
40742 * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
40743 132096]: Remove conditional code.
40744 [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
40745 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
40746 <kernel-features.h>.
40747 [__ASSUME_32BITUIDS]: Make code unconditional.
40748 [!__ASSUME_32BITUIDS]: Remove conditional code.
40749 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
40750 <kernel-features.h>.
40751 [__ASSUME_32BITUIDS]: Make code unconditional.
40752 [!__ASSUME_32BITUIDS]: Remove conditional code.
40753 * sysdeps/unix/sysv/linux/setegid.c: Do not include
40754 <kernel-features.h>.
40755 [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
40756 unconditional.
40757 (__setresgid): Do not declare.
40758 [__ASSUME_32BITUIDS]: Make code unconditional.
40759 [!__ASSUME_32BITUIDS]: Remove conditional code.
40760 * sysdeps/unix/sysv/linux/seteuid.c: Do not include
40761 <kernel-features.h>.
40762 [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
40763 unconditional.
40764 (__setresuid): Do not declare.
40765 [__ASSUME_32BITUIDS]: Make code unconditional.
40766 [!__ASSUME_32BITUIDS]: Remove conditional code.
40767 * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
40768 <kernel-features.h>.
40769 [__ASSUME_32BITUIDS]: Make code unconditional.
40770 [!__ASSUME_32BITUIDS]: Remove conditional code.
40771 * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
40772 <kernel-features.h>.
40773 [__ASSUME_32BITUIDS]: Make code unconditional.
40774 [!__ASSUME_32BITUIDS]: Remove conditional code.
40775
a386f1cc
RH
407762012-05-25 Richard Henderson <rth@twiddle.net>
40777
40778 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
40779 dl_hwcap to ifunc resolver.
40780 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
40781 elf_ifunc_invoke.
40782 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
40783 dl_hwcap to ifunc resolver.
40784 * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
40785
b6550497
JM
407862012-05-24 Joseph Myers <joseph@codesourcery.com>
40787
40788 [BZ #14153]
40789 * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
40790 for |x| <= 2**-26, not 2**-57.
40791 * math/libm-test.inc (acos_test): Do not allow spurious underflow
40792 exception.
40793
b0bc23a1
JL
407942012-05-24 Jeff Law <law@redhat.com>
40795
40796 * stdio-common/Makefile (tests): Add bug25.
40797 * stdio-common/bug25.c: New test.
40798
347c92e9
L
407992012-05-24 H.J. Lu <hongjiu.lu@intel.com>
40800
40801 [BZ #13576]
40802 * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
40803 multiple of MALLOC_ALIGNMENT in size.
40804 (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
40805
6bcc8b3f
JM
408062012-05-24 Joseph Myers <joseph@codesourcery.com>
40807
40808 * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
40809 Require >= 256.
40810 (FILENAME_MAX): Use macro-int-constant.
40811 (FOPEN_MAX): Use macro-int-constant. Require >= 8.
40812 (_IOFBF): Use macro-int-constant.
40813 (_IOLBF): Likewise.
40814 (_IONBF): Likewise.
40815 (SEEK_CUR): Likewise.
40816 (SEEK_END): Likewise.
40817 (SEEK_SET): Likewise.
40818 (TMP_MAX): Likewise.
40819 (EOF): Use macro-int-constant. Require < 0.
40820 (NULL): Use macro-constant. Require == 0.
40821 (stdin): Require type to be FILE *.
40822 (stdout): Likewise.
40823 (stderr): Likewise.
40824 * conform/data/stdlib.h-data (EXIT_FAILURE): Use
40825 macro-int-constant.
40826 (EXIT_SUCCESS): Likewise.
40827 (NULL): Use macro-constant. Require == 0.
40828 (RAND_MAX): Use macro-int-constant.
40829 [ISO99 || ISO11] (lldiv_t): Require also for these standards.
40830 [C99-based standards] (strtof): Require function.
40831 [C99-based standards] (strtold): Likewise.
40832 [C99-based standards] (strtoll): Likewise.
40833 [C99-based standards] (strtoull): Likewise.
40834 [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
40835 [ISO || ISO99 || ISO11] (limits.h): Likewise.
40836 [ISO || ISO99 || ISO11] (math.h): Likewise.
40837 [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
40838 (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
40839 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40840
d18ea0c5
AS
408412012-05-24 Andreas Schwab <schwab@linux-m68k.org>
40842
40843 [BZ #14132]
56d25bb8
AS
40844 * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
40845 * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
40846 * intl/dgettext.c (DCGETTEXT): Likewise.
40847 * intl/gettext.c (DCGETTEXT): Likewise.
40848 * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
40849 * posix/regex_internal.h (gettext): Likewise.
40850 * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
40851 Remove declaration.
40852 * include/argz.h (__argz_count_internal)
40853 (__argz_stringify_internal): Remove declaration.
40854 (__argz_count, __argz_stringify): Declare hidden proto.
40855 * intl/dcgettext.c: Remove use of INTDEF.
40856 * string/argz-count.c: Replace INTDEF with libc_hidden_def.
40857 * string/argz-stringify.c: Likewise.
40858 * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
40859 (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
40860 Declare hidden proto.
d18ea0c5
AS
40861 * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
40862 (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
40863 Declare hidden proto.
40864 * include/stdio.h (__asprintf_internal): Don't declare.
40865 (__asprintf): Don't define as macro. Declare hidden proto.
40866 * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
40867 (__fsetlocking): Declare hidden proto.
40868 * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
40869 (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
40870 hidden proto.
40871 (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
40872 (_IO_setlinebuf): Remove use of INTUSE.
40873 (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
40874 (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
40875 (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
40876 Remove declaration.
40877 * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
40878 (_IO_do_flush): Remove use of INTUSE.
40879 (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
40880 (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
40881 (_IO_adjust_column, _IO_least_wmarker)
40882 (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
40883 (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
40884 (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
40885 (_IO_default_doallocate, _IO_wdefault_doallocate)
40886 (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
40887 (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
40888 (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
40889 (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
40890 (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
40891 (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
40892 (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
40893 (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
40894 (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
40895 (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
40896 (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
40897 (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
40898 (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
40899 proto.
40900 (_IO_flush_all_internal, _IO_adjust_column_internal)
40901 (_IO_default_uflow_internal, _IO_default_finish_internal)
40902 (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
40903 (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
40904 (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
40905 (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
40906 (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
40907 (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
40908 (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
40909 (_IO_file_xsgetn_internal, _IO_file_stat_internal)
40910 (_IO_file_close_internal, _IO_file_close_it_internal)
40911 (_IO_file_underflow_internal, _IO_file_overflow_internal)
40912 (_IO_file_init_internal, _IO_file_attach_internal)
40913 (_IO_file_fopen_internal, _IO_file_read_internal)
40914 (_IO_file_sync_internal, _IO_file_seek_internal)
40915 (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
40916 (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
40917 (_IO_str_underflow_internal, _IO_str_overflow_internal)
40918 (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
40919 (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
40920 (_IO_list_all_internal, _IO_link_in_internal)
40921 (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
40922 (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
40923 (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
40924 (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
40925 (_IO_do_write_internal, _IO_padn_internal)
40926 (_IO_getline_info_internal, _IO_getline_internal)
40927 (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
40928 (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
40929 (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
40930 (_IO_vfscanf_internal, _IO_vfprintf_internal)
40931 (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
40932 (_IO_init_internal, _IO_un_link_internal): Don't declare.
40933 * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
40934 with libc_hidden_ver, remove use of INTUSE.
40935 * libio/genops.c: Likewise.
40936 * libio/freopen.c: Likewise.
40937 * libio/freopen64.c: Likewise.
40938 * libio/iofclose.c: Likewise.
40939 * libio/iofdopen.c: Likewise.
40940 * libio/iofflush.c: Likewise.
40941 * libio/iofflush_u.c: Likewise.
40942 * libio/iofgets.c: Likewise.
40943 * libio/iofgets_u.c: Likewise.
40944 * libio/iofopen.c: Likewise.
40945 * libio/iofopncook.c: Likewise.
40946 * libio/iofread.c: Likewise.
40947 * libio/iofread_u.c: Likewise.
40948 * libio/ioftell.c: Likewise.
40949 * libio/iofwrite.c: Likewise.
40950 * libio/iogetline.c: Likewise.
40951 * libio/iogets.c: Likewise.
40952 * libio/iogetwline.c: Likewise.
40953 * libio/iopadn.c: Likewise.
40954 * libio/iopopen.c: Likewise.
40955 * libio/ioseekoff.c: Likewise.
40956 * libio/ioseekpos.c: Likewise.
40957 * libio/iosetbuffer.c: Likewise.
40958 * libio/iosetvbuf.c: Likewise.
40959 * libio/ioungetc.c: Likewise.
40960 * libio/ioungetwc.c: Likewise.
40961 * libio/iovdprintf.c: Likewise.
40962 * libio/iovsprintf.c: Likewise.
40963 * libio/iovsscanf.c: Likewise.
40964 * libio/memstream.c: Likewise.
40965 * libio/obprintf.c: Likewise.
40966 * libio/oldfileops.c: Likewise.
40967 * libio/oldiofclose.c: Likewise.
40968 * libio/oldiofdopen.c: Likewise.
40969 * libio/oldiofopen.c: Likewise.
40970 * libio/oldiopopen.c: Likewise.
40971 * libio/oldstdfiles.c: Likewise.
40972 * libio/putc.c: Likewise.
40973 * libio/setbuf.c: Likewise.
40974 * libio/setlinebuf.c: Likewise.
40975 * libio/stdfiles.c: Likewise.
40976 * libio/strops.c: Likewise.
40977 * libio/vasprintf.c: Likewise.
40978 * libio/vscanf.c: Likewise.
40979 * libio/vsnprintf.c: Likewise.
40980 * libio/vswprintf.c: Likewise.
40981 * libio/wfiledoalloc.c: Likewise.
40982 * libio/wfileops.c: Likewise.
40983 * libio/wgenops.c: Likewise.
40984 * libio/wmemstream.c: Likewise.
40985 * libio/wstrops.c: Likewise.
40986 * libio/__fpurge.c: Likewise.
40987 * libio/__fsetlocking.c: Likewise.
40988 * assert/assert.c: Likewise.
40989 * debug/fgets_chk.c: Likewise.
40990 * debug/fgets_u_chk.c: Likewise.
40991 * debug/fread_chk.c: Likewise.
40992 * debug/fread_u_chk.c: Likewise.
40993 * debug/gets_chk.c: Likewise.
40994 * debug/obprintf_chk.c: Likewise.
40995 * debug/vasprintf_chk.c: Likewise.
40996 * debug/vdprintf_chk.c: Likewise.
40997 * debug/vsnprintf_chk.c: Likewise.
40998 * debug/vsprintf_chk.c: Likewise.
40999 * malloc/mtrace.c: Likewise.
41000 * misc/error.c: Likewise.
41001 * misc/syslog.c: Likewise.
41002 * stdio-common/asprintf.c: Likewise.
41003 * stdio-common/fxprintf.c: Likewise.
41004 * stdio-common/getw.c: Likewise.
41005 * stdio-common/isoc99_fscanf.c: Likewise.
41006 * stdio-common/isoc99_scanf.c: Likewise.
41007 * stdio-common/isoc99_vfscanf.c: Likewise.
41008 * stdio-common/isoc99_vscanf.c: Likewise.
41009 * stdio-common/isoc99_vsscanf.c: Likewise.
41010 * stdio-common/printf-prs.c: Likewise.
41011 * stdio-common/printf_fp.c: Likewise.
41012 * stdio-common/printf_fphex.c: Likewise.
41013 * stdio-common/printf_size.c: Likewise.
41014 * stdio-common/putw.c: Likewise.
41015 * stdio-common/scanf.c: Likewise.
41016 * stdio-common/sprintf.c: Likewise.
41017 * stdio-common/tmpfile.c: Likewise.
41018 * stdio-common/vfprintf.c: Likewise.
41019 * stdio-common/vfscanf.c: Likewise.
41020 * stdlib/strfmon_l.c: Likewise.
41021 * sunrpc/openchild.c: Likewise.
41022 * sunrpc/xdr_stdio.c: Likewise.
41023 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
41024 * sysdeps/mach/hurd/tmpfile.c: Likewise.
41025
d6c33fda
RM
410262012-05-24 Roland McGrath <roland@hack.frob.com>
41027
c1487492
RM
41028 * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
41029
41030 * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
41031 in the third column, to generate for the shared library an IFUNC
41032 that uses _dl_vdso_vsym.
41033 * Makerules (COMPILE.c, compile-stdin.c): New variables.
41034 * Makeconfig (object-suffixes-noshared): New variable.
41035
41036 * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
41037 (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
41038 (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
41039 (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
41040
d6c33fda
RM
41041 [BZ #14132]
41042 * include/sys/time.h (__gettimeofday): Remove macro.
41043 (__gettimeofday, gettimeofday): Add libc_hidden_proto.
41044 * time/gettimeofday.c (__gettimeofday): Remove #undef.
41045 Remove INTDEF.
41046 (__gettimeofday): Add libc_hidden_def.
41047 (gettimeofday): Add libc_hidden_weak.
41048 * sysdeps/mach/gettimeofday.c: Likewise.
41049 * sysdeps/posix/gettimeofday.c: Likewise.
41050 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
41051 * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
41052 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
41053 (__gettimeofday_internal): Remove strong_alias.
41054 (__gettimeofday): Add libc_hidden_def.
41055 (gettimeofday): Add libc_hidden_weak.
41056 * sysdeps/unix/syscalls.list (gettimeofday):
41057 Remove __gettimeofday_internal alias.
41058
b5a2bbe6
L
410592012-05-24 Daniel Jacobowitz <drow@false.org>
41060 H.J. Lu <hongjiu.lu@intel.com>
41061
41062 [BZ #12495]
41063 * malloc/malloc.c (SMALLBIN_CORRECTION): New.
41064 (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
41065 (largebin_index_32_big): New.
41066 (largebin_index): Use it for 16-byte alignment.
41067 (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ. Don't update
41068 correction with front_misalign.
41069
cfba4fda
L
410702012-05-24 H.J. Lu <hongjiu.lu@intel.com>
41071
7f907421
L
41072 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
41073 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
41074 Likewise.
41075 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
41076 Likewise.
41077 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
41078 Likewise.
41079 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
41080 Likewise.
41081 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
41082 Likewise.
41083 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
41084 Likewise.
41085 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
41086 Likewise.
41087 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
41088 Likewise.
41089 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
41090 Likewise.
41091 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
41092 Likewise.
41093 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
41094 Likewise.
41095 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
41096 Likewise.
41097
cfba4fda
L
41098 * scripts/data/c++-types-x32-linux-gnu.data: New file.
41099 * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
41100
80bad0cc
JM
411012012-05-24 Joseph Myers <joseph@codesourcery.com>
41102
7a25eb06
JM
41103 [BZ #10846]
41104 [BZ #14036]
41105 * math/libm-test.inc (exp_test): Add test from bug 14036.
41106 (pow_test): Add test from bug 10846.
41107
795405f9
JM
41108 * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
41109 and other flags.
41110 (special_function): Do not include flags in test name.
41111 (parse_args): Likewise.
41112 * sysdeps/i386/fpu/libm-test-ulps: Update.
41113 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
41114 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
41115 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
41116 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41117
80bad0cc
JM
41118 * math/gen-libm-test.pl (%beautify): Add entries for underflow
41119 exceptions.
41120 * math/libm-test.inc ("Philosophy"): Update comment about
41121 exception testing.
41122 (UNDERFLOW_EXCEPTION): New macro.
41123 (UNDERFLOW_EXCEPTION_OK): Likewise.
41124 (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
41125 (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
41126 (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
41127 (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
41128 (INVALID_EXCEPTION_OK): Update value.
41129 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
41130 (OVERFLOW_EXCEPTION_OK): Likewise.
41131 (IGNORE_ZERO_INF_SIGN): Likewise.
41132 (test_exceptions): Handle underflow exceptions.
41133 (acos_test): Update for underflow exception expectations.
41134 (cexp_test): Likewise.
41135 (clog_test): Likewise.
41136 (clog10_test): Likewise.
41137 (csqrt_test): Likewise.
41138 (ctan_test): Likewise.
41139 (ctanh_test): Likewise.
41140 (exp_test): Likewise.
41141 (exp10_test): Likewise.
41142 (exp2_test): Likewise.
41143 (expm1_test): Likewise.
41144 (fma_test): Likewise.
41145 (j0_test): Likewise.
41146 (jn_test): Likewise.
41147 (nexttoward_test): Likewise.
41148 (pow_test): Likewise.
41149 (scalbn_test): Likewise.
41150 (scalbln_test): Likewise.
41151 (tan_test): Likewise.
41152 (y1_test): Likewise.
41153 * sysdeps/i386/fpu/libm-test-ulps: Update.
41154 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41155
9e0e3d0b
DM
411562012-05-23 David S. Miller <davem@davemloft.net>
41157
41158 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
41159 (__libc_sigaction): Remove unused local variables.
41160
ccd0a08f
L
411612012-05-23 H.J. Lu <hongjiu.lu@intel.com>
41162
41163 * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
41164
62bdf9a6
PE
411652012-05-23 Paul Eggert <eggert@cs.ucla.edu>
41166
f8591f80
PE
41167 mktime: avoid signed integer overflow
41168 * time/mktime.c (__mktime_internal): Do not mishandle the case
41169 where diff == INT_MIN.
41170
94c7d826
PE
41171 mktime: simplify computation of average
41172 * time/mktime.c (ranged_convert): Use new time_t_avg function
41173 instead of rolling our own (probably-slower) code.
41174
ce73d683
PE
41175 mktime: do not assume signed right shift propagates sign bit
41176 * time/mktime.c (isdst_differ): New static function.
41177 (__mktime_internal): No need to normalize tm_isdst now.
41178 (__mktime_internal, not_equal_tm): Use isdst_differ to compare
41179 tm_isdst values.
41180
72a22e59
PE
41181 mktime: merge another wrapv change from gnulib
41182 * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
41183 from some compilers.
41184
68605433
PE
41185 mktime: remove incorrect attempt at unusual arithmetics
41186 * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
41187 The code didn't really work on such machines anyway.
41188 (TYPE_MINIMUM): Assume two's complement.
41189 (twos_complement_arithmetic): Verify that long_int and time_t
41190 are two's complement (or unsigned, in the latter case).
41191
03cf7fe3
PE
41192 mktime: check signed shifts on long_int and time_t, too
41193 * time/mktime.c (SHR): Check that shifts work as desired
41194 on the types long_int and time_t too, as SHR is used on
41195 such types.
41196
f04dfbc2
PE
41197 mktime: do not assume 'long' is wide enough
41198 * time/mktime.c (verify): Move decl up.
41199 (long_int): New type.
41200 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
41201 to remove assumption in the code that 'long' is wide enough to
41202 store year values. This assumption is not true on x32 and on
41203 some non-glibc platforms.
41204
62bdf9a6
PE
41205 mktime: merge wrapv change from gnulib
41206 * time/mktime.c (WRAPV): New macro.
41207 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
41208 (guess_time_tm, __mktime_internal): Do not assume that signed
41209 integer overflow wraps around; modern compilers generate code
41210 where this assumption is no longer valid.
41211
5e292e4f
L
412122012-05-23 H.J. Lu <hongjiu.lu@intel.com>
41213
41214 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
41215 Replace "jmp L(pseudo_end)" with "ret".
41216 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
41217 Likewise.
41218
8caf8c87
AJ
412192012-05-23 Andreas Jaeger <aj@suse.de>
41220
41221 * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
41222 * sysdeps/unix/sysv/linux/poll.c: Remove file.
41223
1a09dc56
AJ
412242012-05-23 Andreas Jaeger <aj@suse.de>
41225 Maximilian Attems <max@stro.at>
41226
41227 * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
41228 New macros.
41229
1c87aba0
L
412302012-05-23 H.J. Lu <hongjiu.lu@intel.com>
41231
41232 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
41233 code so that pseudo_end is just ret and the stack pointer is
41234 correct also for static library in error case.
41235
40e45bd5
JM
412362012-05-23 Joseph Myers <joseph@codesourcery.com>
41237
c2670533
JM
41238 * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
41239 move to syscalls.list.
41240 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
41241 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
41242 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
41243 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
41244
40e45bd5
JM
41245 * manual/install.texi (Running make install): Do not mention Linux
41246 kernel version for which pt_chown is not needed.
41247 (Linux): Do not mention problems with nscd with 2.0 kernels.
41248 * INSTALL: Regenerated.
41249
be08eda5
AJ
412502012-05-23 Andreas Jaeger <aj@suse.de>
41251
41252 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
41253 (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
41254 macro.
41255 * sysdeps/unix/sysv/linux/s390/bits/mman.h
41256 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41257 * sysdeps/unix/sysv/linux/sh/bits/mman.h
41258 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41259 * sysdeps/unix/sysv/linux/i386/bits/mman.h
41260 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41261 * sysdeps/unix/sysv/linux/sparc/bits/mman.h
41262 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41263 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
41264 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
41265 * sysdeps/unix/sysv/linux/bits/in.h
41266 (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
41267
a6a056bb
RM
412682012-05-22 Roland McGrath <roland@hack.frob.com>
41269
41270 * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
41271 (PREPARE_VERSION): Just use assert instead, it will be elided
41272 under [NDEBUG] anyway.
41273
c9009328
L
412742012-05-22 H.J. Lu <hongjiu.lu@intel.com>
41275
41276 * sysdeps/unix/sysv/linux/Makefile: Include
41277 $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
cb191f23 41278 (sysdep_routines): Remove sysctl.
c9009328
L
41279 * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
41280 * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
41281 * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
41282 * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
41283 * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
41284
73338355
AJ
412852012-05-22 Andreas Jaeger <aj@suse.de>
41286
41287 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
41288 that pseudo_end is just ret and the stack pointer is correct also
41289 for static library in error case.
41290
d44638b0
PP
412912012-05-22 Paul Pluzhnikov <ppluzhnikov@google.com>
41292
41293 [BZ #14122]
41294 * nss/nsswitch.c (defconfig_entries): New variable.
41295 (__nss_database_lookup): Don't leak defconfig entries.
41296 (nss_parse_service_list): Don't leak on error paths.
41297 (free_database_entries): New function.
41298 (free_defconfig): New function.
41299 (free_mem): Move common code to free_database_entries.
41300
31a39bd8
L
413012012-05-22 H.J. Lu <hongjiu.lu@intel.com>
41302
da0331a8
L
41303 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
41304 Add arch_prctl.
41305 * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
41306
31a39bd8
L
41307 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
41308 (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
41309 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
41310 New macro.
41311 (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
41312 (INTERNAL_SYSCALL_TYPES): Likewise.
41313 (LOAD_ARGS_TYPES_[1-6]): Likewise.
41314 (LOAD_REGS_TYPES_[1-6]): Likewise.
41315 (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
41316 (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
41317
45470df3
AZ
413182012-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41319
41320 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
41321 copysignl for GLIBC_2_0.
41322 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
41323 finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
41324 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
41325 logbl for GLIBC_2_0.
41326 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
41327 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
41328
98a61bcb
L
413292012-05-22 H.J. Lu <hongjiu.lu@intel.com>
41330
a4f6e481
L
41331 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
41332 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
41333
f63d5db6
L
41334 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
41335 Use "neg %eax".
41336
98a61bcb
L
41337 * time/mktime.c: Update copyright years.
41338
95770f14
PE
413392012-05-22 Paul Eggert <eggert@cs.ucla.edu>
41340
6226efbd
PE
41341 mktime: merge comment-quoting-style change from gnulib
41342 * time/mktime.c: Quote 'like this' in comments.
41343 The GNU coding standards suggest that we no longer quote `like this',
41344 as "`" and "'" are typically rendered asymmetrically nowadays.
41345 The typical gnulib style is to quote 'like this' when quoting
41346 code, and "like this" when quoting English.
41347
b99e4f78
PE
41348 * time/mktime.c (compile-command): Add "-I.".
41349
643e01e6
PE
41350 mktime: merge mktime-internal.h change from gnulib
41351 * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
41352
2554247d
PE
41353 mktime: merge time_r change from gnulib
41354 * time/mktime.c [!_LIBC]: Do not include "time_r.h".
41355
826dd0ab
PE
41356 mktime: merge DEBUG change from gnulib
41357 * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
41358 case system <time.h> has a #define.
41359
bd83aabe
PE
41360 mktime: merge <sys/types.h> change from gnulib
41361 * time/mktime.c: Do not include <sys/types.h>; no longer needed,
41362 since <time.t> is now guaranteed to define time_t.
41363
95770f14
PE
41364 mktime: merge HAVE_CONFIG_H change from gnulib
41365 * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
41366
5e1a27a9
L
413672012-05-22 H.J. Lu <hongjiu.lu@intel.com>
41368
0e44a77e
L
41369 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
41370 Use "neg %eax".
41371
5e1a27a9
L
41372 * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
41373 __rlim_t cast.
41374 (struct rusage): Use anonymous union to pad each field to
41375 __syscall_slong_t.
41376
46259bec
DM
413772012-05-21 David S. Miller <davem@davemloft.net>
41378
41379 * Makefules (o-iterator): Remove .s cases.
41380 (compile-command.s): Delete.
41381 (COMPILE.s): Delete.
41382 * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
41383
59f0c22e
JM
413842012-05-21 Joseph Myers <joseph@codesourcery.com>
41385
41386 * configure.in (libc_cv_predef_stack_protector): Only consider
41387 "foobar" and "__stack_chk_fail" lines in libc_undefs.
41388 * configure: Regenerated.
41389
20c07380
L
413902012-05-21 H.J. Lu <hongjiu.lu@intel.com>
41391
bbb3154b
L
41392 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
41393 New macro. Use R*LP on int and pointer.
41394 (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
c5b3a2c0
L
41395 * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
41396 * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
bbb3154b
L
41397 * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
41398
20c07380
L
41399 * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
41400 [__WORDSIZE_TIME64_COMPAT32] instead of
41401 [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
41402 (struct utmp): Likewise.
41403 * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
41404 * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
41405 Renamed to ...
41406 (__WORDSIZE_TIME64_COMPAT32): This.
41407 * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
41408 * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
41409 * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
41410 * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
41411 * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
41412 (__WORDSIZE_TIME64_COMPAT32): New macro.
41413
d8d1017e
AJ
414142012-05-21 Andreas Jaeger <aj@suse.de>
41415
41416 * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
41417 only if [SHARED]. Add prototype for __wcschr_ia32.
41418
6c7fb145
RM
414192012-05-21 Roland McGrath <roland@hack.frob.com>
41420
41421 * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
41422 of %rbp unmolested in the jmp_buf while mangling the low bits.
41423 * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
41424 unmolested high bits of %rbp while demangling the low bits.
41425 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
41426
66274218
AJ
414272012-05-21 Andreas Jaeger <aj@suse.de>
41428
07c58f8f
AJ
41429 * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
41430 * sunrpc/svc_simple.c: Use it for registerrpc.
41431 * sunrpc/xcrypt.c: Use it for passwd2des.
41432
66274218
AJ
41433 * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
41434
61f65140
L
414352012-05-21 H.J. Lu <hongjiu.lu@intel.com>
41436
41437 * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
41438 Don't define if [__SYSCALL_WORDSIZE != 32].
41439 * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
41440 New macro.
41441
5fefb436
AJ
414422012-05-21 Bruno Haible <bruno@clisp.org>
41443 Andreas Jaeger <aj@suse.de>
41444
41445 [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
41446 * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
41447 inptr and inend for must_buffer_ch.
41448 * wcsmbs/tst-mbsnrtowcs.c: Remove file.
41449 * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
41450 * stdio-common/Makefile (tests): Remove bug15.
41451 (bug15-ENV): Remove macro.
41452 * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
41453 anymore.
41454
d8e272ab
AJ
414552012-05-19 Andreas Jaeger <aj@suse.de>
41456 Roland McGrath <roland@hack.frob.com>
41457
41458 * manual/contrib.texi: Completely rewritten. It contains now an
41459 alphabetical list of contributors and their contributions.
41460
4a56a162
RH
414612012-05-21 Richard Henderson <rth@twiddle.net>
41462
41463 * misc/getauxval.c (__getauxval): Use unsigned long int.
41464 * misc/sys/auxv.h: Include <sys/cdefs.h>.
41465 (getauxval): Use unsigned long int.
41466
d024d23c
L
414672012-05-21 H.J. Lu <hongjiu.lu@intel.com>
41468
41469 * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
41470
cbc00a03
RM
414712012-05-21 Roland McGrath <roland@hack.frob.com>
41472
41473 * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
41474 (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
41475 __alignof__ (long double).
41476
478143fa
AZ
414772012-05-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41478
41479 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41480
c7683a6d
RH
414812012-05-20 Richard Henderson <rth@twiddle.net>
41482
41483 * misc/getauxval.c: New file.
41484 * misc/sys/auxv.h: New file.
41485 * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
41486 (routines): Add getauxval.
41487 * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
41488 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
41489 * elf/dl-sysdep.c (_dl_auxv): Remove.
41490 (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
41491 * elf/dl-support.c (_dl_auxv): New variable.
41492 (_dl_aux_init): Initialize it.
41493 * manual/startup.texi (Auxiliary Vector): New node.
41494 * sysdeps/generic/bits/hwcap.h: New file.
41495 * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
41496 * sysdeps/powerpc/sysdep.h: ... here. Include it.
41497 * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
41498 * sysdeps/sparc/sysdep.h: ... here. Include it.
41499 * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
41500 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
cbc00a03
RM
41501 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
41502 Update.
c7683a6d
RH
41503 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
41504 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
41505 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
41506 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
41507 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
41508 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
41509 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
41510 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
41511
a6f1845d
AZ
415122012-05-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41513
41514 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41515
cbcbe830
DM
415162012-05-19 David S. Miller <davem@davemloft.net>
41517
41518 * sysdeps/sparc/fpu/libm-test-ulps: Update.
41519
e0b16cc2
JM
415202012-05-19 Joseph Myers <joseph@codesourcery.com>
41521
41522 [BZ #14123]
41523 * math/s_ccosh.c: Include <float.h>
41524 (__ccosh): Avoid internal overflow calculating sinh and cosh
41525 values before multiplying by sin and cos values.
41526 * math/s_ccoshf.c: Likewise.
41527 * math/s_ccoshl.c: Likewise.
41528 * math/s_csin.c: Likewise.
41529 * math/s_csinf.c: Likewise.
41530 * math/s_csinl.c: Likewise.
41531 * math/s_csinh.c: Likewise.
41532 * math/s_csinhf.c: Likewise.
41533 * math/s_csinhl.c: Likewise.
41534 * math/libm-test.inc (ccos_test): Add more tests.
41535 (ccosh_test): Likewise.
41536 (csin_test): Likewise.
41537 (csinh_test): Likewise.
41538 * sysdeps/i386/fpu/libm-test-ulps: Update.
41539 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41540
6ad13e08
L
415412012-05-19 H.J. Lu <hongjiu.lu@intel.com>
41542
f66f0ce8
L
41543 * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
41544 * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
41545
6ad13e08
L
41546 * sysdeps/x86_64/x32/_itoa.h: Add comment.
41547
b1d072a7
JM
415482012-05-19 Joseph Myers <joseph@codesourcery.com>
41549
41550 * sysdeps/powerpc/soft-fp/Makefile: Remove file.
41551 * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
41552 * sysdeps/powerpc/soft-fp/Versions: Likewise.
41553 * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
41554 * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
41555 * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
41556 * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
41557 * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
41558 * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
41559 * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
41560 * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
41561 * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
41562 * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
41563 * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
41564 * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
41565 * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
41566 * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
41567 * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
41568 * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
41569 * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
41570 * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
41571 * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
41572 * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
41573 * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
41574 * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
41575 * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
41576 * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
41577 * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
41578 * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
41579 * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
41580 * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
41581
9eae47cb
AJ
415822012-05-18 Andreas Jaeger <aj@suse.de>
41583
41584 * csu/.gitignore: Delete.
41585
bb07f69f
L
415862012-05-18 H.J. Lu <hongjiu.lu@intel.com>
41587
41588 * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
41589 (timex): Use __syscall_slong_t.
41590
e6bdb741
AJ
415912012-05-18 Andreas Jaeger <aj@suse.de>
41592 Carlos O'Donell <carlos_odonell@mentor.com>
41593
41594 * manual/install.texi (Configuring and compiling): Update
41595 description about files modified in the source directory.
d6c33fda 41596 * INSTALL: Regenerated.
e6bdb741 41597
1b74487e
L
415982012-05-18 H.J. Lu <hongjiu.lu@intel.com>
41599
41600 * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
41601 value. Use "or" to set return value to -1.
41602 * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
41603 negate return value.
41604
a88b64b9
TMQMF
416052012-05-18 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
41606
57f41c40
AS
41607 * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
41608 (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
a88b64b9
TMQMF
41609 failure if the compiler has Graphite support disabled.
41610 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
41611 Likewise.
57f41c40
AS
41612 * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
41613 (CFLAGS-memmove.c): Likewise.
a88b64b9
TMQMF
41614 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
41615 Likewise.
41616
3707636e
L
416172012-05-18 H.J. Lu <hongjiu.lu@intel.com>
41618
610b8622
L
41619 * sysdeps/x86_64/x32/_itoa.h: New file.
41620
7cd195df
L
41621 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
41622 getdents system call only if kernel and user dirents have the
41623 same d_ino and d_off.
41624
94b07d20
L
41625 * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
41626 LLONG_MAX != LONG_MAX.
41627 (_itoa_word): Use _ITOA_WORD_TYPE on value.
41628 (_fitoa_word): Likewise.
41629
18298070
L
41630 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
41631 years.
41632 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
41633 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
41634 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
41635
553c7ea4
L
41636 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
41637 include <bits/wordsize.h>. Check __x86_64__ instead of
41638 __WORDSIZE.
41639 (sigcontext): Use "__uint64_t" instead of "unsigned long int"
41640 if __x86_64__ is defined. Use anonymous union on fpstate.
41641
3707636e
L
41642 * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
41643 anonymous union.
41644
b53ef01a
AS
416452012-05-18 Andreas Schwab <schwab@linux-m68k.org>
41646
37fb1dc0
AS
41647 * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
41648 INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
41649 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
41650 Refer to _rtld_local_ro instead of _rtld_global_ro.
41651 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
41652 Likewise.
41653 * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
41654 Likewise.
41655 * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
41656 Likewise.
41657 * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
41658 * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
41659 of _rtld_global, and rtld_progname instead of _dl_argv[0].
41660
b53ef01a
AS
41661 * sysdeps/powerpc/powerpc32/dl-machine.c
41662 (__elf_machine_runtime_setup) [PROF]: Don't reference
41663 _dl_prof_resolve.
41664
7a185db2
AJ
416652012-05-18 Andreas Jaeger <aj@suse.de>
41666
41667 * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
41668 function only available for GCCs before 3.4 since GCC 3.4
41669 introduced a builtin.
41670 (lrint): Likewise.
41671 (llrintf): Likewise.
41672 (llrint): Likewise.
41673 (fmaxf): Likewise.
41674 (fmax): Likewise.
41675 (fminf): Likewise.
41676 (fmin): Likewise.
41677 (rint): Likewise.
41678 (rintf): Likewise.
41679 (nearbyint): Likewise.
41680 (nearbyintf): Likewise.
41681 (ceil): Likewise.
41682 (ceilf): Likewise.
41683 (floor): Likewise.
41684 (floorf): Likewise.
41685
3e5aef87
L
416862012-05-17 H.J. Lu <hongjiu.lu@intel.com>
41687
428bd707
L
41688 * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
41689 on both fields and cast pointer to __syscall_ulong_t.
41690
3e5aef87
L
41691 * bits/types.h (__fsword_t): New type.
41692 * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
41693 sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
41694 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
41695 (__FSWORD_T_TYPE): Likewise.
41696 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
41697 (__FSWORD_T_TYPE): Likewise.
41698 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
41699 (__FSWORD_T_TYPE): Likewise.
41700 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
41701 (__FSWORD_T_TYPE): Likewise.
41702 * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
41703 __SWORD_TYPE with __fsword_t.
41704 (statfs64): Likewise.
41705
1ba7c3dc
DM
417062012-05-17 David S. Miller <davem@davemloft.net>
41707
41708 * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
41709
59910343
AJ
417102012-05-17 Andreas Jaeger <aj@suse.de>
41711
41712 * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
41713 warning.
41714
2e4c1e9e
L
417152012-05-17 H.J. Lu <hongjiu.lu@intel.com>
41716
41717 * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
41718
de7f5ce7
AJ
417192012-05-17 Andreas Jaeger <aj@suse.de>
41720
41721 * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
41722 when it is used.
41723
286abc3d
CM
417242012-05-17 Chris Metcalf <cmetcalf@tilera.com>
41725
41726 * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
41727
477cc68e
L
417282012-05-17 H.J. Lu <hongjiu.lu@intel.com>
41729
41730 * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
41731 * sysdeps/x86_64/tst-mallocalign1.c: New file.
41732
1a0994f5
CD
417332012-05-17 Andreas Jaeger <aj@suse.de>
41734 Carlos O'Donell <carlos_odonell@mentor.com>
41735
41736 [BZ #14059]
41737 * sysdeps/x86_64/multiarch/init-arch.h
41738 (bit_YMM_Usable): Rename to...
41739 (bit_AVX_Usable): ... this.
41740 (bit_FMA4_Usable): New macro.
41741 (bit_XMM_state): New macro.
41742 (bit_YMM_state): New macro.
41743 [__ASSEMBLER__] (index_YMM_Usable): Rename to...
41744 [__ASSEMBLER__] (index_AVX_Usable): ... this.
41745 [__ASSEMBLER__] (index_FMA4_Usable): New macro.
41746 (CPUID_OSXSAVE): New macro.
41747 (CPUID_AVX): New macro.
41748 (CPUID_FMA4): New macro.
41749 (index_YMM_Usable): Rename to...
41750 (index_AVX_Usable): ... this.
41751 (HAS_AVX): Use HAS_ARCH_FEATURE.
41752 (HAS_FMA4): Likewise.
41753 (HAS_YMM_USABLE): Remove.
41754 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
41755 Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
41756 are present.
41757 * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
41758 * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
41759 * sysdeps/x86_64/multiarch/Makefile: Likewise.
41760 * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
41761 * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
41762
0af797de
CM
417632012-05-17 Chris Metcalf <cmetcalf@tilera.com>
41764
41765 * math/libm-test.c: Support platforms without multiple rounding modes.
41766 * math/bug-nextafter.c: Support platforms without FP exceptions.
41767 * math/bug-nexttoward.c: Likewise.
41768 * math/test-fenv.c: Likewise.
41769 * math/test-misc.c: Likewise.
41770 * stdlib/bug-getcontext.c: Likewise.
41771
e39745ff
AJ
417722012-05-17 Andreas Jaeger <aj@suse.de>
41773
41774 * manual/examples/search.c (critter_cmp): Change signature to
41775 avoid warnings.
41776 * manual/string.texi (Collation Functions): Likewise.
41777
48970aba
L
417782012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41779
41780 * bits/types.h: Fold copyright years.
41781 * bits/typesizes.h: Likewise.
41782 * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
41783 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
41784 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
41785 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
41786 * time/time.h: Likewise.
41787
bedee953
PP
417882012-05-16 Paul Pluzhnikov <ppluzhnikov@google.com>
41789
41790 [BZ #208]
41791 * malloc.c (int_mallinfo): Add parameter to accumulate statistics
41792 in instead of returning them. Return void.
41793 (__libc_mallinfo): Accumulate over all arenas.
41794 (__malloc_stats): Adjust for change in int_mallinfo interface.
41795
61653dfb
RM
417962012-05-16 Roland McGrath <roland@hack.frob.com>
41797
30b99d79
RM
41798 [BZ #10375]
41799 * configure.in (NM): Add AC_CHECK_TOOL for it.
41800 (libc_extra_cflags): New substituted variable.
41801 Check for -fstack-protector being used implicitly.
41802 * configure: Regenerated.
41803 * config.make.in (config-extra-cflags): New variable,
41804 gets @libc_extra_cflags@.
41805 * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
41806
61653dfb
RM
41807 [BZ #10375]
41808 * configure.in: Check for _FORTIFY_SOURCE being predefined.
41809 (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
41810 * configure: Regenerated.
41811 * config.make.in (CPPUNDEFS): New substituted variable.
41812 * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
41813 * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
41814 * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
41815
661768bb
L
418162012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41817
41818 * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
41819 (mq_attr): Use __syscall_slong_t.
41820
d4261567
L
418212012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41822
41823 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
41824 Check __x86_64__ instead of __WORDSIZE.
41825 (_STAT_VER_LINUX): Likewise.
41826 (stat): Check __x86_64__ instead of __WORDSIZE. Use
41827 __syscall_ulong_t and __syscall_slong_t.
41828 (stat64): Likewise.
41829
cf3ff365
L
418302012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41831
41832 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
41833
76cf3e4d
L
418342012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41835
41836 * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
41837
a637753a
L
418382012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41839
41840 * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
41841 __syscall_ulong_t.
41842
d5e05119
L
41843 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
41844 include <bits/wordsize.h>. Check __x86_64__ instead of
41845 __WORDSIZE.
41846 (greg_t): Use "__extension__ long long int" if __x86_64__ is
41847 defined.
41848 (mcontext_t): Replace "unsigned long" with "unsigned long long".
41849
f62ee380
L
41850 * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
41851 include <bits/wordsize.h>. Check __x86_64__ instead of
41852 __WORDSIZE.
41853 (user_regs_struct): Use "__extension__ unsigned long long"
41854 instead of "unsigned long" if __x86_64__ is defined.
41855 (user): Likewise. Pad after pointer field if __ILP32__ is
41856 defined.
41857
4e124ced
JM
418582012-05-16 Joseph Myers <joseph@codesourcery.com>
41859
6a3951a0
JM
41860 * configure.in (makeinfo): Require version 4.5 or later. Allow
41861 versions 5 to 9.
41862 * configure: Regenerated.
41863 * manual/install.texi (texinfo): Increase version requirement to
41864 4.5 or later.
41865 * INSTALL: Regenerated.
41866
4e124ced
JM
41867 * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
41868
953ca31a
L
418692012-05-16 H.J. Lu <hongjiu.lu@intel.com>
41870
41871 * sysdeps/x86_64/x32/gmp-mparam.h: New file.
41872
617aca05
L
41873 * sysdeps/x86_64/x32/ffs.c: New file.
41874
5762f7ae
L
41875 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
41876 __syscall_ulong_t.
41877 (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
41878 defined. Use __syscall_ulong_t.
41879 (shminfo): Use __syscall_ulong_t.
41880 (shm_info): Likewise.
41881
a26b6856
L
41882 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
41883 __syscall_ulong_t.
41884
cb2b9ef7
L
41885 * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
41886 <bits/wordsize.h>.
41887 (msgqnum_t): Use __syscall_ulong_t.
41888 (msglen_t): Likewise.
41889 (msqid_ds): Check __x86_64__ instead of __WORDSIZE. Use
41890 __syscall_ulong_t.
41891
34683bb0
L
41892 * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
41893 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
41894
84a68786
L
41895 * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
41896
48baa5f1
L
41897 * sysdeps/x86_64/x32/divdi3.c: New dummy file.
41898 * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
41899
180be88b
L
41900 * sysvipc/sys/msg.h (msgbuf): Replace long int with
41901 __syscall_slong_t.
41902
5e90c8ad
L
41903 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
41904 include <bits/wordsize.h>. Check __x86_64__ instead of
41905 __WORDSIZE.
41906
23dfb58b
L
41907 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
41908 "unsigned long long int" if __x86_64__ is defined.
41909 (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
41910
ce5d54b0
L
41911 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
41912 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
41913 (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
41914
13dc9eac
L
41915 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
41916 <stdint.h>.
41917 (GET_PC): Cast to uintptr_t first.
41918 (GET_FRAME): Likewise.
41919 (GET_STACK): Likewise.
41920
a7895d15
L
41921 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
41922 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
41923 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
41924 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
41925 * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
41926 * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
41927 * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
41928 * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
41929 * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
41930 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
41931 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
41932 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
41933 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
41934 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
41935 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
41936 * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
41937 * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
41938 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
41939 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
41940 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
41941 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
41942 * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
41943 * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
41944 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
41945 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
41946 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
41947 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
41948 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
41949 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
41950
656416c9
AS
419512012-05-16 Andreas Schwab <schwab@linux-m68k.org>
41952
5bd66283
AS
41953 * Makerules (+depfiles): Also collect depfiles from .oS in
41954 $(extra-objs).
41955 * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
41956 .oS, $(libnldbl-routines)).
41957
656416c9
AS
41958 * Makerules (native-compile-mkdep-flags): Define.
41959 * sunrpc/Makefile (extra-objs): Add $(addprefix
41960 cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
41961 ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
41962 of $(compile-mkdep-flags). Depend on $(before-compile) instead of
41963 calling $(make-target-directory).
41964
a46f2169
L
419652012-05-15 H.J. Lu <hongjiu.lu@intel.com>
41966
41967 * bits/types.h (__snseconds_t): Removed.
41968 * time/time.h (struct timespec): Replace __snseconds_t with
41969 __syscall_slong_t.
41970 * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
41971 * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
41972 Likewise.
41973 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
41974 (__SNSECONDS_T_TYPE): Likewise.
41975 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
41976 (__SNSECONDS_T_TYPE): Likewise.
41977 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
41978 (__SNSECONDS_T_TYPE): Likewise.
41979
6af6528b
L
419802012-05-15 H.J. Lu <hongjiu.lu@intel.com>
41981
41982 * sysdeps/mach/hurd/bits/typesizes.h
41983 (__SYSCALL_SLONG_TYPE): New macro.
41984 (__SYSCALL_ULONG_TYPE): Likewise.
41985
de986b56
L
419862012-05-15 H.J. Lu <hongjiu.lu@intel.com>
41987
41988 * bits/types.h (__syscall_slong_t): New type.
41989 (__syscall_ulong_t): Likewise.
41990
41991 * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
41992 (__SYSCALL_ULONG_TYPE): Likewise.
41993 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
41994 (__SYSCALL_SLONG_TYPE): Likewise.
41995 (__SYSCALL_ULONG_TYPE): Likewise.
41996 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
41997 (__SYSCALL_SLONG_TYPE): Likewise.
41998 (__SYSCALL_ULONG_TYPE): Likewise.
41999 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
42000 (__SYSCALL_SLONG_TYPE): Likewise.
42001 (__SYSCALL_ULONG_TYPE): Likewise.
42002
85736dc7
L
420032012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42004
42005 * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
42006 Add sigaltstack-offsets.sym.
42007 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
42008 <sigaltstack-offsets.h>.
42009 (CALL_FAIL): Use RSP_LP to operate on stack. Use RDI_LP on
42010 longjmp_msg pointer.
42011 (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC. Use
42012 R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
42013 signal stack.
42014 * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
42015
cc03b296
JM
420162012-05-15 Joseph Myers <joseph@codesourcery.com>
42017
a9538892
JM
42018 * elf/stackguard-macros.h: Remove file.
42019 * sysdeps/generic/stackguard-macros.h: New file.
42020 * sysdeps/i386/stackguard-macros.h: Likewise.
42021 * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
42022 * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
42023 * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
42024 * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
42025 * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
42026 * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
42027 * sysdeps/x86_64/stackguard-macros.h: Likewise.
42028 * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
42029 <elf/stackguard-macros.h>.
42030
cc03b296
JM
42031 [BZ #14109]
42032 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
42033 __aligned__ in attribute.
42034 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
42035 (gregset_t): Likewise.
42036
93171016
L
420372012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42038
42039 * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
42040 * sysdeps/x86_64/64/Implies-after: Here. New file.
42041 * sysdeps/x86_64/x32/Implies-after: New file.
42042
d86813a0
L
420432012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42044
42045 * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
42046 and access return value for _dl_profile_fixup. Use R10_LP to
42047 load frame size.
42048
2953ec75
L
420492012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42050
42051 * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
42052
3b550e9e
L
420532012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42054
42055 * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
42056 * sysdeps/x86_64/x32/sysdep.h: New file.
42057
eda41706
L
420582012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42059
42060 * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
42061 * sysdeps/x86_64/setjmp.S: Likewise.
42062
9ea01d93
AZ
420632012-05-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
42064
42065 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
42066 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
42067 * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
42068 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
42069 remove unused global constant.
42070
02a91938
CM
420712012-05-15 Chris Metcalf <cmetcalf@tilera.com>
42072
42073 * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
42074 include of <not-cancel.h>.
42075
6540185f
RM
420762012-05-15 Roland McGrath <roland@hack.frob.com>
42077
42078 * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
42079
509072a0
AJ
420802012-05-15 Jeff Law <law@redhat.com>
42081 Andreas Jaeger <aj@suse.de>
42082
42083 [BZ #13594]
42084 * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
42085 out from...
42086 * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
42087 * nscd/nscd-client.h: Add __nscd_acquire_maplock.
42088 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
42089 code changing __hst_map_handle.map.
42090
ba75122d
RM
420912012-05-15 Roland McGrath <roland@hack.frob.com>
42092
42093 * configure.in (sysnames): Look for Implies-before and Implies-after
42094 files.
42095 * configure: Regenerated.
42096
890d8bd8
L
420972012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42098
42099 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
42100 8-byte data alignment with LP_SIZE alignment.
42101
f6ee6623
L
421022012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42103
42104 * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
42105 into R10_LP.
42106
ea2626f6
L
421072012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42108
42109 * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
42110
085f715e
L
421112012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42112
42113 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
42114 * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
42115 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
42116 Likewise.
42117 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
42118
be8498fc
L
421192012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42120
42121 * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
42122 (stackinfo_sub_sp): Likewise.
42123
70bc83b9
L
421242012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42125
42126 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
42127 RAX_LP.
42128
9bc0b730
L
421292012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42130
42131 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
42132 into R*_LP.
42133
6d2850e7
L
421342012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42135
42136 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
42137 sizes into R*_LP.
42138
3cb84561
L
421392012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42140
42141 * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
42142
54e2ed81
L
421432012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42144
42145 * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
42146 into R11_LP and load __x86_64_shared_cache_size_half into
42147 R8_LP.
42148
8a17f349
L
421492012-05-15 H.J. Lu <hongjiu.lu@intel.com>
42150
42151 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
42152 R8_LP.
42153
777b1eea
AZ
421542012-05-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
42155
42156 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
42157 logb for POWER7.
42158 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
42159 logbf for POWER7.
42160 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
42161 logbl for POWER7.
42162 * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
42163 powerpc32/power7/fpu/s_logb.c via #include.
42164 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
42165 powerpc32/power7/fpu/s_logbf.c via #include.
42166 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
42167 powerpc32/power7/fpu/s_logbl.c via #include.
42168
d20d4ac2
JM
421692012-05-15 Joseph Myers <joseph@codesourcery.com>
42170
42171 * README.libm: Remove file.
42172
6cdef1ab
L
421732012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42174
42175 * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
42176 count for x32. Use R*_LP and omit operand-size suffix.
42177
0b254d8f
L
421782012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42179
42180 * shlib-versions: Move x86_64-.*-linux.* entries to ...
42181 * sysdeps/x86_64/64/shlib-versions: Here. New file.
42182 * sysdeps/x86_64/x32/shlib-versions: New file.
42183
ceb809dc
RM
421842012-05-14 Roland McGrath <roland@hack.frob.com>
42185
42186 * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
42187 * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
42188 Use _dl_fatal_printf instead.
42189
37f1abd4
JM
421902012-05-14 Joseph Myers <joseph@codesourcery.com>
42191
42192 * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
42193 set if not set by the user. Do not allow for being unset.
42194 * sysdeps/unix/sysv/linux/configure: Regenerated.
42195
11de3a33
L
421962012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42197
42198 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
42199 the `q' suffix from lea and replace .quad with ASM_ADDR.
42200
e02f153a
L
422012012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42202
42203 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
42204 the `q' suffix from xor/rol instructions. Use $2*LP_SIZE+1
42205 instead of $17.
42206 (PTR_DEMANGLE): Likewise.
42207
520ae0fd
L
422082012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42209
42210 * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
42211 (LP_OP): Likewise.
42212 (ASM_ADDR): Likewise.
42213 (RAX_LP): Likewise.
42214 (RBP_LP): Likewise.
42215 (RBX_LP): Likewise.
42216 (RCX_LP): Likewise.
42217 (RDI_LP): Likewise.
42218 (RSI_LP): Likewise.
42219 (RSP_LP): Likewise.
42220 (R8_LP): Likewise.
42221 (R9_LP): Likewise.
42222 (R10_LP): Likewise.
42223 (R10_LP): Likewise.
42224 (R11_LP): Likewise.
42225 (R12_LP): Likewise.
42226 (R13_LP): Likewise.
42227 (R14_LP): Likewise.
42228 (R15_LP): Likewise.
42229
b985be81
L
422302012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42231
42232 * sysdeps/x86_64/x32/dl-machine.h: New file.
42233
6a4888ff
AJ
422342012-05-14 Andreas Jaeger <aj@suse.de>
42235
42236 * manual/Makefile (subdir): Remove export of subdir.
42237 (all): Remove target.
42238 (.PHONY): Remove all from list.
42239 (mkinstalldirs): Remove.
42240 (.PHONY): Remove installdirs from list.
42241 ($(inst_infodir)/libc.info): Use make-target-directory.
42242 (installdirs): Remove.
42243 (subdir_%): Remove.
42244 (glibc-targets): Remove.
42245 (lib): Remove.
42246 (stubs): Remove.
42247 ($(objpfx)stubs ../po/manual.pot): Remove.
42248 ($(objpfx)stamp%): Remove.
42249 (make-target-directory): Remove.
42250 (subdir_install): Remove.
42251 (routines): Remove.
42252 (aux): Remove.
42253 (sources): Remove.
42254 (objects): Remove.
42255 (headers): Remove.
42256
42257 [BZ #13750]
42258 * manual/.gitignore: Remove, it's not needed anymore.
42259 * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
42260 all files in it.
42261 * manual/Makefile (dvi, pdf, info, html): Depend on files in build
42262 directory.
42263 (texis): Renamed to $(objpfx)texis.
42264 (texis-path): New, contains path to generated files.
42265 (chapters.%): Use texis-path for complete path, add extra argument
42266 libc-texinfo.sh.
42267 (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
42268 (libc/index.html, summary.texi): Add $(objpfx) as prefix.
42269 (summary,texi, stamp-summary): Use complete path of
42270 files. Generate files in build dir.
42271 (dir-add.texi): Build in build dir.
42272 (libm-err.texi,stamp-libm-err): Likewise.
42273 (version.texi, stamp-version): Likewise.
42274 (.%c.texi): Likewise.
42275 (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
42276 (mostlyclean): Remove target.
42277 (realclean): Remove target.
42278 (generated): Add new variable with contents from mostlyclean and
42279 realclean, remove entries duplicated in common-mostlyclean, add
42280 stamp-libm-err and stamp-version.
42281 (generated-dirs): Add libc directory.
42282 ($(inst_infodir)/libc.info): Install files from build dir.
42283
42284 * manual/install.texi (Configuring and compiling): Adjust since
42285 the info files are not part of the tar ball anymore.
42286
7ac77294
AJ
422872012-05-14 Andreas Jaeger <aj@suse.de>
42288
42289 * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
42290 variable.
42291
ffb7875d
JM
422922012-05-14 Joseph Myers <joseph@codesourcery.com>
42293
42294 [BZ #13717]
42295 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
42296 to 2.2.0 where earlier.
42297 * sysdeps/unix/sysv/linux/configure: Regenerated.
42298 * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
42299 Remove conditional code.
42300 [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
42301 * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
42302 Remove conditional code.
42303 [!__NR_lchown]: Likewise.
42304 [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42305 [__NR_lchown]: Likewise.
42306 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
42307 comment referencing __ASSUME_LCHOWN_SYSCALL.
42308 * sysdeps/unix/sysv/linux/i386/sigaction.c
42309 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42310 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42311 * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
42312 Remove conditional code.
42313 [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
42314 (__protocol_available): Remove #if 0 code.
42315 * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
42316 conditional code.
42317 [__ASSUME_SIOCGIFNAME]: Make code unconditional.
42318 * sysdeps/unix/sysv/linux/kernel-features.h
42319 (__ASSUME_GETCWD_SYSCALL): Don't define.
42320 (__ASSUME_REALTIME_SIGNALS): Likewise.
42321 (__ASSUME_PREAD_SYSCALL): Likewise.
42322 (__ASSUME_PWRITE_SYSCALL): Likewise.
42323 (__ASSUME_POLL_SYSCALL): Likewise.
42324 (__ASSUME_LCHOWN_SYSCALL): Likewise.
42325 (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
42326 non-SPARC.
42327 (__ASSUME_SIOCGIFNAME): Don't define.
42328 (__ASSUME_MSG_NOSIGNAL): Likewise.
42329 (__ASSUME_SENDFILE): Define unconditionally.
42330 (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
42331 * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
42332 conditional code.
42333 [__ASSUME_POLL_SYSCALL]: Make code unconditional.
42334 * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
42335 [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
42336 (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42337 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
42338 [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
42339 (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
42340 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
42341 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42342 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42343 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
42344 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42345 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42346 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
42347 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42348 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42349 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
42350 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42351 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42352 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
42353 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42354 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42355 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
42356 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
42357 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42358 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
42359 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42360 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42361 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
42362 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42363 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42364 * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
42365 Remove conditional code.
42366 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42367 * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
42368 Remove conditional code.
42369 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42370 * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
42371 [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
42372 * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
42373 Remove conditional code.
42374 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42375 * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
42376 Remove conditional code.
42377 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42378 * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
42379 Remove conditional code.
42380 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42381 * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
42382 Remove conditional code.
42383 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
42384 * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
42385 Remove conditional code.
42386 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42387 * sysdeps/unix/sysv/linux/sh/pwrite64.c
42388 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
42389 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
42390 * sysdeps/unix/sysv/linux/sigaction.c
42391 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42392 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42393 * sysdeps/unix/sysv/linux/sigpending.c
42394 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42395 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42396 * sysdeps/unix/sysv/linux/sigprocmask.c
42397 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42398 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42399 * sysdeps/unix/sysv/linux/sigsuspend.c
42400 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
42401 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
42402 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
42403 (__libc_missing_rt_sigs): Remove.
42404 (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
42405 (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
42406 * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
42407 Remove conditional code.
42408 [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
42409 * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
42410 return 1.
42411 * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
42412 [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
42413 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
42414 [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
42415
1bfb7291
AJ
424162012-05-14 Andreas Jaeger <aj@suse.de>
42417
caae5a81
AJ
42418 * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
42419 it's not used in glibc.
42420 (__coshm1): Likewise.
42421 (__acosh1p): Likewise.
42422 (__sgn): Likewise.
42423
1bfb7291
AJ
42424 * manual/string.texi (Copying and Concatenation): Add missing
42425 variable in concat example.
42426 Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
42427
c044d724
L
424282012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42429
144c5467 42430 [BZ #14103]
c044d724
L
42431 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
42432 __builtin_clzl with __builtin_clzll.
42433
2523c62b
L
424342012-05-14 H.J. Lu <hongjiu.lu@intel.com>
42435
42436 [BZ #14104]
42437 * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
42438 libc_freeres_ptr.
42439
d7bb4c42
LD
424402012-05-14 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
42441
42442 * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
42443 * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
42444 * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
42445 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
42446
9dc4e1fb
MF
424472012-05-14 Mike Frysinger <vapier@gentoo.org>
42448
42449 * NEWS: Update ia64 info.
42450
c7df0112
AS
424512012-05-12 Andreas Schwab <schwab@linux-m68k.org>
42452
42453 * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
42454 used as bcopy.
42455
dc70356c
TS
424562012-05-12 Thomas Schwinge <thomas@codesourcery.com>
42457
42458 * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
42459 * sysdeps/unix/syscalls.list (dup3): Likewise.
42460 * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
42461 * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
42462
9fb1a21f
L
424632012-05-11 H.J. Lu <hongjiu.lu@intel.com>
42464
42465 * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
42466 "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
42467
4822a2a5
L
424682012-05-11 H.J. Lu <hongjiu.lu@intel.com>
42469
42470 * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
42471 thread pointer.
42472 (TLS_IE): Use mov/add instead of movq/addq to load thread
42473 pointer.
42474 (TLS_GD_PREFIX): New.
42475 (TLS_GD): Use it.
42476
842b81d6
DM
424772012-05-11 David S. Miller <davem@davemloft.net>
42478
42479 * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
42480 * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
42481 (_FPU_SETCW): Likewise.
42482
1cf463cd
L
424832012-05-10 H.J. Lu <hongjiu.lu@intel.com>
42484
42485 * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
42486 is 32-byte aligned.
42487
60cc4a18
AS
424882012-05-11 Andreas Schwab <schwab@linux-m68k.org>
42489
42490 [BZ #11837]
42491 * iconvdata/gb18030.c: Update tables.
42492 (BODY for FROM_LOOP): Update. Handle two-byte encoded non-BMP
42493 characters specially.
42494 (BODY for TO_LOOP): Add encoding of missing ranges.
42495
febb44a4
TS
424962012-05-11 Thomas Schwinge <thomas@codesourcery.com>
42497
42498 [BZ #13673]
42499 * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
42500 * sysdeps/mach/hurd/dup3.c: Likewise.
42501 * sysdeps/mach/hurd/readlinkat.c: Likewise.
42502 * sysdeps/powerpc/memmove.c:: Likewise.
42503
0a10fb9e
L
425042012-05-10 H.J. Lu <hongjiu.lu@intel.com>
42505
42506 * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
42507 R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
42508
df8a552f
L
425092012-05-10 H.J. Lu <hongjiu.lu@intel.com>
42510
42511 * elf/elf.h (R_X86_64_RELATIVE64): New.
42512 (R_X86_64_NUM): Updated.
42513 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
42514 R_X86_64_RELATIVE64. Always use Elf64_Addr with R_X86_64_64.
42515 (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
42516 * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
42517 tst-quad1pie tst-quad2pie
42518 (modules-names): Add tst-quadmod1 tst-quadmod2.
42519 ($(objpfx)tst-quad1): New dependency.
42520 ($(objpfx)tst-quad2): Likewise.
42521 ($(objpfx)tst-quad1pie): Likewise.
42522 ($(objpfx)tst-quad2pie): Likewise.
42523 * sysdeps/x86_64/tst-quad1.c: New file.
42524 * sysdeps/x86_64/tst-quad1pie.c: New file.
42525 * sysdeps/x86_64/tst-quad2.c: Likewise.
42526 * sysdeps/x86_64/tst-quad2pie.c: Likewise.
42527 * sysdeps/x86_64/tst-quadmod1.S: Likewise.
42528 * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
42529 * sysdeps/x86_64/tst-quadmod2.S: Likewise.
42530 * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
42531
f34d6f84
ST
425322012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42533
f42d41d1
ST
42534 * io/fcntl.h (mode_t, off_t, pid_t): Define types.
42535 (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
42536 * streams/stropts.h (t_scalar_t): Define type.
42537
3c3571fc
ST
42538 * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
42539 (_PATH_PRESERVE): Set to "/var/lib".
42540 (_PATH_RWHODIR): Set to "/var/spool/rwho".
42541
61f06bd3
ST
42542 * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
42543 instead of int.
42544
918d4d71
ST
42545 * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
42546 if __dir_mkfile succeeded.
42547
f34d6f84
ST
42548 * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
42549 checking for _hurd_dtablesize. Unlock it right after having
42550 finished _hurd_dtable allocation.
42551
10589b4a
TS
425522012-05-10 Thomas Schwinge <thomas@schwinge.name>
42553
674cdbc7
TS
42554 * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
42555 * sysdeps/mach/hurd/configure: Regenerated.
42556 * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
42557 special-casing to...
42558 * sysdeps/gnu/configure.in: ... this new file.
42559 * sysdeps/unix/sysv/linux/configure: Regenerated.
42560 * sysdeps/gnu/configure: New generated file.
42561
8e41b99f
TS
42562 * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
42563 for Linux: use nsec instead of usec, as well as:
42564 [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
42565 members of type struct timespec.
42566 [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
42567 New macros.
42568 (struct stat64): Likewise.
42569 (_STATBUF_ST_NSEC): New macro.
42570 * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
42571
10589b4a
TS
42572 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
42573 __strtoul_internal rather than strtoul.
42574
63643c85
PT
425752012-05-10 Pino Toscano <toscano.pino@tiscali.it>
42576
42577 * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
42578 and reject them.
42579
3faebe6a
ST
425802012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42581
42582 * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
42583 which preserves existing values.
42584 * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
42585
c6474b07
PT
425862012-05-10 Pino Toscano <toscano.pino@tiscali.it>
42587
42588 * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
42589 TIMEOUT values. Return EINVAL for NFDS values either negative or
42590 greater than FD_SETSIZE.
42591
1043890b
ST
425922012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42593
42594 * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
42595 allocated, call __vm_protect to finish enabling the existing space, and
42596 pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
42597 allocate the remainder.
42598
37ed8b9b
PT
425992012-05-10 Pino Toscano <toscano.pino@tiscali.it>
42600
42601 * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
42602 address port. Set ADDR_LEN to 0 when not filling ADDRARG.
42603
db653660
ST
426042012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42605
37ed8b9b
PT
42606 * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
42607 sysdeps/mach/hurd/readlink.c.
b29d4053 42608
db653660
ST
42609 * posix/tst-sysconf.c (posix_options): Only use
42610 _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
42611 _POSIX_SYNCHRONIZED_IO when they are defined
42612 * sysdeps/mach/hurd/bits/posix_opt.h:
42613 (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
42614 (_XOPEN_REALTIME): Undefine macro.
42615 (_XOPEN_REALTIME_THREADS): Undefine macro.
42616 (_XOPEN_SHM): Undefine macro.
42617 [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
42618 macro to -1.
42619 [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
42620 macro to -1.
42621 (_POSIX_ASYNC_IO): Undefine macro.
42622 (_POSIX_PRIORITIZED_IO): Undefine macro.
42623 (_POSIX_SPIN_LOCKS): Define macro to -1.
42624
ee16e894
ST
42625 * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
42626 SA_NODEFER, SA_RESETHAND.
42627 * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
42628 O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
42629 F_DUPFD_CLOEXEC.
42630
6103ae3b
TS
426312012-05-10 Thomas Schwinge <thomas@schwinge.name>
42632
42633 * elf/Makefile (pldd-modules): Define unconditionally.
42634
80b4e5f3
TS
426352012-05-10 Thomas Schwinge <thomas@schwinge.name>
42636
42637 * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
42638
edadcbd6
ST
426392012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42640
42641 * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
42642 Return ENOENT when name is empty.
42643 * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
42644
80694780
TS
426452012-05-10 Thomas Schwinge <thomas@schwinge.name>
42646
1792c087
TS
42647 * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
42648
80694780
TS
42649 * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
42650
6b645f0d
ST
426512012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42652
80694780
TS
42653 Fix mlock in all cases except non-readable pages.
42654 * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
42655 instead of VM_PROT_ALL as parameter to __vm_wire function.
66cbbebc 42656
6b645f0d
ST
42657 * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
42658 (__mkdir): When path is `/', just fail with EEXIST.
42659 * sysdeps/mach/hurd/mkdirat.c: Likewise.
42660
e468f8a3
TS
426612012-05-10 Thomas Schwinge <thomas@schwinge.name>
42662
42663 * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
42664 <sys/uio.h> (for writev).
42665 * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
42666 and <sys/param.h> (for MIN).
42667
a4186cff
PT
426682012-05-10 Pino Toscano <toscano.pino@tiscali.it>
42669
42670 * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
42671 REQUESTED_TIME. Properly set the remaining time and return EINTR
42672 if interrupted.
42673
510bbf14
TS
426742012-05-10 Thomas Schwinge <thomas@schwinge.name>
42675
42676 * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
42677 Depend on against $(link-rpcuserlibs).
42678
5d5722e8
ST
426792012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42680
a4186cff
PT
42681 * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
42682 (__libc_stack_end): Do not use attribute_relro.
42683 * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
42684 * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
5d5722e8 42685 to libthread-provided value.
a4186cff
PT
42686 * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
42687 attribute_relro.
5d5722e8 42688
37233df9
TS
426892012-05-10 Thomas Schwinge <thomas@schwinge.name>
42690
be971a2b
TS
42691 [BZ #3748]
42692 * bits/libc-lock.h (__libc_once_get): New macro.
42693 * sysdeps/mach/bits/libc-lock.h: Likewise.
42694 * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
42695 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
42696 instead of using implementation details.
42697
37233df9
TS
42698 * libio/fileops.c: Unconditionally include <kernel-features.h>.
42699 * libio/freopen.c: Likewise.
42700 * libio/freopen64.c: Likewise.
42701 * misc/syslog.c: Likewise.
42702 * nscd/connections.c: Likewise.
42703 * nscd/netgroupcache.c: Likewise.
42704 * sysdeps/posix/getcwd.c: Likewise.
42705
38de94a5
RM
427062012-05-10 Roland McGrath <roland@hack.frob.com>
42707
42708 * math/w_ilogbf.c: Add #include <limits.h>.
42709
67530489
ST
427102012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42711
a4186cff 42712 * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
bbc49098
ST
42713 path instead of returning without unlocking.
42714
67530489
ST
42715 * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
42716 immediate-write ioctls.
42717 * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
42718
5aa3a74a
TS
427192012-05-10 Thomas Schwinge <thomas@schwinge.name>
42720
18bad2ae
TS
42721 * sysdeps/mach/hurd/i386/init-first.c (init): Use
42722 __builtin_frame_address instead of making assumptions about the
42723 location of the return address relative to DATA. Force early load of
42724 the return address.
42725 (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
42726 __builtin_frame_address.
42727
5aa3a74a
TS
42728 dup3 for GNU Hurd.
42729 * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
42730 * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c. Evolve it to
42731 implement dup3 and do some further code clean-ups.
42732 * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
42733 * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
42734
ecd0de9a
ST
427352012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42736
cd9fa985
ST
42737 * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
42738
a4186cff
PT
42739 * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
42740 HURD_CRITICAL_END around holding _hurd_dtable_lock.
42741 * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
42742 * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
42743 HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
42744 d->port.lock.
802ca5a5 42745
a4186cff
PT
42746 * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
42747 instead of setjmp/longjmp to restore the signal mask. Call sigsetjmp
42748 when handler == SIG_ERR, not when handler != SIG_ERR.
ecd0de9a 42749
bcf55240
TS
427502012-05-10 Thomas Schwinge <thomas@schwinge.name>
42751
6960eb42
TS
42752 * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
42753 (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
42754 definitions.
42755
eb43375f
TS
42756 accept4 for GNU Hurd.
42757 * include/sys/socket.h (__libc_accept4): New prototype.
42758 * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c. Evolve it
42759 to implement __libc_accept4.
42760 * sysdeps/mach/hurd/accept.c (accept): Reimplement using
42761 __libc_accept4.
42762 * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
42763
bcf55240
TS
42764 * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
42765 * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
42766 * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
42767 signal-defines.sym.
42768
6178c55b
ST
427692012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42770
a4186cff 42771 * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
6178c55b 42772
6f080c2f
TS
427732012-05-10 Thomas Schwinge <thomas@schwinge.name>
42774
42775 * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
42776 assertion on O_CLOEXEC flag.
42777 * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
42778 * hurd/intern-fd.c: Likewise.
42779 * hurd/port2fd.c: Likewise.
42780
bcfe3a54
ST
427812012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
42782
42783 [BZ #3906]
42784 * bits/in.h (IPV6_PKTINFO): Define new macro.
42785 (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
42786
89c9aa49
AZ
427872012-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
42788
42789 [BZ #13954]
42790 [BZ #13955]
42791 [BZ #13956]
42792 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
42793 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
42794 * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
42795 * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
42796 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
42797 * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
42798 * math/libm-test.inc (logb_test) : Additional logb tests.
42799
021db4be
AJ
428002012-05-09 Andreas Schwab <schwab@linux-m68k.org>
42801 Andreas Jaeger <aj@suse.de>
42802
42803 * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
42804 * configure: Regenerated.
42805 * config.h.in (LINK_OBSOLETE_RPC): New macro.
42806 * config.make.in (link-obsolete-rpc): New substituted variable.
42807 * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
42808 libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
42809 * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
42810 (shared-only-routines): Don't set it under [link-obsolete-rpc],
42811 so that libc.a contains the symbols.
42812 * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
42813 * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
42814 * sunrpc/auth_none.c: Likewise.
42815 * sunrpc/auth_unix.c: Likewise.
42816 * sunrpc/authdes_prot.c: Likewise.
42817 * sunrpc/authuxprot.c: Likewise.
42818 * sunrpc/clnt_gen.c: Likewise.
42819 * sunrpc/clnt_perr.c: Likewise.
42820 * sunrpc/clnt_raw.c: Likewise.
42821 * sunrpc/clnt_simp.c: Likewise.
42822 * sunrpc/clnt_tcp.c: Likewise.
42823 * sunrpc/clnt_udp.c: Likewise.
42824 * sunrpc/clnt_unix.c: Likewise.
42825 * sunrpc/des_crypt.c: Likewise.
42826 * sunrpc/des_soft.c: Likewise.
42827 * sunrpc/get_myaddr.c: Likewise.
42828 * sunrpc/key_call.c: Likewise.
42829 * sunrpc/key_prot.c: Likewise.
42830 * sunrpc/netname.c: Likewise.
42831 * sunrpc/pm_getmaps.c: Likewise.
42832 * sunrpc/pm_getport.c: Likewise.
42833 * sunrpc/pmap_clnt.c: Likewise.
42834 * sunrpc/pmap_prot.c: Likewise.
42835 * sunrpc/pmap_prot2.c: Likewise.
42836 * sunrpc/pmap_rmt.c: Likewise.
42837 * sunrpc/publickey.c: Likewise.
42838 * sunrpc/rpc_cmsg.c: Likewise.
42839 * sunrpc/rpc_common.c: Likewise.
42840 * sunrpc/rpc_dtable.c: Likewise.
42841 * sunrpc/rpc_prot.c: Likewise.
42842 * sunrpc/rpc_thread.c: Likewise.
42843 * sunrpc/rtime.c: Likewise.
42844 * sunrpc/svc.c: Likewise.
42845 * sunrpc/svc_auth.c: Likewise.
42846 * sunrpc/svc_raw.c: Likewise.
42847 * sunrpc/svc_run.c: Likewise.
42848 * sunrpc/svc_tcp.c: Likewise.
42849 * sunrpc/svc_udp.c: Likewise.
42850 * sunrpc/svc_unix.c: Likewise.
42851 * sunrpc/svcauth_des.c: Likewise.
42852 * sunrpc/xcrypt.c: Likewise.
42853 * sunrpc/xdr.c: Likewise.
42854 * sunrpc/xdr_array.c: Likewise.
42855 * sunrpc/xdr_float.c: Likewise.
42856 * sunrpc/xdr_intXX_t.c: Likewise.
42857 * sunrpc/xdr_mem.c: Likewise.
42858 * sunrpc/xdr_rec.c: Likewise.
42859 * sunrpc/xdr_ref.c: Likewise.
42860 * sunrpc/xdr_sizeof.c: Likewise.
42861 * sunrpc/xdr_stdio.c: Likewise.
42862
b5c086a2
RM
428632012-05-10 Roland McGrath <roland@hack.frob.com>
42864
42865 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
42866 change. Update copyright years.
42867
6d74dd09
JM
428682012-05-10 Joseph Myers <joseph@codesourcery.com>
42869
42870 * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
42871
28e72501
MK
428722012-05-10 Maxim Kuvyrkov <maxim@codesourcery.com>
42873 Joseph Myers <joseph@codesourcery.com>
42874 Paul Pluzhnikov <ppluzhnikov@google.com>
42875
42876 [BZ #14012]
42877 * sunrpc/Makefile [cross-compiling] (headers): Enable additions
42878 requiring rpcgen.
42879 [cross-compiling] (extra-libs): Likewise.
42880 [cross-compiling] (extra-libs-others): Likewise.
42881 [cross-compiling] (librpcsvc-routines): Likewise.
42882 [cross-compiling] (librpcsvc-inhibit-o): Likewise.
42883 [cross-compiling] (omit-deps): Likewise.
42884 (sunrpc-CPPFLAGS): New variable.
42885 (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
42886 (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
42887 (cross-rpcgen-objs): New variable.
42888 (extra-objs): Append $(cross-rpcgen-objs).
42889 ($(cross-rpcgen-objs)): New rule.
42890 ($(objpfx)cross-rpcgen): Likewise.
42891 (rpcgen-cmd): Define to use $(built-program-file). Expand
42892 comment.
42893 ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
42894 ($(objpfx)x%.stmp): Likewise.
42895 * sunrpc/proto.h [IS_IN_build] (_): Define.
42896 [IS_IN_build] (_libc_intl_domainname): Likewise.
42897
c8c59454
L
428982012-05-10 H.J. Lu <hongjiu.lu@intel.com>
42899
42900 * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
42901 Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
42902 and R_X86_64_TPOFF64.
42903
6f27cd16
JM
429042012-05-10 Joseph Myers <joseph@codesourcery.com>
42905
42906 * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
42907 sysdeps/unix/sysv/syscalls.list.
42908 (stime): Likewise.
42909 (utime): Likewise.
42910 * sysdeps/unix/sysv/syscalls.list: Remove file.
42911
02467e1c
PE
429122012-05-10 Paul Eggert <eggert@cs.ucla.edu>
42913
42914 [BZ #3440]
42915 * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
42916 (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
42917 (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
42918 (__LC_IDENTIFICATION): Make these macros useful in #if
42919 expressions, as required by C99.
42920
da392631
AS
429212012-05-10 Andreas Schwab <schwab@linux-m68k.org>
42922
42923 * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
42924 $(addsuffix .os,$(rpc-compat-routines)). Move include ../Rules
42925 after this.
42926
8115f29b
L
429272012-05-09 H.J. Lu <hongjiu.lu@intel.com>
42928
42929 * stdlib/longlong.h: Updated from GCC.
42930
bdd74070
AJ
429312012-05-09 Andreas Jaeger <aj@suse.de>
42932
edfe0dbe
AJ
42933 * nscd/nscd.c (run_modes): Make named enum, reorder so that
42934 default is first entry.
42935 (run_mode): Set type.
42936 (main): Remove informal message about syslog.
42937 (options): Fix typo.
42938
bcfe3a54
ST
42939 [BZ #14053]
42940 * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
bdd74070 42941 to asm.
bcfe3a54
ST
42942 (lrint): Likewise.
42943 (llrintf): Likewise.
42944 (llrint): Likewise.
42945 (rint): Likewise.
42946 (rintf): Likewise.
42947 (nearbyint): Likewise.
42948 (nearbyintf): Likewise.
bdd74070 42949
91d8d69e
AJ
429502012-05-09 Andreas Jaeger <aj@suse.de>
42951 Pedro Alves <palves@redhat.com>
42952
42953 * nscd/nscd.c (run_mode): Use enum.
42954 (main): Cleanup coding style issue.
42955
bb90b80b
AJ
429562012-05-09 Alexandre Oliva <aoliva@redhat.com>
42957 Andreas Jaeger <aj@suse.de>
42958
bcfe3a54
ST
42959 * nscd/nscd.c (go_background): Replaced with...
42960 (run_mode): ... this.
bb90b80b 42961 (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
bcfe3a54
ST
42962 (options): Add -F --foreground.
42963 (main): Implement it.
42964 (parse_opt): Parse it.
bb90b80b 42965
1a4b75a1
AJ
429662012-05-09 Andreas Jaeger <aj@suse.de>
42967
42968 [BZ #14083]
42969 * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
42970 !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
42971 -Wconversion warning.
42972 (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
42973 Likewise.
42974
b1cc2472
JM
429752012-05-09 Joseph Myers <joseph@codesourcery.com>
42976
42977 * conform/data/locale.h-data (NULL): Use macro-constant. Require
42978 == 0.
42979 (LC_ALL): Use macro-int-constant.
42980 (LC_COLLATE): Likewise.
42981 (LC_CTYPE): Likewise.
42982 (LC_MESSAGES): Likewise.
42983 (LC_MONETARY): Likewise.
42984 (LC_NUMERIC): Likewise.
42985 (LC_TIME): Likewise.
42986 [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
42987 (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
42988 [ISO || ISO99 || ISO11] (*_t): Do not allow.
42989 * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
42990 Specify type.
42991 [C99-based standards] (float_t): Expect type.
42992 [C99-based standards] (double_t): Expect type.
42993 [C99-based standards] (HUGE_VALF): Use macro-constant. Specify
42994 type.
42995 [C99-based standards] (HUGE_VALL): Likewise.
42996 [C99-based standards] (INFINITY): Likewise.
42997 [C99-based standards] (NAN): Likewise.
42998 [C99-based standards] (FP_INFINITE): Use macro-int-constant.
42999 [C99-based standards] (FP_NAN): Likewise.
43000 [C99-based standards] (FP_NORMAL): Likewise.
43001 [C99-based standards] (FP_SUBNORMAL): Likewise.
43002 [C99-based standards] (FP_ZERO): Likewise.
43003 [C99-based standards] (FP_FAST_FMA): Use
43004 optional-macro-int-constant. Specify type. Require == 1.
43005 [C99-based standards] (FP_FAST_FMAF): Likewise.
43006 [C99-based standards] (FP_FAST_FMAL): Likewise.
43007 [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
43008 [C99-based standards] (FP_ILOGBNAN): Likewise.
43009 [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
43010 Specify type.
43011 [C99-based standards] (MATH_ERREXCEPT): Likewise.
43012 [C99-based standards] (math_errhandling): Specify type.
43013 [ISO99 || ISO11] (signgam): Do not allow.
43014 [non-C99-based standards] (copysignf): Do not allow.
43015 [non-C99-based standards] (exp2f): Likewise.
43016 [non-C99-based standards] (log2f): Likewise.
43017 [non-C99-based standards] (modff): Allow.
43018 [non-C99-based standards] (erff): Do not allow.
43019 [non-C99-based standards] (erfcf): Likewise.
43020 [non-C99-based standards] (gammaf): Likewise.
43021 [non-C99-based standards] (hypotf): Likewise.
43022 [non-C99-based standards] (j0f): Likewise.
43023 [non-C99-based standards] (j1f): Likewise.
43024 [non-C99-based standards] (jnf): Likewise.
43025 [non-C99-based standards] (lgammaf): Likewise.
43026 [non-C99-based standards] (tgammaf): Likewise.
43027 [non-C99-based standards] (y0f): Likewise.
43028 [non-C99-based standards] (y1f): Likewise.
43029 [non-C99-based standards] (ynf): Likewise.
43030 [non-C99-based standards] (isnanf): Likewise.
43031 [non-C99-based standards] (acoshf): Likewise.
43032 [non-C99-based standards] (asinhf): Likewise.
43033 [non-C99-based standards] (atanhf): Likewise.
43034 [non-C99-based standards] (cbrtf): Likewise.
43035 [non-C99-based standards] (expm1f): Likewise.
43036 [non-C99-based standards] (ilogbf): Likewise.
43037 [non-C99-based standards] (log1pf): Likewise.
43038 [non-C99-based standards] (logbf): Likewise.
43039 [non-C99-based standards] (nextafterf): Likewise.
43040 [non-C99-based standards] (remainderf): Likewise.
43041 [non-C99-based standards] (rintf): Likewise.
43042 [non-C99-based standards] (scalbf): Likewise.
43043 [non-C99-based standards] (copysignl): Likewise.
43044 [non-C99-based standards] (exp2l): Likewise.
43045 [non-C99-based standards] (log2l): Likewise.
43046 [non-C99-based standards] (modfl): Allow.
43047 [non-C99-based standards] (erfl): Do not allow.
43048 [non-C99-based standards] (erfcl): Likewise.
43049 [non-C99-based standards] (gammal): Likewise.
43050 [non-C99-based standards] (hypotl): Likewise.
43051 [non-C99-based standards] (j0l): Likewise.
43052 [non-C99-based standards] (j1l): Likewise.
43053 [non-C99-based standards] (jnl): Likewise.
43054 [non-C99-based standards] (lgammal): Likewise.
43055 [non-C99-based standards] (tgammal): Likewise.
43056 [non-C99-based standards] (y0l): Likewise.
43057 [non-C99-based standards] (y1l): Likewise.
43058 [non-C99-based standards] (ynl): Likewise.
43059 [non-C99-based standards] (isnanl): Likewise.
43060 [non-C99-based standards] (acoshl): Likewise.
43061 [non-C99-based standards] (asinhl): Likewise.
43062 [non-C99-based standards] (atanhl): Likewise.
43063 [non-C99-based standards] (cbrtl): Likewise.
43064 [non-C99-based standards] (expm1l): Likewise.
43065 [non-C99-based standards] (ilogbl): Likewise.
43066 [non-C99-based standards] (log1pl): Likewise.
43067 [non-C99-based standards] (logbl): Likewise.
43068 [non-C99-based standards] (nextafterl): Likewise.
43069 [non-C99-based standards] (remainderl): Likewise.
43070 [non-C99-based standards] (rintl): Likewise.
43071 [non-C99-based standards] (scalbl): Likewise.
43072 [ISO || ISO99 || ISO11] (*_t): Do not allow.
43073 [non-C99-based standards] (FP_*): Do not allow.
43074 [C99-based standards] (FP_*): Change to
43075 FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
43076 * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43077 allow.
43078 * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
43079 (SIG_ERR): Likewise.
43080 [X/Open-based standards] (SIG_HOLD): Likewise.
43081 (SIG_IGN): Likewise.
43082 (SIGABRT): Use macro-int-constant. Specify type. Require
43083 positive value.
43084 (SIGFPE): Likewise.
43085 (SIGILL): Likewise.
43086 (SIGINT): Likewise.
43087 (SIGSEGV): Likewise.
43088 (SIGTER): Likewise.
43089 [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
43090 [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
43091 [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
43092 [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
43093 [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
43094 [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
43095 [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
43096 [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
43097 [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
43098 [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
43099 [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
43100 [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
43101 [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
43102 [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
43103 [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
43104 [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
43105 [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
43106 [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
43107 [X/Open-based standards] (SIGTRAP): Likewise.
43108 [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
43109 [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
43110 [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
43111 [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
43112 * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43113 allow.
43114
b9f1922d
IW
431152012-05-08 Ian Wienand <ianw@vmware.com>
43116
43117 [BZ #14080]
43118 * time/tzset.c (__tzset_parse_tz): Update default rules for
43119 daylight time changes in the Energy Policy Act of 2005.
43120
1db86e88
AJ
431212012-05-09 Andreas Jaeger <aj@suse.de>
43122
43123 [BZ #13983]
43124 * elf/ldconfig.c (parse_conf): Change string to make clear that
43125 ldconfig only issued a warning if ld.so.conf does not exist.
43126
dee4a4e3
DM
431272012-05-08 David S. Miller <davem@davemloft.net>
43128
ee0db190
DM
43129 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
43130 movxtod instead of popping the value on the stack.
43131
dee4a4e3
DM
43132 * sysdeps/sparc/fpu/libm-test-ulps: Update.
43133
6a43ec98
CD
431342012-05-08 Carlos O'Donell <carlos_odonell@mentor.com>
43135
43136 * config.h.in: Add HAVE_ARM_PCS_VFP.
43137
05c2c961
RMG
431382012-05-08 Roland Mc Grath <roland@hack.frob.com>
43139
bcfe3a54
ST
43140 [BZ #13979]
43141 * include/features.h: Warn if user requests __FORTIFY_SOURCE
43142 checking but the checks are disabled for any reason.
05c2c961 43143
4b30f61a
L
431442012-05-08 H.J. Lu <hongjiu.lu@intel.com>
43145
43146 * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
43147 and ELF64_R_TYPE with ELFW(R_TYPE).
43148
eee2bc67
JM
431492012-05-08 Joseph Myers <joseph@codesourcery.com>
43150
7ea5391a
JM
43151 * sysdeps/unix/sysv/syscalls.list (pause): Remove.
43152 (ulimit): Likewise.
43153
eee2bc67
JM
43154 * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
43155 (settimeofday): Likewise.
43156
abb66a67
MF
431572012-05-08 Mike Frysinger <vapier@gentoo.org>
43158
43159 * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1. Add
43160 a struct th_u2 inside the union, and move tu_block/tu_code into
43161 a new th_u3 union of tu_block/tu_code inside of that. Move
43162 th_data[1] into the th_u2 as tu_data[0]. Change tu_stuff[1] to
43163 tu_stuff[0]. Add a new tu_padding[4] to keep sizeof() the same.
43164 (th_block): Change to th_u1.th_u2.th_u3.tu_block.
43165 (th_code): Change to th_u1.th_u2.th_u3.tu_code.
43166 (th_stuff): Change to th_u1.tu_stuff.
43167 (th_data): Define.
43168 (th_msg): Change to th_u1.th_u2.tu_data.
43169
7f18b530
DM
431702012-05-07 David S. Miller <davem@davemloft.net>
43171
05760585
DM
43172 * sysdeps/sparc/fpu/libm-test-ulps: Update.
43173
7f18b530
DM
43174 [BZ #14074]
43175 * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
43176 (SETUP_PIC_REG): Use it.
43177 (SETUP_PIC_REG_LEAF): Use it.
43178
495fd99f
JM
431792012-05-07 Joseph Myers <joseph@codesourcery.com>
43180
43181 [BZ #13885]
43182 [BZ #13923]
43183 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43184 USE_AS_EXPM1L.
43185 (EXPL_FINITE): Likewise.
43186 (FLDLOG): Likewise.
43187 (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
43188 * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
43189 e_expl.S.
43190 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43191 USE_AS_EXPM1L.
43192 (EXPL_FINITE): Likewise.
43193 (FLDLOG): Likewise.
43194 (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
43195 * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
43196 e_expl.S.
43197 * math/libm-test.inc (expm1_test): Add more tests. Do not disable
43198 test of -max_value argument for long double.
43199 * sysdeps/i386/fpu/libm-test-ulps: Update.
43200 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43201
6693d694
DM
432022012-05-06 David S. Miller <davem@davemloft.net>
43203
43204 * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
43205 quad soft-float symbols whose references which are compiler
43206 generated.
43207 * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
43208
6c23e11c
JM
432092012-05-06 Joseph Myers <joseph@codesourcery.com>
43210
d8b82cad
JM
43211 [BZ #13884]
43212 [BZ #13914]
43213 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43214 USE_AS_EXP10L.
43215 (EXPL_FINITE): Likewise.
43216 (FLDLOG): Likewise.
43217 (c0): Likewise.
43218 (c1): Likewise.
43219 (__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
43220 Adjust comments for base varying.
43221 (__expl_finite): Change alias to EXPL_FINITE.
43222 * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
43223 e_expl.S.
43224 * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
43225 * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
43226 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
43227 * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
43228 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
43229 USE_AS_EXP10L.
43230 (EXPL_FINITE): Likewise.
43231 (FLDLOG): Likewise.
43232 (c0): Likewise.
43233 (c1): Likewise.
43234 (__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
43235 Adjust comments for base varying.
43236 (__expl_finite): Change alias to EXPL_FINITE.
43237 * math/libm-test.inc (exp10_test): Add more tests. Do not disable
43238 tests for bugs.
43239 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
43240
6c23e11c
JM
43241 [BZ #14064]
43242 * math/libm-test.inc (check_float_internal): Correct ulp
43243 calculation for subnormal expected results.
43244
29ba805c
AJ
432452012-05-06 Andreas Jaeger <aj@suse.de>
43246
43247 * Makeconfig (+math-flags): New, set to -frounding-math.
43248 (+cflags): Add +math-flags so that all of glibc gets compiled with
43249 it.
43250
43251 * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
43252
7b17aeda
JM
432532012-05-05 Joseph Myers <joseph@codesourcery.com>
43254
5779f134
JM
43255 * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
43256 Disable one test.
43257
41498f4d
JM
43258 [BZ #13787]
43259 [BZ #13922]
43260 [BZ #14036]
43261 * sysdeps/i386/fpu/e_expl.S (csat): New constant.
43262 (__ieee754_expl): Allow for and saturate large arguments.
43263 * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
43264 (u_threshold): Likewise.
43265 (__exp): Call __ieee754_exp before checking for overflow and
43266 underflow.
43267 * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
43268 (u_threshold): Likewise.
43269 (__expf): Call __ieee754_expf before checking for overflow and
43270 underflow.
43271 * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
43272 (u_threshold): Likewise.
43273 (__expl): Call __ieee754_expl before checking for overflow and
43274 underflow.
43275 * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
43276 (__ieee754_expl): Allow for and saturate large arguments.
43277 * math/libm-test.inc (exp_test): Add another test. Do not allow
43278 missing overflow exception on overflow.
43279 (expm1_test): Do not allow missing overflow exception on overflow.
43280
6698b8bf
JM
43281 * sysdeps/i386/fpu/e_expl.c: Move to ...
43282 * sysdeps/i386/fpu/e_expl.S: ... here. Write directly in assembly
43283 rather than using inline asm.
43284 * sysdeps/x86_64/fpu/e_expl.c: Remove file.
43285 * sysdeps/x86_64/fpu/e_expl.S: Copy from
43286 sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
43287
7b17aeda
JM
43288 * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
43289 (nice): Likewise.
43290 (poll): Likewise.
43291 (signal): Likewise.
43292 (time): Likewise.
43293 (times): Likewise.
43294
f7c85819
JM
432952012-05-04 Joseph Myers <joseph@codesourcery.com>
43296
43297 * sysdeps/unix/syscalls.list (adjtime): Add entry from
43298 sysdeps/unix/common/syscalls.list.
43299 (fchmod): Likewise.
43300 (fchown): Likewise.
43301 (ftruncate): Likewise.
43302 (getrusage): Likewise.
43303 (gettimeofday): Likewise.
43304 (setpgid): Likewise.
43305 (setregid): Likewise.
43306 (setreuid): Likewise.
43307 (sigaction): Likewise.
43308 (truncate): Likewise.
43309 (vhangup): Likewise.
43310 * sysdeps/unix/common/syscalls.list: Remove file.
43311 * sysdeps/unix/bsd/Implies: Don't include unix/common.
43312 * sysdeps/unix/sysv/linux/Implies: Likewise.
43313
336270d0
L
433142012-05-04 H.J. Lu <hongjiu.lu@intel.com>
43315
43316 * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
43317 * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
43318 * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
43319 Moved to ...
43320 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
43321 Here.
43322 * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
43323 to ...
43324 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
43325 * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
43326 to ...
43327 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
43328 * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
43329 to ...
43330 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
43331 * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
43332 to ...
43333 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
43334 * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
43335 to ...
43336 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
43337 * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
43338 to ...
43339 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
43340 * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
43341 to ...
43342 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
43343 Here.
43344 * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
43345 to ...
43346 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
43347 Here.
43348 * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
43349 to ...
43350 * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
43351 * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
43352 Moved to ...
43353 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
43354 Here.
43355 * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
43356 to ...
43357 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
43358
d128e450
JM
433592012-05-04 Joseph Myers <joseph@codesourcery.com>
43360
fa8ee516
JM
43361 * sysdeps/unix/common/bits/dirent.h: Remove file.
43362 * sysdeps/unix/common/bits/fcntl.h: Likewise.
43363
d128e450
JM
43364 * sysdeps/unix/bsd/bits/dirent.h: Remove file.
43365 * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
43366 * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
43367 * sysdeps/unix/bsd/isatty.c: Likewise.
43368 * sysdeps/unix/bsd/tcdrain.c: Likewise.
43369 * sysdeps/unix/bsd/tcgetattr.c: Likewise.
43370 * sysdeps/unix/bsd/tcsetattr.c: Likewise.
43371
ff8faaf0 433722012-05-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
31dc8730 43373
62881be4 43374 [BZ #13563]
31dc8730
AZ
43375 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
43376 long double comparison inaccuracies.
43377 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
43378 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43379
6fef930c
AS
433802012-05-04 Andreas Schwab <schwab@linux-m68k.org>
43381
43382 * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
43383 * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
43384
8f203e6c
JM
433852012-05-04 Joseph Myers <joseph@codesourcery.com>
43386
43387 [BZ #14049]
43388 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
43389 nonzero digits before rounding a hex value.
43390 * stdlib/tst-strtod.c (tests): Add another test.
43391
5197d9c2
AK
433922012-05-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
43393
43394 * sysdeps/s390/fpu/libm-test-ulps: Update.
43395
f0c1dedf
AJ
433962012-05-03 Andreas Jaeger <aj@suse.de>
43397
43398 * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
43399 does not get optimized out.
43400 (malloc_opt_barrier): New.
43401
a65ef2ae 434022012-05-03 Andreas Jaeger <aj@suse.de>
461b8e5a 43403 Roland McGrath <roland@hack.frob.com>
a65ef2ae 43404
2b942cb7 43405 * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
a65ef2ae 43406 intermediate file deletion.
2b942cb7 43407 (generated): Add .symlist files.
a65ef2ae 43408
54b71e02
JM
434092012-05-03 Joseph Myers <joseph@codesourcery.com>
43410
43411 [BZ #13775]
43412 * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
43413 Redirect under this condition.
43414 [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
43415 [__USE_GNU] (__dprintf_chk): Not under this condition.
43416 [__USE_GNU] (__vdprintf_chk): Likewise.
43417 * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
43418 under this condition.
43419 [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
43420 [__USE_XOPEN2K8] (dprintf): Define under this condition.
43421 [__USE_XOPEN2K8] (vdprintf): Likewise.
43422 [__USE_GNU] (__dprintf_chk): Not under this condition.
43423 [__USE_GNU] (__vdprintf_chk): Likewise.
43424 [__USE_GNU] (dprintf): Likewise.
43425 [__USE_GNU] (vdprintf): Likewise.
43426
d3dfcc41
RM
434272012-05-03 Roland McGrath <roland@hack.frob.com>
43428
43429 * elf/Makefile (common-generated): Set this instead of generated for
43430 .dyn, .phdr, .jmprel files. Remove $(common-objpfx) from the
43431 $(all-built-dso)-derived lists.
43432
7ac30cc5
AJ
434332012-05-03 Andreas Jaeger <aj@suse.de>
43434
0c51e550
AJ
43435 * sysdeps/i386/fpu/libm-test-ulps: Update.
43436
7ac30cc5
AJ
43437 * FAQ: Removed.
43438 * FAQ.in: Likewise.
43439 * scripts/gen-FAQ.pl: Likewise.
43440 * manual/install.texi (Installation): Point to online location of
43441 FAQ.
43442 * Makefile (files-for-dist): Remove FAQ.
43443 (FAQ): Remove.
43444
d4c2917f
AM
434452012-05-02 Allan McRae <allan@archlinux.org>
43446
43447 * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
43448 (LDFLAGS-reldepmod5.so): Likewise.
43449 (LDFLAGS-reldep6mod1.so): Likewise.
43450 (LDFLAGS-reldep6mod4.so): Likewise.
43451 (LDFLAGS-reldep8mod3.so): Likewise.
43452 (LDFLAGS-unload4mod1.so): Likewise.
43453 (LDFLAGS-unload4mod2.so): Likewise.
43454 (LDFLAGS-tst-initorder): Likewise.
43455 (LDFLAGS-tst-initordera2.so): Likewise.
43456 (LDFLAGS-tst-initordera3.so): Likewise.
43457 (LDFLAGS-tst-initordera4.so): Likewise.
43458 (LDFLAGS-tst-initorderb2.so): Likewise.
43459 (LDFLAGS-noload): Likewise.
43460 (LDFLAGS-next): Likewise.
43461 (LDFLAGS-order2mod1.so): Likewise.
43462 (LDFLAGS-order2mod2.so): Likewise.
43463 (LDFLAGS-tst-initorder2): Likewise.
43464 (LDFLAGS-tst-initorder2a.so): Likewise.
43465 (LDFLAGS-tst-initorder2b.so): Likewise.
43466 (LDFLAGS-tst-initorder2c.so): Likewise.
43467 * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
43468
d77f993f
DM
434692012-05-02 David S. Miller <davem@davemloft.net>
43470
43471 * sysdeps/sparc/fpu/libm-test-ulps: Update.
43472
171a70b4
PP
434732012-05-02 Paul Pluzhnikov <ppluzhnikov@google.com>
43474
43475 [BZ #14055]
43476 * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
43477
0be196ad
AJ
434782012-05-02 Andreas Jaeger <aj@suse.de>
43479
43480 * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
43481 since we manipulate rounding mode.
43482 (CPPFLAGS-test-idouble.c): Likewise.
43483 (CPPFLAGS-test-ifloat.c): Likewise.
43484 (CFLAGS-test-ldouble.c): Likewise.
43485 (CFLAGS-test-double.c): Likewise.
43486 (CFLAGS-test-float.c): Likewise.
43487 (CFLAGS-test-misc.c): Likewise.
43488 (CFLAGS-test-test-fenv.c): Likewise.
43489
4f9d04aa
AZ
434902012-05-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
43491
2b942cb7
RM
43492 [BZ #2550]
43493 [BZ #2570]
43494 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
43495 comparisons to determine direction to adjust input.
4f9d04aa 43496
82a79e7d
RM
434972012-05-01 Roland McGrath <roland@hack.frob.com>
43498
f5a01ca9
RM
43499 * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
43500 output to the target.
43501
90fe4186
RM
43502 * scripts/localplt.awk: New file.
43503 * elf/Makefile ($(objpfx)check-localplt): Target removed.
43504 (check-localplt-CFLAGS): Variable removed.
43505 ($(all-built-dso:=.jmprel)): New static pattern rule.
43506 (generated): Add those targets.
43507 (localplt-built-dso): New variable.
43508 ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
43509
43510 * elf/check-localplt.c: File removed.
43511
82397ed6
RM
43512 * scripts/check-execstack.awk: New file.
43513 * elf/Makefile ($(objpfx)check-execstack): Target removed.
43514 (check-execstack-CFLAGS): Variable removed.
43515 ($(objpfx)check-execstack.h): Target removed.
43516 ($(objpfx)execstack-default): New target.
43517 (generated): Add that instead of check-execstack.h.
43518 ($(all-built-dso:=.phdr)): New static pattern rule.
43519 (generated): Add those targets.
43520 * elf/check-execstack.c: File removed.
43521
82a79e7d
RM
43522 * scripts/check-textrel.awk: New file.
43523 * elf/Makefile ($(objpfx)check-textrel): Target removed.
43524 (check-textrel-CFLAGS): Variable removed.
43525 (all-built-dso): Use := to define.o
43526 ($(all-built-dso:=.dyn)): New static pattern rule.
43527 (generated): Add those targets.
43528 ($(objpfx)check-textrel.out): Use the script on the .dyn files.
43529 * config.make.in (READELF): New substituted variable.
43530 * elf/check-textrel.c: File removed.
43531
62fde54f 435322012-05-01 Joseph Myers <joseph@codesourcery.com>
ee74b9cb 43533
615605c9
JM
43534 * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
43535 allow.
43536 * conform/data/ctype.h-data [C99-based standards] (isblank):
43537 Expect function.
43538 (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
43539 (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
43540 [ISO || ISO99 || ISO11] (*_t): Do not allow.
43541 * conform/data/errno.h-data (EDOM): Use macro-int-constant.
43542 Specify type. Require positive value.
43543 (EILSEQ): Likewise.
43544 (ERANGE): Likewise.
43545 [ISO || POSIX] (EILSEQ): Do not expect.
43546 [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
43547 Specify type. Require positive value.
43548 [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
43549 [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
43550 [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
43551 [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
43552 [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
43553 [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
43554 [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
43555 [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
43556 [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
43557 [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
43558 [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
43559 [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
43560 [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
43561 [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
43562 [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
43563 [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
43564 [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
43565 [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
43566 [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
43567 [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
43568 [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
43569 [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
43570 [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
43571 [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
43572 [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
43573 [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
43574 [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
43575 [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
43576 [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
43577 [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
43578 [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
43579 [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
43580 [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
43581 [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
43582 [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
43583 [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
43584 [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
43585 [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
43586 [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
43587 [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
43588 [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
43589 [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
43590 [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
43591 [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
43592 [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
43593 [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
43594 [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
43595 [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
43596 [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
43597 [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
43598 [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
43599 [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
43600 [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
43601 [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
43602 [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
43603 [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
43604 [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
43605 [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
43606 [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
43607 [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
43608 [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
43609 [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
43610 [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
43611 [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
43612 [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
43613 [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
43614 [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
43615 [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
43616 [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
43617 [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
43618 [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
43619 [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
43620 [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
43621 [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
43622 [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
43623 [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
43624 * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
43625 Require >= 2.
43626 (FLT_ROUNDS): Expect as macro, not constant.
43627 (FLT_MANT_DIG): Use macro-int-constant.
43628 (DBL_MANT_DIG): Likewise.
43629 (LDBL_MANT_DIG): Likewise.
43630 (FLT_DIG): Likewise.
43631 (DBL_DIG): Likewise.
43632 (LDBL_DIG): Likewise.
43633 (FLT_MIN_EXP): Use macro-int-constant. Require < 0.
43634 (DBL_MIN_EXP): Likewise.
43635 (LDBL_MIN_EXP): Likewise.
43636 (FLT_MAX_EXP): Use macro-int-constant.
43637 (DBL_MAX_EXP): Likewise.
43638 (LDBL_MAX_EXP): Likewise.
43639 (FLT_MAX_10_EXP): Likewise.
43640 (DBL_MAX_10_EXP): Likewise.
43641 (LDBL_MAX_10_EXP): Likewise.
43642 (FLT_MAX): Use macro-constant.
43643 (DBL_MAX): Likewise.
43644 (LDBL_MAX): Likewise.
43645 (FLT_EPSILON): Use macro-constant. Give upper bound.
43646 (DBL_EPSILON): Likewise.
43647 (LDBL_EPSILON): Likewise.
43648 (FLT_MIN): Likewise.
43649 (DBL_MIN): Likewise.
43650 (LDBL_MIN): Likewise.
43651 [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
43652 [C99-based standards] (FLT_EVAL_METHOD): Likewise.
43653 [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
43654 [ISO11] (FLT_HAS_SUBNORM): Likewise.
43655 [ISO11] (LDBL_HAS_SUBNORM): Likewise.
43656 [ISO11] (DBL_DECIMAL_DIG): Likewise.
43657 [ISO11] (FLT_DECIMAL_DIG): Likewise.
43658 [ISO11] (LDBL_DECIMAL_DIG): Likewise.
43659 [ISO11] (DBL_TRUE_MIN): Use macro-constant.
43660 [ISO11] (FLT_TRUE_MIN): Likewise.
43661 [ISO11] (LDBL_TRUE_MIN): Likewise.
43662 [ISO || ISO99 || ISO11] (*_t): Do not allow.
43663 * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
43664 (SCHAR_MIN): Use macro-int-constant. Specify type.
43665 (SCHAR_MAX): Likewise.
43666 (UCHAR_MAX): Likewise.
43667 (CHAR_MIN): Likewise.
43668 (CHAR_MAX): Likewise.
43669 (MB_LEN_MAX): Use macro-int-constant.
43670 (SHRT_MIN): Use macro-int-constant. Specify type.
43671 (SHRT_MAX): Likewise.
43672 (USHRT_MAX): Likewise.
43673 (INT_MAX): Likewise.
43674 (INT_MIN): Use macro-int-constant. Specify type. Make upper
43675 bound negative.
43676 (UINT_MAX): Use macro-int-constant. Specify type. Suffix lower
43677 bound with "U".
43678 (LONG_MAX): Use macro-int-constant. Specify type. Suffix lower
43679 bound with "L".
43680 (LONG_MIN): Use macro-int-constant. Specify type. Make upper
43681 bound negative. Suffix upper bound with "L".
43682 (ULONG_MAX): Use macro-int-constant. Specify type. Suffix lower
43683 bound with "UL".
43684 [C99-based standards] (LLONG_MIN): Use macro-int-constant.
43685 Specify type.
43686 [C99-based standards] (LLONG_MAX): Likewise.
43687 [C99-based standards] (ULLONG_MAX): Likewise.
43688 * conform/data/stddef.h-data (NULL): Use macro-constant. Require
43689 == 0.
43690 [ISO11] (max_align_t): Require type.
43691 [ISO || ISO99 || ISO11] (*_t): Do not allow.
43692
c9140a62
JM
43693 * conform/conformtest.pl ($CFLAGS_namespace): Define separately
43694 from $CFLAGS, without defining away __attribute__ calls.
43695 (checknamespace): Use $CFLAGS_namespace.
43696
9af0bf29
JM
43697 * conform/conformtest.pl (@keywords): Only include C99 keywords
43698 for standards based on C99 or C11.
43699
343222a2
JM
43700 * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
43701 Disable tests.
43702 * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
43703 UNIX98]: Likewise.
43704
661f8cf0
JM
43705 * conform/conformtest.pl: Handle "macro-int-constant" and test for
43706 usability of symbols in #if.
43707
ee74b9cb
JM
43708 * conform/conformtest.pl: If macro or constant types start
43709 "promoted:", expect the symbol to be of the following type
43710 promoted by the integer promotions.
62fde54f 43711
aafc49b3
JM
43712 * conform/conformtest.pl: Parse all "constant" and "macro" lines
43713 in one place. Also handle "macro-constant".
43714
fefdf574
JM
43715 * conform/conformtest.pl: Only accept expected macro values with
43716 "==". Parse all "macro" lines in one place.
43717 * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
43718
f2d922fe
JM
43719 * conform/conformtest.pl: Handle braced types on "constant" lines
43720 instead of handling "typed-constant".
43721 * conform/data/signal.h-data: Use "constant" instead of
43722 "typed-constant".
43723
d22956c9
JM
43724 * conform/conformtest.pl: Handle "optional-" at start of lines in
43725 one place rather than duplicating several cases. Handle each
43726 format of "macro" line with initial "optional-".
43727
028e2e38
JM
43728 * conform/conformtest.pl: Only accept expected constant or
43729 optional-constant values with "==". Parse all "constant" lines in
43730 one place. Parse all "optional-constant" lines in one place.
43731 * conform/data/cpio.h-data: Use "==" form on "constant" lines.
43732 * conform/data/fmtmsg.h-data: Likewise.
43733 * conform/data/netinet/in.h-data: Likewise.
43734 * conform/data/tar.h-data: Likewise.
43735 * conform/data/limits.h-data: Use "==" form on "constant" and
43736 "optional-constant" lines.
43737
1b8f2850
JM
43738 * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
43739 Use -std=c99 for XOPEN2K.
43740 (@knownproblems): Remove.
43741 (newtoken): Don't check %isknown.
43742
a05a144b
JM
43743 * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
43744 Do not expect macro.
43745 [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
43746 [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
43747 [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
43748 [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
43749 [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
43750 [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
43751 [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
43752 [XPG3 || XPG4 || UNIX98] (isless): Likewise.
43753 [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
43754 [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
43755 [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
43756 [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
43757 [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
43758 [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
43759 [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
43760 [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
43761 [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
43762 [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
43763 [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
43764 [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
43765 [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
43766 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
43767 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
43768 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
43769 [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
43770 [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
43771 [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
43772 [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
43773 [XPG3 || XPG4 || UNIX98] (log2): Likewise.
43774 [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
43775 [XPG3] (acosh): Likewise.
43776 [XPG3] (asinh): Likewise.
43777 [XPG3] (atanh): Likewise.
43778 [XPG3] (cbrt): Likewise.
43779 [XPG3] (expm1): Likewise.
43780 [XPG3] (ilogb): Likewise.
43781 [XPG3] (log1p): Likewise.
43782 [XPG3] (logb): Likewise.
43783 [XPG3] (nextafter): Likewise.
43784 [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
43785 [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
43786 [XPG3] (remainder): Likewise.
43787 [XPG3] (rint): Likewise.
43788 [XPG3 || XPG4 || UNIX98] (round): Likewise.
43789 [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
43790 [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
43791 [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
43792 [XPG3 || XPG4 || UNIX98] (lround): Likewise.
43793 [XPG3 || XPG4 || UNIX98] (llround): Likewise.
43794 [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
43795 [UNIX98 || XOPEN2K] (scalb): Expect.
43796 [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
43797 [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
43798 [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
43799 [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
43800 [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
43801 [XPG3 || XPG4 || UNIX98] (fma): Likewise.
43802 [XPG3 || XPG4 || UNIX98] (nan): Likewise.
43803 [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
43804 [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
43805 [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
43806 [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
43807 [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
43808 [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
43809 [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
43810 [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
43811 [XPG3 || XPG4 || UNIX98] (expf): Likewise.
43812 [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
43813 [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
43814 [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
43815 [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
43816 [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
43817 [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
43818 [XPG3 || XPG4 || UNIX98] (logf): Likewise.
43819 [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
43820 [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
43821 [XPG3 || XPG4 || UNIX98] (modff): Likewise.
43822 [XPG3 || XPG4 || UNIX98] (powf): Likewise.
43823 [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
43824 [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
43825 [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
43826 [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
43827 [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
43828 [XPG3 || XPG4 || UNIX98] (erff): Likewise.
43829 [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
43830 [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
43831 [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
43832 [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
43833 [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
43834 [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
43835 [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
43836 [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
43837 [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
43838 [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
43839 [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
43840 [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
43841 [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
43842 [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
43843 [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
43844 [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
43845 [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
43846 [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
43847 [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
43848 [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
43849 [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
43850 [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
43851 [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
43852 [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
43853 [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
43854 [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
43855 [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
43856 [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
43857 [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
43858 [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
43859 [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
43860 [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
43861 [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
43862 [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
43863 [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
43864 [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
43865 [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
43866 [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
43867 [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
43868 [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
43869 [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
43870 [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
43871 [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
43872 [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
43873 [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
43874 [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
43875 [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
43876 [XPG3 || XPG4 || UNIX98] (expl): Likewise.
43877 [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
43878 [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
43879 [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
43880 [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
43881 [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
43882 [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
43883 [XPG3 || XPG4 || UNIX98] (logl): Likewise.
43884 [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
43885 [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
43886 [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
43887 [XPG3 || XPG4 || UNIX98] (powl): Likewise.
43888 [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
43889 [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
43890 [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
43891 [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
43892 [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
43893 [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
43894 [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
43895 [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
43896 [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
43897 [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
43898 [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
43899 [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
43900 [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
43901 [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
43902 [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
43903 [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
43904 [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
43905 [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
43906 [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
43907 [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
43908 [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
43909 [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
43910 [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
43911 [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
43912 [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
43913 [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
43914 [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
43915 [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
43916 [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
43917 [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
43918 [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
43919 [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
43920 [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
43921 [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
43922 [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
43923 [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
43924 [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
43925 [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
43926 [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
43927 [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
43928 [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
43929 [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
43930 [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
43931 [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
43932 [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
43933
73c5ebe3
JM
43934 * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
43935 _XOPEN_SOURCE_EXTENDED for XPG4.
43936
39c33b6c
JM
43937 * conform/conformtest.pl: Handle "symbol" lines for allow-header.
43938
62fde54f
JM
43939 * Makeconfig (localtime): Remove variable.
43940 (inst_localtime-file): Likewise.
43941
0741d64c
AS
439422012-05-01 Andreas Schwab <schwab@linux-m68k.org>
43943
43944 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
43945 Update.
43946 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
43947 Update.
43948 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
43949 Update.
43950 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
43951 Update.
43952 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
43953 Update.
43954 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
43955 Update.
43956 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
43957 Update.
43958 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
43959 Update.
43960 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
43961 Update.
43962
7cb029ee
JM
439632012-05-01 Joseph Myers <joseph@codesourcery.com>
43964
43965 [BZ #2550]
43966 [BZ #2570]
43967 * math/s_nexttowardf.c (__nexttowardf): Use floating-point
43968 comparisons to determine direction to adjust input.
43969 * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
43970 * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
43971 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
43972 Likewise.
43973 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
43974 Likewise.
43975 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
43976 Likewise.
43977 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
43978 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
43979 Likewise.
43980 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
43981 Likewise.
43982 * math/libm-test.inc (nexttoward_test): Add more tests.
43983
412bd966
AS
439842012-05-01 Andreas Schwab <schwab@linux-m68k.org>
43985
43986 [BZ #14040]
43987 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
43988 in version GLIBC_2.1, not GLIBC_2.0.
43989 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
43990 Likewise.
43991
9568c0c2
JM
439922012-04-30 Joseph Myers <joseph@codesourcery.com>
43993
adfbc8ac
JM
43994 [BZ #13942]
43995 * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
43996 (1 - x) * (1 + x).
43997 * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
43998 * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
43999 * math/libm-test.inc (acos_test): Add more tests.
44000 (asin_test): Likewise.
44001 * sysdeps/i386/fpu/libm-test-ulps: Update.
44002 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44003
5ba3cc69
JM
44004 [BZ #14034]
44005 * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
44006 of square root.
44007 * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
44008 * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
44009 * math/libm-test.inc (acos_test_tonearest): New function.
44010 (acos_test_towardzero): Likewise.
44011 (acos_test_downward): Likewise.
44012 (acos_test_upward): Likewise.
44013 (asin_test_tonearest): Likewise.
44014 (asin_test_towardzero): Likewise.
44015 (asin_test_downward): Likewise.
44016 (asin_test_upward): Likewise.
44017 (main): Call the new functions.
44018 * sysdeps/i386/fpu/libm-test-ulps: Update.
44019 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
44020
9568c0c2
JM
44021 [BZ #13884]
44022 [BZ #13924]
44023 * math/e_exp10.c: Include <float.h>.
44024 (__ieee754_exp10): Handle underflow here rather than multiplying
44025 large negative argument by M_LN10.
44026 * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
44027 of __ieee754_expf.
44028 * math/e_exp10l.c: Include <float.h>.
44029 (__ieee754_exp10l): Handle underflow here rather than multiplying
44030 large negative argument by M_LN10l.
44031 * math/libm-test.inc (exp10_test): Add another test. Do not allow
44032 spurious overflow exception on underflow.
44033
5ac3ea17
MP
440342012-04-29 Marek Polacek <polacek@redhat.com>
44035
44036 * misc/sys/cdefs.h (__attribute_artificial__): New macro.
44037 (__fortify_function): New macro.
44038 (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
44039 * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
44040 __extern_always_inline.
44041 * libio/bits/stdio2.h: Likewise.
44042 * libio/bits/stdio.h: Likewise.
44043 * string/string.h: Likewise.
44044 * string/bits/string3.h: Likewise.
44045 * include/stdio.h: Likewise.
44046 * stdlib/bits/stdlib.h: Likewise.
44047 * stdlib/stdlib.h: Likewise.
44048 * rt/bits/mqueue2.h: Likewise.
44049 * rt/mqueue.h: Likewise.
44050 * posix/bits/unistd.h: Likewise.
44051 * posix/unistd.h: Likewise.
44052 * io/bits/poll2.h: Likewise.
44053 * io/bits/fcntl2.h: Likewise.
44054 * io/fcntl.h: Likewise.
44055 * io/sys/poll.h: Likewise.
44056 * misc/bits/syslog.h: Likewise.
44057 * misc/bits/syslog-ldbl.h: Likewise.
44058 * misc/sys/syslog.h: Likewise.
44059 * socket/bits/socket2.h: Likewise.
44060 * socket/sys/socket.h: Likewise.
44061 * debug/tst-chk1.c: Likewise.
44062 * wcsmbs/bits/wchar2.h: Likewise.
44063 * wcsmbs/bits/wchar-ldbl.h: Likewise.
44064 * wcsmbs/wchar.h: Likewise.
44065
ecf0ebfb
AJ
440662012-04-29 Andreas Jaeger <aj@suse.de>
44067
44068 * Makerules (tests): Remove enable-check-abi protection.
44069 (check-abi-warn): Remove.
44070 (check-abi-%): Remove check-abi-warn usage.
44071
44072 * configure.in: Remove check-abi configure option.
44073 * configure: Regenerated.
44074 * config.make.in (enable-check-abi): Remove.
44075
6d5c57fa
AS
440762012-04-28 Andreas Schwab <schwab@linux-m68k.org>
44077
24c5d07e 44078 [BZ #14033]
ded5180a
AS
44079 * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
44080 double functions to double *_finite functions.
44081
7e0d315d
AS
44082 [BZ #13941]
44083 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
44084 (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
44085 LDBL_MIN_EXP.
44086 * stdio-common/Makefile (tests): Add tst-sprintf3.
44087 * stdio-common/tst-sprintf3.c: New file.
44088
6d5c57fa
AS
44089 * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
44090 ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
44091
0749ff8b
JM
440922012-04-28 Joseph Myers <joseph@codesourcery.com>
44093
44094 * conform/conformtest.pl: Remove duplicate typed-constant
44095 handling.
44096
8dbd5d7b
DM
440972012-04-28 David S. Miller <davem@davemloft.net>
44098
44099 * Makerules (%.abilist): Add vpath on sysdep_dirs.
44100 (check-abi-%): Remove AWK script prerequisite and explicit
44101 abilist directory.
44102 (check-abi): Rewrite to just diff the symlist with the abilist.
44103 (config-tls, config-abi-config): Delete, no longer used.
44104 (update-abi-%): Remove AWK script and explicit abilist directory.
44105 (update-abi): Rewrite to simply compare and conditionally copy the
44106 symlist and the sysdep abilist file. Remove update-abi-config
44107 checks.
44108 * abilist/ld.abilist: Remove.
44109 * abilist/libBrokenLocale.abilist: Remove.
44110 * abilist/libanl.abilist: Remove.
44111 * abilist/libcrypt.abilist: Remove.
44112 * abilist/libdl.abilist: Remove.
44113 * abilist/librt.abilist: Remove.
44114 * abilist/libthread_db.abilist: Remove.
44115 * abilist/libutil.abilist: Remove.
44116 * scripts/extract-abilist.awk: Remove.
44117 * scripts/merge-abilist.awk: Remove.
44118 * sysdeps/generic/libcidn.abilist: New file.
44119 * sysdeps/generic/libnss_compat.abilist: New file.
44120 * sysdeps/generic/libnss_db.abilist: New file.
44121 * sysdeps/generic/libnss_dns.abilist: New file.
44122 * sysdeps/generic/libnss_files.abilist: New file.
44123 * sysdeps/generic/libnss_hesiod.abilist: New file.
44124 * sysdeps/generic/libnss_nis.abilist: New file.
44125 * sysdeps/generic/libnss_nisplus.abilist: New file.
44126 * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
44127 * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
44128 * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
44129 file.
44130 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
44131 * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
44132 * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
44133 * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
44134 * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
44135 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
44136 * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
44137 * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
44138 * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
44139 file.
44140 * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
44141 * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
44142 * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
44143 * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
44144 file.
44145 * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
44146 * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
44147 * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
44148 * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
44149 * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
44150 * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
44151 file.
44152 * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
44153 * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
44154 * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
44155 file.
44156 * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
44157 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
44158 New file.
44159 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
44160 New file.
44161 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
44162 New file.
44163 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
44164 New file.
44165 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
44166 New file.
44167 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
44168 New file.
44169 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
44170 New file.
44171 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
44172 New file.
44173 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
44174 New file.
44175 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
44176 New file.
44177 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
44178 New file.
44179 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
44180 New file.
44181 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
44182 New file.
44183 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
44184 file.
44185 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
44186 New file.
44187 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
44188 New file.
44189 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
44190 file.
44191 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
44192 New file.
44193 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
44194 New file.
44195 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
44196 file.
44197 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
44198 New file.
44199 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
44200 New file.
44201 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
44202 New file.
44203 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
44204 New file.
44205 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
44206 New file.
44207 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
44208 New file.
44209 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
44210 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
44211 file.
44212 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
44213 New file.
44214 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
44215 file.
44216 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
44217 file.
44218 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
44219 file.
44220 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
44221 file.
44222 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
44223 file.
44224 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
44225 New file.
44226 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
44227 file.
44228 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
44229 file.
44230 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
44231 New file.
44232 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
44233 file.
44234 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
44235 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
44236 file.
44237 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
44238 New file.
44239 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
44240 file.
44241 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
44242 file.
44243 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
44244 file.
44245 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
44246 file.
44247 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
44248 file.
44249 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
44250 New file.
44251 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
44252 file.
44253 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
44254 file.
44255 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
44256 New file.
44257 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
44258 file.
44259 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
44260 * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
44261 * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
44262 file.
44263 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
44264 * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
44265 * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
44266 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
44267 * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
44268 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
44269 * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
44270 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
44271 * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
44272 * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
44273 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
44274 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
44275 file.
44276 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
44277 New file.
44278 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
44279 file.
44280 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
44281 file.
44282 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
44283 file.
44284 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
44285 file.
44286 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
44287 file.
44288 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
44289 New file.
44290 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
44291 New file.
44292 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
44293 file.
44294 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
44295 New file.
44296 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
44297 file.
44298 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
44299 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
44300 file.
44301 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
44302 New file.
44303 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
44304 file.
44305 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
44306 file.
44307 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
44308 file.
44309 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
44310 file.
44311 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
44312 file.
44313 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
44314 New file.
44315 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
44316 New file.
44317 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
44318 file.
44319 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
44320 New file.
44321 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
44322 file.
44323
41d73a1b
JM
443242012-04-28 Joseph Myers <joseph@codesourcery.com>
44325
44326 * conform/conformtest.pl: Fix typo in handling typed-constant from
44327 allow-header.
44328
28aeeda4
JM
443292012-04-27 Joseph Myers <joseph@codesourcery.com>
44330
adae8f5e
JM
44331 * README: Cut down references to pre-2.6 Linux kernels and
44332 Linuxthreads. Update lists of configurations in libc and ports
44333 and sort alphabetically. Say "or newer" with Linux kernel version
44334 requirements.
44335
28aeeda4
JM
44336 * config.h.in [IS_IN_build]: Allow compiling without optimization.
44337
a462cb63
RA
443382012-04-27 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
44339
44340 [BZ #887]
44341 * math/libm-test.inc (logb_test_downward): New test to expose
44342 erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
44343 rounding mode.
44344
6ad3493e
JM
443452012-04-27 Joseph Myers <joseph@codesourcery.com>
44346
44347 [BZ #14027]
44348 * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
44349 to be done.
44350 * math/fraiseexcpt.c (__feraiseexcept): Likewise.
44351 * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
44352
2ce4f015
JM
443532012-04-26 Joseph Myers <joseph@codesourcery.com>
44354
5aeb141a
JM
44355 * sysdeps/unix/i386/brk.S: Remove file.
44356 * sysdeps/unix/i386/dl-brk.S: Likewise.
44357 * sysdeps/unix/i386/pipe.S: Likewise.
44358 * sysdeps/unix/i386/sigreturn.S: Likewise.
44359 * sysdeps/unix/i386/syscall.S: Likewise.
44360 * sysdeps/unix/i386/vfork.S: Likewise.
44361 * sysdeps/unix/i386/wait.S: Likewise.
44362
7143acae
JM
44363 * sysdeps/unix/common/tcsendbrk.c: Move to ...
44364 * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
44365
2ce4f015
JM
44366 * configure.in (arm*-none*): Do not allow without
44367 --enable-hacker-mode.
44368 (netbsd*): Remove case setting base_os.
44369 (386bsd*): Likewise.
44370 (freebsd*): Likewise.
44371 (bsdi*): Likewise.
44372 (osf*): Likewise.
44373 (sunos*): Likewise.
44374 (ultrix*): Likewise.
44375 (newsos*): Likewise.
44376 (dynix*): Likewise.
44377 (*bsd*): Likewise.
44378 (sysv*): Likewise.
44379 (isc*): Likewise.
44380 (esix*): Likewise.
44381 (sco*): Likewise.
44382 (minix*): Likewise.
44383 (irix4*): Likewise.
44384 (irix6*): Likewise.
44385 (solaris[2-9]*): Likewise.
44386 (none): Likewise.
44387 * configure: Regenerated.
44388
0ac229c8
AZ
443892012-04-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
44390
44391 [BZ #11521]
44392 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
44393 overflow or cancellation in calculating denominator.
44394 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
44395 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
44396 down expression to avoid unexpected rounding in newer GCCs.
44397 * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
44398
33f244f4
DM
443992012-04-26 David S. Miller <davem@davemloft.net>
44400
44401 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
44402 long-double compat symbols.
44403 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
44404 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
44405 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
44406 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
44407 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
44408 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
44409 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
44410 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
44411 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
44412 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
44413 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
44414 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
44415 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
44416
cfa1f3e8
DM
444172012-04-25 David S. Miller <davem@davemloft.net>
44418
44419 * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
44420 HWCAP_* values only after the memory barriers have been defined.
44421 (atomic_full_barrier): Define.
44422 (atomic_read_barrier): Define.
44423 (atomic_write_barrier): Define.
44424
6e236b92
SP
444252012-04-26 Siddhesh Poyarekar <siddhesh@redhat.com>
44426
44427 * shlib-versions: Add libgcc_s version information.
44428 * sysdeps/generic/libgcc_s.h: Remove.
44429 * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
44430 libgcc_s.h.
44431 * sysdeps/gnu/unwind-resume.c: Likewise.
44432 * scripts/test-installation.pl: Remove libgcc_s from link_libs.
44433
aab39a09
DM
444342012-04-25 David S. Miller <davem@davemloft.net>
44435
44436 * sysdeps/unix/sparc/brk.S: Delete.
44437 * sysdeps/unix/sparc/dl-brk.S: Delete.
44438 * sysdeps/unix/sparc/pipe.S: Delete.
44439 * sysdeps/unix/sparc/sysdep.S: Delete.
44440 * sysdeps/unix/sparc/sysdep.h: Delete.
44441 * sysdeps/unix/sparc/vfork.S: Delete.
57f41c40
AS
44442 * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
44443 (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
44444 * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
44445 (ret_ERRVAL, r0, r1, MOVE): Define.
aab39a09
DM
44446 (JUMPTARGET): Remove.
44447 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
44448 sysdeps/unix/sparc/sysdep.h
44449 (ENTRY, END): Remove.
44450 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
44451
a3cc4f48
JM
444522012-04-25 Joseph Myers <joseph@codesourcery.com>
44453
2ed8cda2
JM
44454 * Makerules (native-compile): Use $(BUILD_LDFLAGS).
44455 (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
44456 -DIS_IN_build.
44457
35d76d59
JM
44458 * timezone/README: Update upstream location and email address for
44459 tzcode and tzdata.
44460 * timezone/zdump.c: Update from tzcode 2012b.
44461 * timezone/zic.c: Likewise.
44462
a3cc4f48
JM
44463 * configure.in (libc_cv_as_needed): Remove test.
44464 * configure: Regenerated.
44465 * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
44466 conditional definition.
44467 [$(have-as-needed) != yes] (no-as-needed): Likewise.
44468 [$(have-as-needed) != yes] (libgcc_eh): Likewise.
44469 * config.make.in (have-as-needed): Remove variable.
44470
ceab42c3
SP
444712012-04-25 Siddhesh Poyarekar <siddhesh@redhat.com>
44472 Paul Pluzhnikov <ppluzhnikov@google.com>
44473
44474 * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
44475 strings correctly.
44476
3ce2865f
CLT
444772012-04-25 Chung-Lin Tang <cltang@codesourcery.com>
44478
44479 * sysdeps/sh/memcpy.S: Remove include of endian.h, change
44480 preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
44481 * sysdeps/sh/strlen.S: Likewise.
44482
f37e0d68
JM
444832012-04-24 Joseph Myers <joseph@codesourcery.com>
44484
ae186e9a
JM
44485 * sysdeps/unix/fork.S: Remove file.
44486 * sysdeps/unix/i386/fork.S: Likewise.
44487 * sysdeps/unix/sparc/fork.S: Likewise.
44488
b96914af
JM
44489 * sysdeps/unix/system.c: Remove file.
44490 * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
44491
f37e0d68
JM
44492 * sysdeps/unix/getegid.S: Remove file.
44493 * sysdeps/unix/geteuid.S: Likewise.
44494
87ef29ca
RM
444952012-04-24 Roland McGrath <roland@hack.frob.com>
44496
83bcd236
RM
44497 * scripts/check-localplt.awk: New file.
44498 * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
44499 of diff.
44500 * scripts/data/localplt-generic.data: Add a comment.
44501
87ef29ca
RM
44502 * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
44503 NODE when __dir_mkfile failed.
44504 * sysdeps/mach/hurd/symlinkat.c: Likewise.
44505 Reported by Ludovic Courtès <ludo@gnu.org>.
44506
e5a6e567
AJ
445072012-04-24 Andreas Jaeger <aj@suse.de>
44508
44509 * Makerules (common-clean): Also remove gen-as-const-headers
44510 files.
44511
c1820385
JM
445122012-04-24 Joseph Myers <joseph@codesourcery.com>
44513
44514 * Makerules (native-compile): Do not change working directory for
44515 build. Use $(OUTPUT_OPTION) in command.
44516 (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
44517
94e02fc4
AZ
445182012-04-24 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
44519
44520 [BZ #13886]
44521 * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
44522 sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
44523 * math/libm-test.inc (floor_test): Add more tests.
44524 * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
44525
3a533ca3
JM
445262012-04-24 Joseph Myers <joseph@codesourcery.com>
44527
940ab4b3
JM
44528 * sysdeps/unix/getdents.c: Remove file.
44529 * sysdeps/unix/sysv/getdents.c: Likewise.
44530 * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
44531
90e037bd
JM
44532 * sysdeps/unix/syscalls.list (madvise): Add syscall from
44533 sysdeps/unix/mman/syscalls.list.
44534 (mmap): Likewise.
44535 (mprotect): Likewise.
44536 (msync): Likewise.
44537 (munmap): Likewise.
44538 * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
44539 * sysdeps/unix/mman/syscalls.list: Remove.
44540 * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
44541
3a533ca3
JM
44542 * configure.in (libc_cv_libgcc_s_suffix): Remove test.
44543 (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
44544 * configure: Regenerated.
44545 * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
44546 $(libgcc_s_suffix).
44547 * config.make.in (libgcc_s_suffix): Remove variable.
44548
1ad743de
JM
445492012-04-23 Joseph Myers <joseph@codesourcery.com>
44550
4ad451e2
JM
44551 * sysdeps/unix/sysv/gethostname.c: Move to ...
44552 * sysdeps/posix/gethostname.c: ... here.
44553
5e37ce39
JM
44554 * sysdeps/unix/execve.S: Remove file.
44555
1ad743de
JM
44556 * sysdeps/unix/_exit.S: Remove file.
44557
4e681b5b
AJ
445582012-04-23 Andreas Jaeger <aj@suse.de>
44559
44560 [BZ #13739]
44561 * manual/Makefile: Remove make dist support, there's no
44562 need for a stand-alone documentation tar ball.
44563 (TEXI2DVI): Define always, it's not in Makeconfig.
44564 (dist): Removed.
44565 (tar-it): Removed.
44566 (edition): Removed.
44567 (glibc-doc-$(edition).tar): Removed
44568 (%.Z): Removed.
44569 (%.gz): Removed.
44570 (%.uu): Removed.
44571 (ETAGS): Remove, it's in Makeconfig.
44572 (move-if-change): Remove, it's in Makeconfig.
44573
38686a03 445742012-04-23 Paul Eggert <eggert@cs.ucla.edu>
c0baea34
PE
44575
44576 [BZ #13970]
44577 * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
44578 (strtod, strtof, strtold, strtol, strtoul, strtoq)
44579 (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
44580 (strtod_l, strtof_l, strtold_l): Remove __wur.
44581 It is not necessarily an error to ignore strtol's return value.
44582 One can reliably look at the stored endptr to decide whether
44583 the number had valid syntax.
44584
7c0616fa
AJ
445852012-04-21 Andreas Jaeger <aj@suse.de>
44586
803cb6b7 44587 [BZ #13739]
7c0616fa
AJ
44588 * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
44589
b0fe253f
JM
445902012-04-21 Joseph Myers <joseph@codesourcery.com>
44591
44592 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
44593 * sysdeps/unix/sysv/Versions: Remove file.
44594
8280f22d
MT
445952012-04-21 Markus Trippelsdorf <markus@trippelsdorf.de>
44596
44597 [BZ #13927]
44598 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
44599
75ce411f 446002012-04-21 Nick Alcock <nick.alcock@oracle.com>
b8e33728
N
44601
44602 [BZ #7064]
44603 * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
44604 version from __vm86.
44605
097d59fa
JM
446062012-04-20 Joseph Myers <joseph@codesourcery.com>
44607
a90f3bcb
JM
44608 * sysdeps/unix/common/lxstat.c: Remove file.
44609 * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
44610
edc7ea78
JM
44611 * sysdeps/unix/sysv/Makefile: Remove file.
44612
cb78c221
JM
44613 * sysdeps/unix/sysv/direct.h: Remove file.
44614
efa6a45f
JM
44615 * sysdeps/unix/sysv/bits/dirent.h: Remove file.
44616 * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
44617 * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
44618 * sysdeps/unix/sysv/bits/signum.h: Likewise.
44619 * sysdeps/unix/sysv/bits/stat.h: Likewise.
44620 * sysdeps/unix/sysv/bits/utmp.h: Likewise.
44621 * sysdeps/unix/sysv/bits/utsname.h: Likewise.
44622
9c9f2d0c
JM
44623 * sysdeps/unix/sysv/setrlimit.c: Remove file.
44624
4541c83b
JM
44625 * sysdeps/unix/xmknod.c: Remove file.
44626 * sysdeps/unix/syscalls.list (sys_mknod): Remove.
44627
f5d153a0
JM
44628 * sysdeps/unix/sysv/settimeofday.c: Remove file.
44629
aa746595
JM
44630 * sysdeps/unix/sysv/i386/time.S: Remove file.
44631
cce5905e
JM
44632 * sysdeps/unix/fxstat.c: Remove file.
44633 * sysdeps/unix/xstat.c: Likewise.
44634 * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
44635
37fa3841
JM
44636 * sysdeps/unix/sysv/sigaction.c: Remove file.
44637
ff1962a3
JM
44638 * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
44639 (sysdep_headers): Remove variable.
44640 [termio.h not in sysdep_headers] (generated): Likewise.
44641 [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
44642 * sysdeps/unix/sysv/sysv_termio.h: Remove file.
44643 * sysdeps/unix/sysv/tcdrain.c: Likewise.
44644 * sysdeps/unix/sysv/tcflow.c: Likewise.
44645 * sysdeps/unix/sysv/tcflush.c: Likewise.
44646 * sysdeps/unix/sysv/tcgetattr.c: Likewise.
44647 * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
44648 * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
44649 * sysdeps/unix/sysv/tcsetattr.c: Likewise.
44650 * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
44651
e7740d31
JM
44652 * sysdeps/unix/siglist.c: Remove file.
44653
ee06f18b
JM
44654 * sysdeps/unix/getppid.S: Remove file.
44655
097d59fa
JM
44656 * sysdeps/unix/mkdir.c: Remove file.
44657 * sysdeps/unix/rmdir.c: Likewise.
44658
ff3d51ec
AS
446592012-04-19 Andreas Schwab <schwab@linux-m68k.org>
44660
44661 * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
44662 ERR_MAX value.
44663 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
44664 errlist-compat value.
44665
50f81fd7
DM
446662012-04-18 David S. Miller <davem@davemloft.net>
44667
44668 * sysdeps/generic/memcopy.h (reg_char): Delete.
44669 * debug/strcat_chk.c: Use char, not reg_char.
44670 * debug/strcpy_chk.c: Likewise.
44671 * debug/strncat_chk.c: Likewise.
44672 * debug/strncpy_chk.c: Likewise.
44673 * string/memchr.c: Likewise.
44674 * string/memrchr.c: Likewise.
44675 * string/rawmemchr.c: Likewise.
44676 * string/strcat.c: Likewise.
44677 * string/strchr.c: Likewise.
44678 * string/strchrnul.c: Likewise.
44679 * string/strcmp.c: Likewise.
44680 * string/strcpy.c: Likewise.
44681 * string/strncat.c: Likewise.
44682 * string/strncmp.c: Likewise.
44683 * string/strncpy.c: Likewise.
44684
8ff41c46
WS
446852012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
44686
44687 * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
44688 __builtin_memcopy is called when src and dest ranges are known to not
44689 overlap.
44690
6b652f46
WS
446912012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
44692
44693 * sysdeps/powerpc/powerpc64/power6/wordcopy.c
44694 (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
44695 fwd_align_merge macro call.
44696 (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
44697 bwd_align_merge macro call.
44698 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
44699
b282631e
WS
447002012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
44701
44702 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
44703 bwd_align_merge macros.
44704 (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
44705 (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
44706 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
44707
95aa737c
DM
447082012-04-18 David S. Miller <davem@davemloft.net>
44709
44710 * sysdeps/sparc/sparc64/memcopy.h: Delete.
44711
7a99a614
AJ
447122012-04-18 Andreas Jaeger <aj@suse.de>
44713
44714 [BZ# 6794]
44715 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
44716 * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
44717 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44718
44719 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
44720 * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
44721 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44722
44723 * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
44724 * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
44725 Adjust for changed ldbl-128 files.
44726
44727 * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
44728 * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
44729 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
44730
e5270c23
DM
447312012-04-17 David S. Miller <davem@davemloft.net>
44732
44733 * sysdeps/sparc/sparc32/memcopy.h: Delete.
44734
fb5e92c9
AS
447352012-04-17 Andreas Schwab <schwab@linux-m68k.org>
44736
44737 * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
44738 * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
44739 * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
44740 * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
44741 * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
44742 * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
44743
76da7265
AZ
447442012-04-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
44745
44746 [BZ #6794]
44747 * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
44748 * math/libm-test.inc: Add ilogb errno and exception tests.
44749 * math/w_ilogb.c: New file: ilogb wrapper.
44750 * math/w_ilogbf.c: New file: ilogbf wrapper.
44751 * math/w_ilogbl.c: New file: ilogbl wrapper.
44752 * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
44753 * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
44754 * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
44755 exception being thrown with 0.0 as argument.
44756 * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
44757 * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
44758 exception being thrown with 0.0 as argument.
44759 * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
44760 * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
44761 exception being thrown with 0.0 as argument.
44762 * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
44763 * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
44764 exception being thrown with 0.0 as argument.
44765 * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
44766 * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
7a99a614 44767 * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
76da7265
AZ
44768 * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
44769 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
44770 * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
44771 * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
44772 * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
44773 * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
44774
0396e69d
PB
447752012-04-17 Petr Baudis <pasky@ucw.cz>
44776
44777 * include/sys/uio.h: Change __vector to __iovec to avoid clash
44778 with altivec.
44779
750b5926
MP
447802012-04-16 Marek Polacek <polacek@redhat.com>
44781
44782 * elf/pldd-xx.c: Rename static_assert to pldd_assert.
44783
751728a1
MP
447842012-04-16 Marek Polacek <polacek@redhat.com>
44785
44786 * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
44787 operands of fdivp instruction.
44788
34a27407
L
447892012-04-13 H.J. Lu <hongjiu.lu@intel.com>
44790
44791 * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
44792 * elf/tst-auditmod3b.c: Likewise.
44793 * elf/tst-auditmod4b.c: Likewise.
44794 * elf/tst-auditmod5b.c: Likewise.
44795 * elf/tst-auditmod6b.c: Likewise.
44796 * elf/tst-auditmod6c.c: Likewise.
44797 * elf/tst-auditmod7b.c: Likewise.
44798 * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
44799 * sysdeps/x86_64/preconfigure.in: Likewise.
44800 * sysdeps/x86_64/preconfigure: Regenerated.
44801
7e73e17d
L
448022012-04-13 H.J. Lu <hongjiu.lu@intel.com>
44803
44804 * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
44805 __ILP32__.
44806
c7a6ab72
AB
448072012-04-13 Antoine Balestrat <merkil33@gmail.com>
44808
44809 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
44810 (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
44811
a9e8e0e0
CL
448122012-04-13 Chris Leonard <cjlhomeaddress@gmail.com>
44813
44814 [BZ #13973]
44815 * locale/iso-639.def: Fix gl language name. Spotted by
44816 Yaron Shahrabani.
44817
ec98af7d
RM
448182012-04-12 Roland McGrath <roland@hack.frob.com>
44819
44820 [BZ #2074]
44821 * libio/libio.h (__io_write_fn): Update comment.
44822
247c3ede
PB
448232012-04-12 Petr Baudis <pasky@ucw.cz>
44824
44825 [BZ #2074]
44826 * stdio.texi (Hook Functions): The user provided writer function
44827 is not allowed to return -1.
44828
55939d6d
DM
448292012-04-11 David S. Miller <davem@davemloft.net>
44830
44831 * sysdeps/sparc/fpu/libm-test-ulps: Update.
44832
90020f5a
MF
448332012-04-11 Mike Frysinger <vapier@gentoo.org>
44834
44835 * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
44836 Add a leading slash to rtkaio.
44837
288f9098
JM
448382012-04-11 Jim Meyering <meyering@redhat.com>
44839
90020f5a
MF
44840 [BZ #11959]
44841 * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
44842 It is not necessarily an error to ignore fwrite's return
44843 value. One can reliably use ferror to test for errors after
44844 the fact.
288f9098 44845
4be2b570
L
448462012-04-10 H.J. Lu <hongjiu.lu@intel.com>
44847
44848 * bits/types.h (__snseconds_t): New type.
44849 * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
44850
44851 * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
44852 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
44853 (__SNSECONDS_T_TYPE): Likewise.
44854 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
44855 (__SNSECONDS_T_TYPE): Likewise.
44856 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
44857 (__SNSECONDS_T_TYPE): Likewise.
44858
288f9098 448592012-04-10 Andreas Jaeger <aj@suse.de>
4cfd8026
AJ
44860
44861 [BZ #2636]
44862 * manual/time.texi (Processor Time): Return type of times is
44863 elapsed real time since an arbitrary point in the past.
44864 (CPU Time): Move CLK_TCK from here...
44865 (Processor Time): ...to here. Correct description.
44866 * manual/conf.texi (Constants for Sysconf): Correct description of
44867 _SC_CLK_TCK.
44868
d7dd4413
DM
448692012-04-10 David S. Miller <davem@davemloft.net>
44870
44871 [BZ #13967]
44872 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
44873 where the is a gap between DT_REL(A) and DT_JMPREL.
44874
b46068fc
L
448752012-04-10 H.J. Lu <hongjiu.lu@intel.com>
44876
44877 * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
44878 (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
44879 (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
44880
73d65cc3
SP
448812012-04-10 Siddhesh Poyarekar <siddhesh@redhat.com>
44882
44883 * elf/dl-support.c (_dl_inhibit_cache): New variable.
44884 * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
44885 (dl_main): Handle --inhibit-cache.
44886 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
44887 _dl_inhibit_cache.
44888 * elf/dl-load.c (_dl_map_object): Use it.
44889 * elf/Makefile: Define SYSCONFDIR when building rtld.c.
44890
bcc8d661
JM
448912012-04-09 Joseph Myers <joseph@codesourcery.com>
44892
8f9a2fae
JM
44893 [BZ #13872]
44894 * sysdeps/i386/fpu/e_powl.S (p78): New object.
44895 (__ieee754_powl): Saturate large exponents rather than testing for
44896 overflow of y*log2(x).
44897 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
44898 * math/libm-test.inc (pow_test): Do not permit spurious overflow
44899 exceptions.
44900
bcc8d661
JM
44901 [BZ #11521]
44902 * math/s_ctan.c: Include <float.h>.
44903 (__ctan): Avoid internal overflow or cancellation in calculating
44904 denominator.
44905 * math/s_ctanf.c: Likewise.
44906 * math/s_ctanl.c: Likewise.
44907 * math/s_ctanh.c: Likewise.
44908 * math/s_ctanhf.c: Likewise.
44909 * math/s_ctanhl.c: Likewise.
44910 * math/libm-test.inc (ctan_test): Add more tests.
44911 (ctanh_test): Likewise.
44912 * sysdeps/i386/fpu/libm-test-ulps: Update.
44913 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44914
823fbbb4
AJ
449152012-04-09 Andreas Jaeger <aj@suse.de>
44916
03879793
AJ
44917 [BZ #6894]
44918 * manual/filesys.texi (Directory Entries): Mention that d_namlen
44919 is an optional BSD extension.
44920
823fbbb4
AJ
44921 [BZ #10254]
44922 * manual/stdio.texi (Opening Streams): Document additional fopen
44923 parameters.
44924
8de131cb
RM
449252012-04-09 Roland McGrath <roland@hack.frob.com>
44926
44927 * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
44928 %eax without telling the compiler.
44929
c0ed9d7d
CD
449302012-04-09 Carlos O'Donell <carlos_odonell@mentor.com>
44931
44932 [BZ # 13963]
44933 * manual/install.texi: Use sourceware.org.
44934
c483f6b4
JM
449352012-04-09 Joseph Myers <joseph@codesourcery.com>
44936
d7dd9453
JM
44937 [BZ #13873]
44938 * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
44939 (__ieee754_pow): Generate overflow and underflow using huge*huge
44940 and tiny*tiny rather than just returning constant infinity or zero
44941 for large exponents.
44942 * math/libm-test.inc (pow_test): Require overflow exceptions for
44943 applicable cases of large exponents.
44944
c483f6b4
JM
44945 [BZ #706]
44946 * sysdeps/i386/fpu/e_pow.S (p10): New object.
44947 (__ieee754_pow): Use iterative multiplication algorithm only for
44948 integer exponents with absolute value below 1024. Check for odd
44949 integer exponents when using algorithm for real exponents.
44950 * math/libm-test.inc (pow_test): Add more tests.
44951 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
44952
d2de7579
JM
449532012-04-08 Joseph Myers <joseph@codesourcery.com>
44954
44955 [BZ #13705]
44956 * math/libm-test.inc (exp_test): Do not allow overflow exception
44957 on underflow test.
44958
f77f1232
AJ
449592012-04-08 Aurelien Jarno <aurelien@aurel32.net>
44960
44961 [BZ #13705]
44962 * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
44963 instead of __kernel_standard_f.
44964
3884932b
MF
449652012-04-08 Mike Frysinger <vapier@gentoo.org>
44966
44967 * sysdeps/i386/i686/memset_chk.S: Update copyright year.
44968 * sysdeps/x86_64/memset_chk.S: Likewise.
44969
54472e9c
AJ
449702012-04-08 Andreas Jaeger <aj@suse.de>
44971
6ab0fbfc
AJ
44972 [BZ #10153]
44973 * manual/startup.texi (Environment Access): Describe return value
44974 for putenv and setenv.
44975
61efba8c
AJ
44976 [BZ #6895]
44977 * manual/filesys.texi (Directory Entries): Add description for
44978 DT_LNK.
44979
95c3f29a
AJ
44980 [BZ #6890]
44981 * manual/filesys.texi (Directory Entries): Clarify that it's file
44982 system not operating system in the description of DT_UNKNOWN.
44983
54472e9c
AJ
44984 [BZ #6578]
44985 * manual/syslog.texi (closelog): Fix reference, it's openlog.
44986
624254b1
SC
449872012-04-08 Stephen Compall <s11@member.fsf.org>
44988
44989 [BZ #6649]
44990 * manual/llio.texi (Opening and Closing Files): Add cross
44991 reference to explain mode argument.
44992
1e4920e0
MF
449932012-04-07 Mike Frysinger <vapier@gentoo.org>
44994
44995 * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
44996 * sysdeps/x86_64/memset_chk.S: Likewise.
44997
5ed848f3
DM
449982012-04-07 David S. Miller <davem@davemloft.net>
44999
45000 * elf/elf.h (R_SPARC_WDISP10): Define.
45001 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
45002 R_SPARC_SIZE32.
45003 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
45004 R_SPARC_SIZE64 and R_SPARC_H34.
45005
96154cd8
CD
450062012-04-07 Carlos O'Donell <carlos_odonell@mentor.com>
45007
45008 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
45009 conditions and remove no longer applicable assertion.
45010
9904dc47
L
450112012-04-06 H.J. Lu <hongjiu.lu@intel.com>
45012
45013 * bits/byteswap.h: Include <features.h>.
45014 (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
45015 (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
45016
f8887d0a
L
450172012-04-06 H.J. Lu <hongjiu.lu@intel.com>
45018
45019 * bits/byteswap.h (__bswap_16): Removed.
45020 Include <bits/byteswap-16.h> to get __bswap_16.
45021 * sysdeps/i386/bits/byteswap.h: Likewise.
45022 * sysdeps/s390/bits/byteswap.h: Likewise.
45023 * sysdeps/x86_64/bits/byteswap.h: Likewise.
45024 * bits/byteswap-16.h: New file.
45025 * sysdeps/i386/bits/byteswap-16.h: Likewise.
45026 * sysdeps/s390/bits/byteswap-16.h: Likewise.
45027 * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
45028 * string/Makefile (headers): Add bits/byteswap-16.h.
45029
62470f60
PP
450302012-04-06 Paul Pluzhnikov <ppluzhnikov@google.com>
45031
45032 [BZ #13895]
45033 * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
45034 extra indirection.
45035 * nss/Makefile (tests-static, tests): Add tst-nss-static.
45036 * nss/tst-nss-static.c: New.
45037
4dad7bab
RM
450382012-04-06 Robert Millan <rmh@gnu.org>
45039
45040 [BZ #6486]
45041 * manual/llio.texi (File Position Primitive): lseek
45042 refers to WHENCE when it really means OFFSET.
45043
e9142a17
AJ
450442012-04-06 Andreas Jaeger <aj@suse.de>
45045
2c040eff
AJ
45046 * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
45047 strncmp declarations.
45048
e9142a17
AJ
45049 * abilist/libc.abilist: Add __poll and __ppoll.
45050
ff9f1c5f
DM
450512012-04-05 David S. Miller <davem@davemloft.net>
45052
dcd2ae90
DM
45053 * scripts/check-local-headers.sh: Accept a host triplet in the
45054 path matched by the exclude regexp.
45055
993eb054
DM
45056 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
45057 definition.
45058 * sysdeps/powerpc/powerpc32/dl-machine.h
45059 (ELF_MACHINE_PLTREL_OVERLAP): Delete.
45060 * sysdeps/s390/s390-32/dl-machine.h
45061 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45062 * sysdeps/sparc/sparc32/dl-machine.h
45063 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45064 * sysdeps/sparc/sparc64/dl-machine.h
45065 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
45066
ff9f1c5f
DM
45067 * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
45068 lazy binding.
48e2e132 45069 * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
ff9f1c5f
DM
45070 undefined symbol errors.
45071
48e2e132 45072 * elf/rtld.c (dl_main): Skip VDSO when checking for unused
ff9f1c5f
DM
45073 DT_NEEDED entries.
45074
e80d6f94
MM
450752012-04-05 Michael Matz <matz@suse.de>
45076
45077 [BZ #13592]
45078 * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
45079
349fa79f
AJ
450802012-04-05 Andreas Jaeger <aj@suse.de>
45081
45082 [BZ #13908]
45083 * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
45084 comment.
45085
f402708f
KK
450862012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45087
45088 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
45089 which ROUND is no valid rounding mode.
45090
2ecccfc9
KK
450912012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45092
45093 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
45094 read again.
45095 * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
45096
8a53f50f
KK
450972012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45098
45099 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
45100 an exception using FPU order intentionally.
45101
451022012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
45103
45104 * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
45105 * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
45106 * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
45107 * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
45108
d653abb7
SJ
451092012-04-05 Simon Josefsson <simon@josefsson.org>
45110
45111 [BZ #12340]
45112 * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
45113 EINVAL when BUFLEN is too smal.
45114
c3b1bf7d
TS
451152012-04-05 Thomas Schwinge <thomas@codesourcery.com>
45116
45117 [BZ #13553]
45118 * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
45119 * sysdeps/mach/powerpc/machine-lock.h: Likewise.
45120
b1aa60f3
AJ
451212012-04-03 Andreas Jaeger <aj@suse.de>
45122
c3b1bf7d 45123 [BZ #13938]
67f60a26
AJ
45124 * manual/setjmp.texi (System V contexts): Fix sentence.
45125
b1aa60f3
AJ
45126 [BZ #13926]
45127 * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
45128 New macro for this case.
45129 [!__GNUC__] (__bswap_64): New inline function for this case.
45130 * sysdeps/x86_64/bits/byteswap.h: Likewise.
45131 * bits/byteswap.h: Likewise.
45132 * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
45133 ull, guard with __GLIBC_HAVE_LONG_LONG.
45134
45135 * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
45136 __GLIBC_HAVE_LONG_LONG.
45137
45138 * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
45139 Include <features.h> for __GLIBC_HAVE_LONG_LONG.
45140
39c59c35
TMQMF
451412012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
45142
45143 [BZ #13691]
45144 * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
45145 inptr and inend, rather than using last_ch.
45146
135ffda8
DM
451472012-04-02 David S. Miller <davem@davemloft.net>
45148
45149 With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
45150 * stdio-common/printf-parse.h (read_int): Change return type to
45151 'int', return -1 on INT_MAX overflow.
45152 * stdio-common/vfprintf.c (vfprintf): Validate width and precision
45153 against overflow of INT_MAX. Set errno to EOVERFLOW when 'done'
45154 overflows INT_MAX. Check for overflow of in-format-string precision
45155 values properly. Use EOVERFLOW rather than ERANGE throughout. Use
45156 SIZE_MAX not INT_MAX for integer overflow test.
45157 * stdio-common/printf-parsemb.c: If read_int signals an overflow,
45158 skip the construct in the format string but do not record anything.
45159 * stdio-common/bug22.c: Adjust to test both width/prevision
45160 INT_MAX overflow as well as total length INT_MAX overflow. Check
45161 explicitly for proper errno values.
45162
228c019e
TS
451632012-04-02 Thomas Schwinge <thomas@codesourcery.com>
45164
302cadd3
TS
45165 * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
45166 CHAR_MAX.
45167 * string/test-strcmp.c [! WIDE]: Likewise.
45168 * time/tst-mktime2.c: Likewise for INT_MAX.
45169 * string/test-string.h: #include <sys/param.h> for MIN.
45170
228c019e
TS
45171 * csu/init-first.c (__libc_init_first): Call __ctype_init.
45172 * sysdeps/i386/init-first.c (init): Likewise.
45173 * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
45174 * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
45175 * sysdeps/sh/init-first.c (init): Likewise.
45176
cfa633f5
UD
451772012-04-01 Ulrich Drepper <drepper@gmail.com>
45178
45179 * po/ru.po: Update from translation team.
d1635ef8 45180 * po/vi.po: Likewise.
cfa633f5 45181
6cd0a5ea
SP
451822012-03-31 Siddhesh Poyarekar <siddhesh@redhat.com>
45183
45184 * resolv/nss_dns/dns-host.c: Merge copyright years.
45185
4b43400f
LD
451862012-03-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
45187
45188 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
45189 Optimize memcpy with prefetch if
45190 DATA_CACHE_SIZE_HALF <= len < SHARED_CACHE_SIZE_HALF and
45191 src, dst pointers have unequal 16 byte alignments.
45192
48c41d04
SP
451932012-03-30 Siddhesh Poyarekar <siddhesh@redhat.com>
45194
45195 [BZ #13928]
45196 * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
45197 from a CNAME entry and return the minimum ttl for the query.
45198 (gaih_getanswer_slice): Likewise.
45199
b8dc394d
JL
452002012-03-30 Jeff Law <law@redhat.com>
45201
45202 * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
45203 due to long keys.
45204 * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
45205 * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
45206
2f5a5ed0
JL
45207 * resolv/nss_dns/dns-host.c: Update copyright year.
45208
1d39e359
UD
452092012-03-30 Ulrich Drepper <drepper@gmail.com>
45210
c030f70c 45211 * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
8e6d1083 45212 requests to save a system call. Fix check that all bytes are sent.
c030f70c 45213
1d39e359
UD
45214 * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
45215 comments for sendmmsg.
45216
452172012-03-30 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
e64d2de5
TMQMF
45218
45219 [BZ #13691]
45220 * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
45221 with only 1 character between 0x0041 and 0x01b0.
45222 * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
45223 * wcsmbs/tst-mbsnrtowcs.c: New file.
45224
20fde227
DM
452252012-03-29 David S. Miller <davem@davemloft.net>
45226
45227 * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
45228 small copies by hand.
45229
984a4237
JL
452302012-03-28 Siddhesh Poyarekar <siddhesh@redhat.com>
45231
45232 [BZ #13761]
57f41c40
AS
45233 * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
45234 (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
45235 group memberships.
984a4237 45236
18c9d62b
DM
452372012-03-28 David S. Miller <davem@davemloft.net>
45238
88d85d4f
DM
45239 * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
45240 that branches into memcpy.
45241 * sysdeps/sparc/sparc64/memcpy.S: Likewise.
45242 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
45243 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
45244 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
45245 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
45246 bits.
45247 * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
45248 implementation too.
45249 * sysdeps/sparc/mempcpy.S: New file.
45250
e5aa83e1
DM
45251 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
45252 the IFUNC routine in the libc case.
45253 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
45254
88570753
DM
45255 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
45256 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
45257 * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
45258 * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
45259 * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
45260 * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
45261 * sysdeps/sparc/sparc64/rtld-memset.c: New file.
45262 * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
45263
249d7567
DM
45264 * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
45265 loop to 256 bytes instead of 64 bytes and fix test signedness.
45266
18c9d62b
DM
45267 * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
45268 * sysdeps/sparc/sparc32/Makefile: rather than here...
45269 * sysdeps/sparc/sparc64/Makefile: and here.
45270
05f3d1f6
UD
452712012-03-28 Ulrich Drepper <drepper@gmail.com>
45272
45273 * malloc/mallocbug.c: Avoid warnings about unused variables.
45274
86ae07a8
JL
452752012-02-22 Siddhesh Poyarekar <siddhesh@redhat.com>
45276
45277 [BZ #13760]
45278 * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
45279 in the right place. Discard and retry query if response is
45280 larger than input buffer size.
45281
41bf21a1
JM
452822012-03-28 Joseph Myers <joseph@codesourcery.com>
45283
d6270972
JM
45284 [BZ #369]
45285 [BZ #2678]
45286 [BZ #3866]
45287 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
45288 x for large integer exponent.
45289 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
45290 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise. Adjust
45291 sign of result as needed afterwards.
45292 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
45293 * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
45294 result for underflowing pow the same as for overflow.
45295 (__kernel_standard_l): Handle powl overflow and underflow here
45296 rather than calling __kernel_standard.
45297 * math/libm-test.inc (pow_test): Add more tests.
45298
414fca03 45299 [BZ #3868]
41bf21a1
JM
45300 [BZ #13879]
45301 [BZ #13910]
45302 [BZ #13911]
45303 [BZ #13912]
45304 [BZ #13913]
45305 [BZ #13915]
45306 [BZ #13916]
45307 [BZ #13917]
45308 [BZ #13918]
45309 [BZ #13919]
45310 [BZ #13920]
45311 [BZ #13921]
45312 * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
45313 * sysdeps/ieee754/k_standard.c: Include <float.h>.
45314 (__kernel_standard_l): New function.
45315 * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
45316 __kernel_standard.
45317 * math/w_acosl.c (__acosl): Likewise.
45318 * math/w_asinl.c (__asinl): Likewise.
45319 * math/w_atan2l.c (__atan2l): Likewise.
45320 * math/w_atanhl.c (__atanhl): Likewise.
45321 * math/w_coshl.c (__coshl): Likewise.
45322 * math/w_exp10l.c (__exp10l): Likewise.
45323 * math/w_exp2l.c (__exp2l): Likewise.
45324 * math/w_fmodl.c (__fmodl): Likewise.
45325 * math/w_hypotl.c (__hypotl): Likewise.
45326 * math/w_j0l.c (__j0l, __y0l): Likewise.
45327 * math/w_j1l.c (__j1l, __y1l): Likewise.
45328 * math/w_jnl.c (__jnl, __ynl): Likewise.
45329 * math/w_lgammal.c (__lgammal): Likewise.
45330 * math/w_log10l.c (__log10l): Likewise.
45331 * math/w_log2l.c (__log2l): Likewise.
45332 * math/w_logl.c (__logl): Likewise.
45333 * math/w_powl.c (__powl): Likewise.
45334 * math/w_remainderl.c (__remainderl): Likewise.
45335 * math/w_scalbl.c (sysv_scalbl): Likewise.
45336 * math/w_sinhl.c (__sinhl): Likewise.
45337 * math/w_sqrtl.c (__sqrtl): Likewise.
45338 * math/w_tgammal.c (__tgammal): Likewise.
45339 * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
45340 * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
45341 * math/libm-test.inc (acos_test): Add more tests.
45342 (acosh_test): Likewise.
45343 (asin_test): Likewise.
45344 (atanh_test): Likewise.
45345 (exp_test): Likewise.
45346 (exp10_test): Likewise.
45347 (exp2_test): Likewise.
45348 (expm1_test): Likewise.
45349 (lgamma_test): Likewise.
45350 (log_test): Likewise.
45351 (log10_test): Likewise.
45352 (log1p_test): Likewise.
45353 (log2_test): Likewise.
45354 (pow_test): Do not allow some spurious overflow exceptions.
45355 (sqrt_test): Add more tests.
45356 (tgamma_test): Likewise.
45357 (y0_test): Likewise.
45358 (y1_test): Likewise.
45359 (yn_test): Likewise.
45360
dd62fda6
AB
453612012-03-27 Anton Blanchard <anton@samba.org>
45362
45363 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
45364 MAP_HUGETLB.
45365 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
45366 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
45367 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
45368
1e3cdfda
AJ
453692012-03-27 David S. Miller <davem@davemloft.net>
45370
b855ab85
DM
45371 * conform/Makefile: Run run-conformtest.sh using $(BASH).
45372
1e3cdfda
AJ
45373 * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
45374 have-as-vis3 check.
45375
453762012-03-27 Andreas Jaeger <aj@suse.de>
45377
45378 * sysdeps/x86_64/elf/configure.in: Moved to ...
45379 * sysdeps/x86_64/configure.in: ... here.
45380 * sysdeps/x86_64/elf/start.S: Moved to ...
45381 * sysdeps/x86_64/start.S: ... here.
45382 * sysdeps/x86_64/elf/configure: Delete.
45383
45384 * sysdeps/x86_64/configure.in: Merge contents from
45385 sysdeps/i386/configure.in (without i686 check).
45386
45387 * sysdeps/i386/elf/Versions: Merge into ...
45388 * sysdeps/i386/Versions: ... this.
45389 * sysdeps/i386/elf/Versions: Delete file.
45390 * sysdeps/i386/elf/start.S: Moved to ...
45391 * sysdeps/i386/start.S: ...here.
45392 * sysdeps/i386/elf/configure.in: Merge into...
45393 * sysdeps/i386/configure.in: ...here.
45394 * sysdeps/i386/elf/configure.in: Delete file.
45395 * sysdeps/i386/elf/configure: Delete file.
45396
45397 * sysdeps/generic/elf/backtracesyms.c: Moved to ...
45398 * debug/backtracesyms.c: ... here.
45399 * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
45400 * debug/backtracesymsfd.c: ... here.
45401 * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
45402 * sysdeps/generic/ifunc-sel.h: ... here.
45403
45404 * sysdeps/unix/i386/start.c: Delete file.
45405 * sysdeps/unix/sparc/start.c: Delete file.
45406 * sysdeps/unix/start.c: Delete file.
45407
45408 * sysdeps/sh/elf/configure.in: Moved to ...
45409 * sysdeps/sh/configure.in: ... here.
45410 * sysdeps/sh/elf/start.S: Moved to ...
45411 * sysdeps/sh/start.S: ... here.
45412 * sysdeps/sh/elf/configure: Delete file.
45413
45414 * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
45415 * sysdeps/powerpc/powerpc64/bzero.S: ... here.
45416 * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
45417 * sysdeps/powerpc/powerpc64/entry.h: ... here.
45418 * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
45419 * sysdeps/powerpc/powerpc64/start.S: here.
45420 * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
45421 * sysdeps/powerpc/powerpc64/Makefile: ... this.
45422 * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
45423 * sysdeps/powerpc/powerpc64/configure.in: ... this.
45424 * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
45425
45426 * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
45427 * sysdeps/powerpc/powerpc32/bzero.S: ... here.
45428 * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
45429 * sysdeps/powerpc/powerpc32/start.S: ... here.
45430 * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
45431 * sysdeps/powerpc/powerpc32/configure.in: ... this.
45432 * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
45433
45434 * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
45435 * sysdeps/powerpc/ifunc-sel.h: ... here.
45436 * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
45437 * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
45438
45439 * sysdeps/sparc/elf/configure.in: Moved to ...
45440 * sysdeps/sparc/configure.in: ... here.
45441 * sysdeps/sparc/elf/configure: Delete file.
45442 * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
45443 * sysdeps/sparc/sparc32/start.S: ... here.
45444 * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
45445 * sysdeps/sparc/sparc64/start.S: ... here.
45446 * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
45447 * sysdeps/sparc/sparc32/Makefile: ... this.
45448 * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
45449 * sysdeps/sparc/sparc64/Makefile: ... this.
45450
45451 * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
45452 * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
45453 * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
45454 * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
45455 * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
45456 * sysdeps/s390/s390-32/setjmp.S: ... here.
45457 * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
45458 * sysdeps/s390/s390-32/configure.in: ... here.
45459 * sysdeps/s390/s390-32/elf/configure: Delete file.
45460 * sysdeps/s390/s390-32/elf/start.S: Moved to ...
45461 * sysdeps/s390/s390-32/start.S: ... here.
45462
45463 * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
45464 * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
45465 * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
45466 * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
45467 * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
45468 * sysdeps/s390/s390-64/setjmp.S: ... here.
45469 * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
45470 * sysdeps/s390/s390-64/configure.in: ... here
45471 * sysdeps/s390/s390-64/elf/configure: Delete file.
45472 * sysdeps/s390/s390-64/elf/start.S: Moved to ...
45473 * sysdeps/s390/s390-64/start.S: ... here.
45474 * sysdeps/s390/s390-64/elf/configure: Delete.
45475
45476 * configure.in: Remove support for elf directories in sysdeps.
45477
45478 * configure: Regenerated.
45479 * sysdeps/i386/configure: Regenerated.
45480 * sysdeps/powerpc/powerpc32/configure: Regenerated.
45481 * sysdeps/powerpc/powerpc64/configure: Regenerated.
45482 * sysdeps/s390/s390-32/configure: Regenerated.
45483 * sysdeps/s390/s390-64/configure: Regenerated.
45484 * sysdeps/sh/configure: Regenerated.
45485 * sysdeps/sparc/configure: Regenerated.
45486 * sysdeps/x86_64/configure: Regenerated.
45487
a3f61311
AS
454882012-03-26 Andreas Schwab <schwab@linux-m68k.org>
45489
c876e002
AS
45490 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45491
a3f61311
AS
45492 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
45493 denormal result into account.
45494
ac4c54f0
RM
454952012-03-25 Roland McGrath <roland@hack.frob.com>
45496
45497 * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
45498 Reported by Allan McRae <allan@archlinux.org>.
45499
6a9b9c02
JL
455002012-03-23 Jeff Law <law@redhat.com>
45501
45502 * nss/getnssent.c (__nss_getent): Fix typo.
45503
4c42a0c1
DM
455042012-03-23 David S. Miller <davem@davemloft.net>
45505
45506 * sysdeps/sparc/fpu/libm-test-ulps: Update.
45507
1532c7ac
L
455082012-03-23 H.J. Lu <hongjiu.lu@intel.com>
45509
45510 * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
45511 to pad to uint64_t for each field.
45512 (dl_tls_index): Replace unsigned long with uint64_t.
45513
3ff42526
PP
455142012-03-23 Daniel Jacobowitz <dmj@google.com>
45515 Paul Pluzhnikov <ppluzhnikov@google.com>
45516
45517 [BZ #6528]
45518 * grp/Makefile (otherlibs): Don't set it.
45519 * inet/Makefile (otherlibs): Likewise.
45520 * login/Makefile (otherlibs): Likewise.
45521 * nscd/Makefile (otherlibs): Likewise.
45522 * posix/Makefile (otherlibs): Likewise.
45523 * pwd/Makefile (otherlibs): Likewise.
45524 * rt/Makefile (otherlibs): Likewise.
45525 * sunrpc/Makefile (otherlibs): Likewise.
45526 * nss/Makefile (otherlibs): Likewise.
45527 Add libnss_files to routines and static-only-routines.
45528 ($(objpfx)getent): Remove rule.
45529 * resolv/Makefile: Add libnss_dns and libresolv to routines and
45530 static-only-routines.
45531
7c69cd14
JM
455322012-03-22 Joseph Myers <joseph@codesourcery.com>
45533
45534 [BZ #13892]
45535 * math/s_cexp.c: Include <float.h>.
45536 (__cexp): Handle exp result overflowing not necessarily
45537 overflowing both real and imaginary parts of result.
45538 * math/s_cexpf.c: Likewise.
45539 * math/s_cexpl.c: Likewise.
45540 * math/libm-test.inc (cexp_test): Add more tests.
45541 * sysdeps/i386/fpu/libm-test-ulps: Update.
45542 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45543
81b035fe
L
455442012-03-22 H.J. Lu <hongjiu.lu@intel.com>
45545
45546 * include/link.h (ELFW): New macro.
45547 * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
45548 Replace ELF64_R_TYPE with ELFW(R_TYPE).
45549
1da7940c
L
455502012-03-22 H.J. Lu <hongjiu.lu@intel.com>
45551
45552 * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
45553 with uint64_t.
45554
b749dbb9
L
455552012-03-22 H.J. Lu <hongjiu.lu@intel.com>
45556
45557 * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
45558 declaration.
45559 (struct La_x32_retval): Likewise.
45560
2ff87f3f
L
455612012-03-22 H.J. Lu <hongjiu.lu@intel.com>
45562
45563 * sysdeps/x86_64/preconfigure.in: New file.
45564 * sysdeps/x86_64/preconfigure: New generated file.
45565
c0df8e69
JM
455662012-03-22 Joseph Myers <joseph@codesourcery.com>
45567
48e44791
JM
45568 [BZ #13824]
45569 * math/e_exp2l.c: Include <float.h>.
45570 (__ieee754_exp2l): Handle overflow and underflow cases
45571 separately. Only pass fractional part of argument to
45572 __ieee754_expl.
45573 * math/libm-test.inc (exp2_test): Add more tests.
45574
c0df8e69
JM
45575 * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
45576 negating x to take absolute value.
45577 * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
45578 Likewise.
45579 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
45580 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
45581 Likewise.
45582 * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
45583 computing low part if x was negated.
45584 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
45585
c8e43ba7
L
455862012-03-21 H.J. Lu <hongjiu.lu@intel.com>
45587
45588 * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
45589 la_x32_gnu_pltexit.
45590 (pltexit): Cast int_retval to ptrdiff_t.
45591 * elf/tst-auditmod3b.c: Likewise.
45592 * elf/tst-auditmod4b.c: Likewise.
45593 * elf/tst-auditmod5b.c: Likewise.
45594 * elf/tst-auditmod6b.c: Likewise.
45595 * elf/tst-auditmod6c.c: Likewise.
45596 * elf/tst-auditmod7b.c: Likewise.
45597
45598 * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
45599 and x32_gnu_pltexit.
45600
45601 * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
45602 __ELF_NATIVE_CLASS.
45603 (La_x32_regs): New macro.
45604 (La_x32_retval): Likewise.
45605 (la_x32_gnu_pltenter): New function prototype.
45606 (la_x32_gnu_pltexit): Likewise.
45607
7998fa78
AS
456082012-03-21 Andreas Schwab <schwab@linux-m68k.org>
45609
dcb33988
AS
45610 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
45611 exponent.
45612
233fc563
AS
45613 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45614
7998fa78
AS
45615 * configure.in (libc_cv_cc_nofma): Check for option to disable
45616 generation of FMA instructions.
45617 * configure: Regenerate.
45618 * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
45619 * sysdeps/ieee754/dbl-64/Makefile: New file.
45620 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
45621 Remove brandred-fma4.
45622 (CFLAGS-brandred-fma4.c): Remove.
45623 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
45624 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
45625 define.
45626 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
45627 define.
45628
8e95c99a
L
456292012-03-21 H.J. Lu <hongjiu.lu@intel.com>
45630
45631 * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
45632 LLONG_MAX != LONG_MAX.
45633 (_itoa_word): Use _ITOA_WORD_TYPE on value.
45634 (_fitoa_word): Likewise.
45635 * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
45636 LLONG_MAX != LONG_MAX.
45637 * stdio-common/_itowa.h: Include <_itoa.h>.
45638 (_itowa_word): Use _ITOA_WORD_TYPE on value.
45639 (_itowa): New macro. Defined only if _ITOA_NEEDED is false.
45640 * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro. Defined
45641 only if not defined.
45642 (_ITOA_WORD_TYPE): Likewise.
45643 (_itoa_word): Use _ITOA_WORD_TYPE on value.
45644 Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
45645
6f4db457
DM
456462012-03-21 David S. Miller <davem@davemloft.net>
45647
45648 * sysdeps/sparc/fpu/libm-test-ulps: Update.
45649
7785fe5a
L
456502012-03-21 H.J. Lu <hongjiu.lu@intel.com>
45651
45652 * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
45653 of x86_64 when setting libc_cv_slibdir, libdir and
45654 libc_cv_localedir.
45655 * sysdeps/unix/sysv/linux/configure: Regenerated.
45656
4535cd55
JM
456572012-03-21 Joseph Myers <joseph@codesourcery.com>
45658
45659 * manual/lang.texi (Old Varargs): Remove section.
45660 (How Variadic): Update menu.
45661 (va_start): Do not mention varargs.h.
45662
17228132
TS
456632012-03-21 Thomas Schwinge <thomas@codesourcery.com>
45664 Joseph Myers <joseph@codesourcery.com>
45665
45666 * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
45667 link test.
45668 * configure: Regenerated.
45669
8149f976
TS
456702012-03-21 Thomas Schwinge <thomas@codesourcery.com>
45671
05f3d1f6
UD
45672 * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
45673 * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
45674 conformtest.pl
8149f976 45675
1a4ac776
JM
456762012-03-21 Joseph Myers <joseph@codesourcery.com>
45677
be22ce65
JM
45678 * NOTES: Remove.
45679 * Makefile (files-for-dist): Remove NOTES.
45680 (NOTES): Remove rule.
45681 * README: Don't refer to NOTES.
45682 * manual/creature.texi: Don't include macros.texi.
45683 * manual/intro.texi (creature.texi): Remove comment referring to
45684 NOTES.
45685
40b601fb
JM
45686 * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
45687 * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
45688 * configure: Regenerated.
45689 * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
45690 LIBC_TRY_CC_OPTION.
45691 (libc_cv_as_i686): Likewise.
45692 (libc_cv_cc_avx): Likewise.
45693 (libc_cv_cc_sse2avx): Likewise.
45694 (libc_cv_cc_fma4): Likewise.
45695 (libc_cv_cc_novzeroupper): Likewise.
45696 * sysdeps/i386/configure: Regenerated.
45697
1a4ac776
JM
45698 [BZ #13883]
45699 * sysdeps/i386/fpu/s_cexp.S: Remove.
45700 * sysdeps/i386/fpu/s_cexpf.S: Likewise.
45701 * sysdeps/i386/fpu/s_cexpl.S: Likewise.
45702 * math/libm-test.inc (cexp_test): Add more tests.
45703 * sysdeps/i386/fpu/libm-test-ulps: Update.
45704 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45705
a458e7fe
AM
457062012-03-21 Allan McRae <allan@archlinux.org>
45707
45708 * timezone/Makefile: Do not install iso3166.tab and zone.tab
45709
0cb7efc5
JM
457102012-03-21 Joseph Myers <joseph@codesourcery.com>
45711
45712 [BZ #13871]
45713 * math/w_exp2.c: Do not include <float.h>.
45714 (o_threshold, u_threshold): Remove.
45715 (__exp2): Calculate result before checking finiteness and calling
45716 __kernel_standard.
45717 * math/w_exp2f.c: Likewise.
45718 * math/w_exp2l.c: Likewise.
45719 * math/libm-test.inc (exp2_test): Require overflow exception for
45720 1e6 input.
2460d3aa
JM
45721
45722 [BZ #3866]
45723 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
45724 range of signed 64-bit integers before using fistpll. Remove
45725 checks for whether integers fit in mantissa bits.
45726 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
45727 the range of signed 32-bit integers before using fistpl. Remove
45728 checks for whether integers fit in mantissa bits.
45729 * sysdeps/i386/fpu/e_powl.S (p64): New object.
45730 (__ieee754_powl): Test for y outside the range of signed 64-bit
45731 integers before using fistpll. Reduce 64-bit values to 63-bit
45732 ones as needed.
45733 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
45734 divide-by-zero is raised for zero to large negative powers.
45735 * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
45736 (__ieee754_powl): Test for y outside the range of signed 64-bit
45737 integers before using fistpll. Reduce 64-bit values to 63-bit
45738 ones as needed.
45739 * math/libm-test.inc (pow_test): Add more tests.
45740
eb96ffb0
L
457412012-03-20 H.J. Lu <hongjiu.lu@intel.com>
45742
45743 * debug/backtracesymsfd.c: Include <_itoa.h> instead of
45744 <stdio-common/_itoa.h>.
45745 * debug/segfault.c: Likewise.
45746 * elf/dl-cache.c: Likewise.
45747 * elf/dl-minimal.c: Likewise.
45748 * elf/dl-misc.c: Likewise.
45749 * elf/dl-sysdep.c: Likewise.
45750 * elf/dl-version.c: Likewise.
45751 * elf/rtld.c: Likewise.
45752 * hurd/hurdsock.c: Likewise.
45753 * hurd/lookup-retry.c: Likewise.
45754 * malloc/malloc.c: Likewise.
45755 * malloc/mtrace.c: Likewise.
45756 * nscd/nscd_getgr_r.c: Likewise.
45757 * nscd/nscd_getpw_r.c: Likewise.
45758 * nscd/nscd_getserv_r.c: Likewise.
45759 * posix/getopt_init.c: Likewise.
45760 * posix/wordexp.c: Likewise.
45761 * stdio-common/_itoa.c: Likewise.
45762 * stdio-common/printf_fphex.c: Likewise.
45763 * stdio-common/vfprintf.c: Likewise.
45764 * string/_strerror.c: Likewise.
45765 * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
45766 * sysdeps/i386/i686/hp-timing.h: Likewise.
45767 * sysdeps/mach/_strerror.c: Likewise.
45768 * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
45769 * sysdeps/mach/hurd/sethostid.c: Likewise.
45770 * sysdeps/mach/hurd/xmknodat.c: Likewise.
45771 * sysdeps/mach/xpg-strerror.c: Likewise.
45772 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
45773 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
45774 * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
45775 * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
45776 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
45777 * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
45778 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
45779 * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
45780 * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
45781 * sysdeps/unix/sysv/linux/futimes.c: Likewise.
45782 * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
45783 * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
45784 * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
45785 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
45786 * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
45787 * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
45788 * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
45789 * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
45790 * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
45791 * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
45792 * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
45793
45794 * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
45795
45796 * stdio-common/_itoa.h: Moved to ...
45797 * sysdeps/generic/_itoa.h: Here.
45798
45799 * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
45800
45801 * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
45802 instead of "_itoa.h" and "_itowa.h".
45803 * stdio-common/vfprintf.: Likewise.
45804
d1af992d
L
458052012-03-20 H.J. Lu <hongjiu.lu@intel.com>
45806
45807 * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
45808 <bits/wordsize.h>.
45809 (__signbitf): Check __x86_64__ instead of __WORDSIZE.
45810 (__signbit): Likwise.
45811 (llrintf): Likwise.
45812 (llrint): Likwise.
45813
114883e0
L
458142012-03-20 H.J. Lu <hongjiu.lu@intel.com>
45815
45816 * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
45817 __WORDSIZE != 64.
45818
c135cc1b
JM
458192012-03-20 Joseph Myers <joseph@codesourcery.com>
45820
45821 * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
45822 OVERFLOW_EXCEPTION_OK.
45823 * math/libm-test.inc ("Philosophy"): Update comment about
45824 exception testing.
45825 (OVERFLOW_EXCEPTION): Define.
45826 (OVERFLOW_EXCEPTION_OK): Likewise.
45827 (INVALID_EXCEPTION_OK): Renumber.
45828 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
45829 (IGNORE_ZERO_INF_SIGN): Likewise.
45830 (test_exceptions): Handle FE_OVERFLOW.
45831 (exp10_test): Expect overflow exceptions.
45832 (exp2_test): Likewise.
45833 (expm1_test): Likewise.
45834 (nextafter_test): Likewise.
45835 (pow_test): Likewise.
45836 (scalbn_test): Likewise.
45837 (scalbln_test): Likewise.
45838
95443d88
L
458392012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45840
45841 * sysdeps/x86_64/bits/atomic.h
45842 (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
45843 64bit integer.
45844 (atomic_exchange_acq): Likewise.
45845 (__arch_exchange_and_add_body): Likewise.
45846 (__arch_add_body): Likewise.
45847 (atomic_add_negative): Likewise.
45848 (atomic_add_zero): Likewise.
45849
490df6c4
L
458502012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45851
c2722551 45852 * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
490df6c4
L
45853 (fenv_t): Check __x86_64__ instead of __WORDSIZE.
45854
5e52b189
L
458552012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45856
45857 * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
45858 Check __x86_64__ instead of __WORDSIZE.
45859
a9879d4c
L
458602012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45861
45862 * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
45863
5df98260
DM
458642012-03-19 David S. Miller <davem@davemloft.net>
45865
e1497744
DM
45866 * sysdeps/sparc/fpu/libm-test-ulps: Update.
45867
5df98260
DM
45868 * sysdeps/sparc/fpu/fenv_private.h: New file.
45869 * sysdeps/sparc/fpu/math_private.h: Use it.
45870 (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
45871 Remove.
57f41c40 45872 (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
5df98260
DM
45873 (libc_feholdexcept_setroundl): Remove.
45874 (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
45875 Remove.
45876 (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
45877 (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
45878
b4c35121
L
458792012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45880
45881 * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
45882 int64_t instead of long int.
45883 (INSERT_WORDS64): Likwise.
45884
56965fd7
L
458852012-03-19 H.J. Lu <hongjiu.lu@intel.com>
45886
45887 * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
45888 _Unwind_GetCFA return to _Unwind_Ptr first.
45889
83d1aec8
JM
458902012-03-19 Joseph Myers <joseph@codesourcery.com>
45891
1897ad44
JM
45892 [BZ #13629]
45893 * math/s_clog.c: Include <float.h>.
45894 (__clog): Scale large or subnormal inputs.
45895 * math/s_clogf.c: Likewise.
45896 * math/s_clogl.c: Likewise.
45897 * math/s_clog10.c: Include <float.h>.
45898 (M_LOG10_2): Define.
45899 (__clog10): Scale large or subnormal inputs.
45900 * math/s_clog10f.c: Likewise.
45901 * math/s_clog10l.c: Likewise.
45902 * math/libm-test.inc (clog_test): Add more tests.
45903 (clog10_test): Likewise.
45904 * sysdeps/i386/fpu/libm-test-ulps: Update.
45905 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45906
7726d6a9
JM
45907 [BZ #11451]
45908 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
45909 x and y.
45910 * math/libm-test.inc (atan2_test): Add another test.
45911
83d1aec8
JM
45912 * Makerules (common-objdir-compile): Remove.
45913 * sysdeps/unix/Makefile (config-generated): Do not add
45914 $(unix-generated) to variable.
45915 [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
45916 [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
45917 Remove rule.
45918 [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
45919 Likewise.
45920 [generic bits/local_lim.h] (before-compile): Do not append to
45921 variable.
45922 [generic bits/local_lim.h] (common-generated): Likewise.
45923 [generic sys/param.h] (before-compile): Do not append to variable.
45924 [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
45925 [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
45926 [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
45927 [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
45928 include.
45929 [generic sys/param.h] (sys/param.h-includes): Remove variable.
45930 [generic sys/param.h] (sys/param.h-includes): Remove rule.
45931 [generic sys/param.h] ($(addprefix
45932 $(common-objpfx),$(sys/param.h-includes))): Likewise.
45933 [generic sys/param.h] (common-generated): Do not append to
45934 variable.
45935 [generic sys/param.h] (sysdep_headers): Likewise.
45936 [generic bits/errno.h] (before-compile): Do not append to
45937 variable.
45938 [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
45939 rule.
45940 [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
45941 [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
45942 [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
45943 [generic bits/errno.h] (common-generated): Do not append to
45944 variable.
45945 [generic bits/ioctls.h] (before-compile): Do not append to
45946 variable.
45947 [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
45948 rule.
45949 [generic bits/ioctls.h] (ioctl-includes): Remove variable.
45950 [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
45951 [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
45952 rule.
45953 [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
45954 [generic bits/ioctls.h] (bits_termios.h): Remove variable.
45955 [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
45956 [generic bits/ioctls.h] (common-generated): Do not append to
45957 variable.
45958 [generic sys/syscall.h] (syscall.h): Remove variable.
45959 [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
45960 rule.
45961 [generic sys/syscall.h] (before-compile): Do not append to
45962 variable.
45963 [generic sys/syscall.h] (common-generated): Likewise.
45964 * sysdeps/unix/errnos-tmpl.c: Remove file.
45965 * sysdeps/unix/errnos.awk: Likewise.
45966 * sysdeps/unix/ioctls-tmpl.c: Likewise.
45967 * sysdeps/unix/ioctls.awk: Likewise.
45968 * sysdeps/unix/mk-local_lim.c: Likewise.
45969 * sysdeps/unix/snarf-ioctls: Likewise.
45970
4851a949
RH
459712012-03-19 Richard Henderson <rth@twiddle.net>
45972
bd37f2ee
RH
45973 * sysdeps/i386/fpu/fenv_private.h: New file.
45974 * sysdeps/i386/fpu/math_private.h: Use it.
45975 (math_opt_barrier, math_force_eval): Remove.
45976 (libc_feholdexcept_setround_53bit): Remove.
45977 (libc_feupdateenv_53bit): Remove.
45978 * sysdeps/x86_64/fpu/math_private.h: Likewise.
45979 (math_opt_barrier, math_force_eval): Remove.
45980 (libc_feholdexcept): Remove.
45981 (libc_feholdexcept_setround): Remove.
45982 (libc_fetestexcept, libc_fesetenv): Remove.
45983 (libc_feupdateenv_test): Remove.
45984 (libc_feupdateenv, libc_feholdsetround): Remove.
45985 (libc_feresetround): Remove.
45986
d0adc922
RH
45987 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
45988 * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
45989
0fe0f1f8
RH
45990 * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
45991 (libc_feupdateenv_test, libc_feupdateenv_testf): New.
45992 (libc_feupdateenv_testl): New.
45993 * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
45994 (libc_feupdateenv_testf): New.
45995 (libc_feupdateenv): Use libc_feupdateenv_test.
45996 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
45997 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
45998
eb92c487
RH
45999 * sysdeps/generic/math_private.h (libc_feholdsetround): New.
46000 (libc_feholdsetroundf, libc_feholdsetroundl): New.
46001 (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
46002 (libc_feresetround_noex): New.
46003 (libc_feresetround_noexf): New.
46004 (libc_feresetround_noexl): New.
46005 (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
46006 (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
46007 (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
46008 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
46009 SET_RESTORE_ROUND.
46010 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
46011 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
46012 (__cos): Likewise.
46013 * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
46014 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
46015 SET_RESTORE_ROUND_NOEX.
46016 * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
46017 SET_RESTORE_ROUND_NOEXF.
46018 * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
46019 * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
46020 (libc_feholdsetroundf): New.
46021 (libc_feresetround, libc_feresetroundf): New.
46022
7d2e8012
RH
46023 * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
46024 (libc_feholdexcept_setround_53bit): Convert from macro to function.
46025 (libc_feupdateenv_53bit): Likewise. Don't force _FPU_EXTENDED.
46026
b4dabbb4
RH
46027 * sysdeps/generic/math_private.h: Include <fenv.h>.
46028 (default_libc_feholdexcept): New.
46029 (default_libc_feholdexcept_setround): New.
46030 (default_libc_fesetenv, default_libc_feupdateenv): New.
46031 (libc_feholdexcept): Only define if undefined.
46032 (libc_feholdexceptf, libc_feholdexceptl): Likewise.
46033 (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
46034 (libc_feholdexcept_setroundl): Likewise.
46035 (libc_feholdexcept_setround_53bit): Likewise.
46036 (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
46037 (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
46038 (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
46039 (libc_feupdateenv_53bit): Likewise.
46040 * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
46041 (libc_feholdexcept): Convert from macro to inline function.
46042 (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
46043 (libc_fesetenv, libc_feupdateenv): Likewise.
46044
4851a949
RH
46045 * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
46046 not previously defined.
46047 (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
46048 (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
46049 (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
46050 * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
46051 * sysdeps/ieee754/flt-32/math_private.h: New file.
46052 * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
46053 math_private.h below SET_FLOAT_WORD.
46054 (__isnan, __isinf_ns, __finite): Remove.
46055 (__isnanf, __isinf_nsf, __finitef): Remove.
46056
e79d442e
AS
460572012-03-18 Andreas Schwab <schwab@linux-m68k.org>
46058
46059 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46060
90b80344
DM
460612012-03-17 David S. Miller <davem@davemloft.net>
46062
46063 [BZ #6471]
46064 * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
46065 for 2.16.
46066
edc21804
DM
460672012-03-16 David S. Miller <davem@davemloft.net>
46068
77e927af
DM
46069 * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
46070 warnings.
46071
374976dd
DM
46072 [BZ #6471]
46073 * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
46074 properly.
46075 * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
46076 * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
46077 sysdep_routines when subdir is sysvipc.
46078 * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
46079 __getshmlba helper.
46080
edc21804
DM
46081 * sysdeps/sparc/fpu/libm-test/ulps: Update.
46082
473c3ef3
L
460832012-03-16 H.J. Lu <hongjiu.lu@intel.com>
46084
46085 * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
46086 [__LP64__].
46087
eb0f39b6
L
460882012-03-16 H.J. Lu <hongjiu.lu@intel.com>
46089
46090 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
46091 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
46092 (__lround): Renamed to ...
46093 (__llround): This. Replace long int with long long int.
46094 Define lround functions as aliases of llround functions.
46095 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
46096
6b6cd74b
L
460972012-03-16 H.J. Lu <hongjiu.lu@intel.com>
46098
46099 * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
46100 Use greg_t on sp. Use unsigned int on idx_uc_link. Cast
46101 adresses to uintptr_t. Replace "long int" and "unsigned long
46102 int" with "greg_t" on va_arg.
46103
f1a77b01
L
461042012-03-16 H.J. Lu <hongjiu.lu@intel.com>
46105
46106 * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
46107 * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
46108
46109 * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
46110 Move e_machine check before EI_CLASS check. Handle x32
46111 libraries. Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
46112 * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
46113 SKIP_EM_IA_64 and include
46114 <sysdeps/unix/sysv/linux/i386/readelflib.c>.
46115
46116 * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
46117 Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
46118 (add_system_dir): New macro.
46119
46120 * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
46121 (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
46122
11b90b9f
JM
461232012-03-16 Joseph Myers <joseph@codesourcery.com>
46124
c36e1d23
JM
46125 [BZ #2551]
46126 [BZ #2552]
46127 [BZ #2553]
46128 [BZ #2554]
46129 [BZ #2562]
46130 [BZ #2563]
46131 [BZ #2565]
46132 [BZ #2566]
46133 [BZ #2576]
46134 * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
46135 (y0): Likewise.
46136 * math/w_j0f.c (j0f): Likewise.
46137 (y0f): Likewise.
46138 * math/w_j0l.c (__j0l): Likewise.
46139 (__y0l): Likewise.
46140 * math/w_j1.c (j1): Likewise.
46141 (y1): Likewise.
46142 * math/w_j1f.c (j1f): Likewise.
46143 (y1f): Likewise.
46144 * math/w_j1l.c (__j1l): Likewise.
46145 (__y1l): Likewise.
46146 * math/w_jn.c (jn): Likewise.
46147 (yn): Likewise.
46148 * math/w_jnf.c (jnf): Likewise.
46149 (ynf): Likewise.
46150 * math/w_jnl.c (__jnl): Likewise.
46151 (__ynl): Likewise.
46152 * math/libm-test.inc (j0_test): Add more tests.
46153 (j1_test): Likewise.
46154 (jn_test): Likewise. Add trailing semicolon to existing test.
46155 (y0_test): Likewise.
46156 (y1_test): Likewise.
46157 * sysdeps/i386/fpu/libm-test-ulps: Update.
46158 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46159
11b90b9f
JM
46160 [BZ #13851]
46161 [BZ #13854]
46162 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
46163 libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
46164 * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
46165 * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
46166 (__tanl): Set errno for infinite argument.
46167 * sysdeps/i386/fpu/mptan.c: Remove.
46168 * sysdeps/i386/fpu/s_tan.S: Likewise.
46169 * sysdeps/i386/fpu/s_tanl.S: Likewise.
46170 * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
46171 * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
46172 * math/libm-test.inc (tan_test): Add more tests and enable more
46173 tests for double and long double.
46174 * sysdeps/i386/fpu/libm-test-ulps: Update.
46175 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46176
6a1bd2a1
JK
461772012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
46178
46179 * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
46180 (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
46181
10a803e0
RM
461822012-03-16 Roland McGrath <roland@hack.frob.com>
46183
46184 * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
46185 * configure.in: Use it for both main tree and add-ons.
46186 * configure: Regenerated.
46187
f196c7f7
L
461882012-03-16 H.J. Lu <hongjiu.lu@intel.com>
46189
46190 * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
46191
8848d99d
JM
461922012-03-16 Joseph Myers <joseph@codesourcery.com>
46193
96cbe7f4
JM
46194 * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
46195 in comment.
46196
8848d99d
JM
46197 [BZ #13851]
46198 * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
46199 * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
46200 * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
46201 * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
46202 * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
46203 infinite argument.
46204 * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
46205 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
46206 != 0 for prec == 2.
46207 * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
46208 * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
46209 * sysdeps/i386/fpu/s_cosl.S: Likewise.
46210 * sysdeps/i386/fpu/s_sincosl.S: Likewise.
46211 * sysdeps/i386/fpu/s_sinl.S: Likewise.
46212 * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
46213 * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
46214 * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
46215 * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
46216 * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
46217 * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
46218 * math/libm-test.inc (cos_test): Add more tests and enable more
46219 tests for long double.
46220 (sin_test): Likewise.
46221 (sincos_test): Likewise.
46222 * sysdeps/i386/fpu/libm-test-ulps: Update.
46223 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46224
dd7f4703
DM
462252012-03-16 David S. Miller <davem@davemloft.net>
46226
46227 * sysdeps/sparc/fpu/math_private.h: New file.
46228
006f1daa
DM
462292012-03-15 David S. Miller <davem@davemloft.net>
46230
c0c83bc8
DM
46231 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
46232 file.
e6a62e18 46233 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
c0c83bc8
DM
46234 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
46235 file.
e6a62e18
DM
46236 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
46237 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
46238 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
46239 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
46240 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
46241 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
46242 sysdep routines.
46243 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
46244
88cb87d9
DM
46245 * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
46246 * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
46247
006f1daa 46248 * sysdeps/sparc/sparc-ifunc.h: New file.
c0c83bc8
DM
46249 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
46250 sparc-ifunc.h
006f1daa 46251 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
c0c83bc8
DM
46252 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
46253 Likewise.
46254 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
46255 Likewise.
006f1daa
DM
46256 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
46257 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
46258 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
c0c83bc8
DM
46259 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
46260 Likewise.
006f1daa
DM
46261 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
46262 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
46263 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
46264 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
c0c83bc8
DM
46265 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
46266 Likewise.
46267 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
46268 Likewise.
006f1daa
DM
46269 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
46270 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
46271 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
46272 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
46273 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
46274 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
46275 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
46276 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
46277 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
46278 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
46279 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
46280 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
46281 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
46282 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
46283 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
46284 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
46285 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
46286 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
46287 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
46288 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
46289 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
46290 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
46291 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
46292 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
46293
11e0098e
AS
462942012-03-15 Andreas Schwab <schwab@linux-m68k.org>
46295
46296 * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
46297 scaling.
46298 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46299
e85b09d0
AJ
463002012-03-15 Andreas Jaeger <aj@suse.de>
46301
46302 [BZ #13852]
46303 * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
46304 ieee754/flt-32 implementation for sin, cos and sincos.
46305 * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
46306 * sysdeps/i386/fpu/s_cosf.S: Likewise.
46307 * sysdeps/i386/fpu/s_sincosf.S: Likewise.
46308 * sysdeps/i386/fpu/s_sinf.S: Likewise.
46309 * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
46310 ieee754/flt-32 implementation for tan.
46311
46312 * math/libm-test.inc (cos_test): Enable some large input tests for
46313 float as well
46314 (sin_test): Likewise.
46315 (sincos_test): Likewise.
46316 (tan_test): Add tests for large input.
46317
46318 * sysdeps/i386/fpu/libm-test-ulps: Update.
46319
81c64153
AJ
463202012-03-15 Andreas Jaeger <aj@suse.de>
46321
46322 [BZ #13658]
46323 * math/libm-test.inc (cos_test): Add more test cases.
46324 (sin_test): Likewise.
46325 (sincos_test): Likewise.
46326
7bbfa5c6
AJ
463272012-03-15 Andreas Jaeger <aj@suse.de>
46328
46329 [BZ #13837]
46330 * math/libm-test.inc (cos_test): Add a test case for large input
46331 value.
46332 (sin_test): Likewise.
46333 (sincos_test): Likewise.
46334
57f41c40
AS
463352012-03-15 Andreas Jaeger <aj@suse.de>
46336 Joseph Myers <joseph@codesourcery.com>
7bbfa5c6
AJ
46337
46338 [BZ #13658]
0671f479 46339 * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
7bbfa5c6
AJ
46340 x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
46341 * sysdeps/i386/fpu/branred.c: Likewise.
46342 * sysdeps/i386/fpu/dosincos.c: Likewise.
46343 * sysdeps/i386/fpu/mpa.c: Likewise.
46344 * sysdeps/i386/fpu/s_cos.S: Likewise.
46345 * sysdeps/i386/fpu/s_sin.S: Likewise.
46346 * sysdeps/i386/fpu/s_sincos.S: Likewise.
46347 * sysdeps/i386/fpu/sincos32.c: Likewise.
46348
46349 * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
46350 Define.
46351 (libc_feupdateenv_53bit): Define.
46352 * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
46353 Define.
46354 (libc_feupdateenv_53bit): Define.
46355
46356 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
46357 53 bit (without extend i386 double precision).
46358
46359 * math/libm-test.inc (sincos_test): Add tests for large input.
46360 (sin): Likewise.
46361 (cos): Likewise.
46362
46363 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
46364
9cad04ea
AS
463652012-03-15 Andreas Schwab <schwab@linux-m68k.org>
46366
46367 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46368
f7062b9a
DM
463692012-03-15 David S. Miller <davem@davemloft.net>
46370
46371 * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
46372 * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
46373 * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
46374 * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
46375 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
46376 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
46377 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
46378 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
46379 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
46380 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
46381 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
46382 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
46383 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
46384 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
46385 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
c0c83bc8
DM
46386 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
46387 file.
f7062b9a 46388 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
c0c83bc8
DM
46389 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
46390 file.
f7062b9a 46391 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
c0c83bc8
DM
46392 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
46393 file.
f7062b9a 46394 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
c0c83bc8
DM
46395 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
46396 file.
f7062b9a
DM
46397 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
46398 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
46399 fmin/fmax sysdep routines.
46400 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
46401
7bd951ff
DM
464022012-03-14 David S. Miller <davem@davemloft.net>
46403
559398ab
DM
46404 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
46405 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
46406 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
46407 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
46408 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
46409 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
46410 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
46411 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
46412 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
46413 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
46414 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
46415 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
46416 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
46417 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
46418 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
46419 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
46420 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
46421 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
46422 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
46423 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
46424 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
46425 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
46426 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
46427 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
46428 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
46429 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
46430 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
46431 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
c0c83bc8
DM
46432 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
46433 routines.
46434 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
46435 file.
559398ab 46436 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
c0c83bc8
DM
46437 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
46438 file.
559398ab 46439 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
c0c83bc8
DM
46440 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
46441 file.
559398ab 46442 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
c0c83bc8
DM
46443 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
46444 file.
559398ab 46445 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
c0c83bc8
DM
46446 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
46447 file.
559398ab 46448 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
c0c83bc8
DM
46449 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
46450 file.
46451 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
46452 file.
46453 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
46454 file.
46455 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
46456 file.
46457 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
46458 New file.
46459 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
46460 file.
46461 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
46462 file.
559398ab 46463 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
c0c83bc8
DM
46464 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
46465 file.
559398ab 46466 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
c0c83bc8
DM
46467 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
46468 file.
559398ab 46469 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
c0c83bc8
DM
46470 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
46471 file.
559398ab 46472 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
c0c83bc8
DM
46473 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
46474 VIS3 routines.
559398ab
DM
46475
46476 * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
46477 New file.
46478
5a1c1e32
DM
46479 * sysdeps/sparc/fpu/libm-test-ulps: Update.
46480
eae47a36
DM
46481 * sysdeps/sparc/configure.in: New file.
46482 * sysdeps/sparc/configure: Generate.
46483 * configure.in (libc_cv_sparc_as_vis3): Substitute.
46484 * configure: Regenerate.
46485 * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
46486 * config.make.in (have-as-vis3): New.
46487 * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
46488 available use -Av9d instead of -Av9a.
46489 * sysdeps/sparc/sparc64/Makefile: Likewise.
46490 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
c0c83bc8
DM
46491 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
46492 New file.
46493 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
46494 file.
46495 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
46496 New file.
46497 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
46498 file.
eae47a36
DM
46499 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
46500 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
46501 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
46502 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
46503 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
46504
c0c83bc8
DM
46505 * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
46506 fzeros/fnegs to load 0x80000000 into a float register instead of
46507 using the stack.
7bd951ff
DM
46508 * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
46509
bd951ccb
JM
465102012-03-14 Joseph Myers <joseph@codesourcery.com>
46511
46512 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46513 bits/syscall.h.
46514 ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
46515 ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
46516 ($(inst_includedir)/bits/syscall.h): Remove rule.
46517 ($(objpfx)bits/syscall.d): Include instead of
46518 $(objpfx)syscall-list.d.
46519 (generated): Change syscall-list.h and syscall-list.d to
46520 bits/syscall.h and bits/syscall.d.
46521
bb4e6db2
RM
465222012-03-14 Roland McGrath <roland@hack.frob.com>
46523
46524 [BZ #13846]
46525 * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
46526
aa4a2ae1
JM
465272012-03-14 Joseph Myers <joseph@codesourcery.com>
46528
e456826d
JM
46529 [BZ #13841]
46530 * math/s_csqrt.c: Include <float.h>.
46531 (__csqrt): Scale large or subnormal inputs.
46532 * math/s_csqrtf.c: Likewise.
46533 * math/s_csqrtl.c: Likewise.
46534 * math/libm-test.inc (csqrt_test): Add more tests.
46535 * sysdeps/i386/fpu/libm-test-ulps: Update.
46536 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46537
aa4a2ae1
JM
46538 [BZ #13840]
46539 * math/libm-test.inc (hypot_test): Add more tests.
46540
7c10fd35
DM
465412012-03-13 David S. Miller <davem@davemloft.net>
46542
46543 [BZ #13840]
46544 * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
46545 double-precision for the calculation instead of scaling.
46546
f453b98b
JM
465472012-03-13 Joseph Myers <joseph@codesourcery.com>
46548
46549 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
46550 manipulate bits before adding and subtracting TWO52[sx].
46551 * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
46552 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
46553 Likewise.
46554 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
46555
09a3453f
DM
465562012-03-13 David S. Miller <davem@davemloft.net>
46557
8e59da90
DM
46558 * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
46559 * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
46560 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
46561 rtld-global-offsets.h
46562 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
46563
2a8ab7f2
DM
46564 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
46565 large parameters.
46566
10f62770
DM
46567 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
46568
5f0bdb18
DM
46569 * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
46570 'err' in the ifdef scope in which it is actually used.
46571
09a3453f
DM
46572 * nss/nss_db/db-init.c: Include string.h
46573
b4b2eb5e
DM
465742012-03-12 David S. Miller <davem@davemloft.net>
46575
98bb2f1c
DM
46576 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
46577 masking out of the most significant byte of random value used.
46578 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46579 Fix coding style in previous change.
46580
b4b2eb5e
DM
46581 * sysdeps/unix/sysv/linux/kernel-features.h
46582 (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
46583 (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
46584 expression.
46585 (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
46586 later.
46587
6e226b09
DM
465882012-03-11 David S. Miller <davem@davemloft.net>
46589
a1bcbd40
DM
46590 * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
46591 (__makecontext): Fix signedness of pointer casts setting up 'sp'.
46592 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
46593 for 'resultvar' otherwise things get truncated on 64-bit.
46594
cb9d6174
DM
46595 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46596 Fix masking out of the most significant byte of random value used.
46597
6e226b09
DM
46598 * sysdeps/sparc/fpu/libm-test-ulps: Update.
46599
058c132d
AS
466002012-03-10 Andreas Schwab <schwab@linux-m68k.org>
46601
46602 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
46603
2d2cd515
DM
466042012-03-09 David S. Miller <davem@davemloft.net>
46605
46606 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
46607 variables with appropriate CPP guards.
57f41c40
AS
46608 * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
46609 from the frame pointer, not the stack pointer. Correct layout
46610 comments. Fix test on resulting framesize and the management of
46611 the outregs buffer for pltexit. Preserve floating point return
46612 values across _dl_call_pltexit call.
2d2cd515
DM
46613 * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
46614 framesize and the management of the outregs buffer for pltexit.
46615 Preserve floating point return values across _dl_call_pltexit
46616 call.
57f41c40
AS
46617 * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
46618 (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
46619 (la_sparc64_gnu_pltexit): New functions.
2d2cd515
DM
46620 (print_exit): Fix format string for return register value.
46621
9a07f9d0
JM
466222012-03-10 Joseph Myers <joseph@codesourcery.com>
46623
46624 * sunrpc/Makefile (others): Add rpcgen.
46625 ($(objpfx)rpcgen): Remove special build rule and dependency on
46626 libc.
46627 * sunrpc/rpcgen.c: New file.
46628
547b5e30
PE
466292012-03-09 Paul Eggert <eggert@cs.ucla.edu>
46630
c524201a
PE
46631 [BZ #13673]
46632 * posix/bug-regex33.c: Replace FSF snail mail address with URL.
46633 * stdio-common/bug-vfprintf-nargs.c: Likewise.
46634 * sysdeps/i386/crti.S: Likewise.
46635 * sysdeps/i386/crtn.S: Likewise.
46636 * sysdeps/powerpc/powerpc32/crti.S: Likewise.
46637 * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
46638 * sysdeps/powerpc/powerpc64/crti.S: Likewise.
46639 * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
46640 * sysdeps/sh/crti.S: Likewise.
46641 * sysdeps/sh/crtn.S: Likewise.
46642 * sysdeps/x86_64/fpu/e_expf.S: Likewise.
46643
7b6235f2
PE
46644 [BZ #13673]
46645 * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
46646 with URL.
46647 * locale/programs/locfile-kw.gperf: Likewise.
46648 * locale/programs/charmap-kw.h: Regenerated.
46649 * locale/programs/locfile-kw.h: Likewise.
46650
547b5e30
PE
46651 [BZ #13673]
46652 * intl/plural.y: Replace FSF snail mail address with URL.
46653 * intl/plural.c: Regenerated.
46654
5f0a5dae
RH
466552012-03-09 Richard Henderson <rth@twiddle.net>
46656
46657 * include/math_private.h: Remove file.
46658 * math/math_private.h: Move file ...
46659 * sysdeps/generic/math_private.h: ... here.
46660
b8c03620
RH
46661 * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
46662 * sysdeps/powerpc/fpu/math_private.h: Likewise.
46663 * sysdeps/x86_64/fpu/math_private.h: Likewise.
46664
4e234f5d 46665 * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
33154d7b
RH
46666 and <math_private.h>.
46667 * sysdeps/i386/fpu/s_isinfl.c: Likewise.
46668 * sysdeps/i386/fpu/s_isnanl.c: Likewise.
46669 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
46670 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
46671 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
46672 * sysdeps/ieee754/dbl-64/branred.c: Likewise.
46673 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
46674 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
46675 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
46676 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
46677 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
46678 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
46679 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
46680 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
46681 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
46682 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
46683 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
46684 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
46685 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
46686 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
46687 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
46688 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
46689 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
46690 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
46691 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
46692 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
46693 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
46694 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
46695 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
46696 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
46697 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
46698 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
46699 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
46700 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
46701 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
46702 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
46703 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
46704 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
46705 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
46706 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
46707 * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
46708 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
46709 * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
46710 * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
46711 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
46712 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
46713 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
46714 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
46715 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
46716 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
46717 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
46718 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
46719 * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
46720 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
46721 * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
46722 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
46723 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
46724 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
46725 * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
46726 * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
46727 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
46728 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
46729 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
46730 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
46731 * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
46732 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
46733 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
46734 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
46735 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
46736 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
46737 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
46738 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
46739 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
46740 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
46741 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
46742 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
46743 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
46744 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
46745 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
46746 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
46747 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
46748 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
46749 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
46750 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
46751 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
46752 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
46753 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
46754 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
46755 * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
46756 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
46757 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
46758 * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
46759 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
46760 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
46761 * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
46762 * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
46763 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
46764 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
46765 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
46766 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
46767 * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
46768 * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
46769 * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
46770 * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
46771 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
46772 * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
46773 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
46774 * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
46775 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
46776 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
46777 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
46778 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
46779 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
46780 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
46781 * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
46782 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
46783 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
46784 * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
46785 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
46786 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
46787 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
46788 * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
46789 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
46790 * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
46791 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
46792 * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
46793 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
46794 * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
46795 * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
46796 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
46797 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
46798 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
46799 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
46800 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
46801 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
46802 * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
46803 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
46804 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
46805 * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
46806 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
46807 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
46808 * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
46809 * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
46810 * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
46811 * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
46812 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
46813 * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
46814 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
46815 * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
46816 * sysdeps/ieee754/k_standard.c: Likewise.
46817 * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
46818 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
46819 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
46820 * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
46821 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
46822 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
46823 * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
46824 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
46825 * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
46826 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
46827 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
46828 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
46829 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
46830 * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
46831 * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
46832 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
46833 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
46834 * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
46835 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
46836 * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
46837 * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
46838 * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
46839 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
46840 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
46841 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
46842 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
46843 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
46844 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
46845 * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
46846 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
46847 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
46848 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
46849 * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
46850 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
46851 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
46852 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
46853 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
46854 * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
46855 * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
46856 * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
46857 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
46858 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
46859 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
46860 * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
46861 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
46862 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
46863 * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
46864 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
46865 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
46866 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
46867 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
46868 * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
46869 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
46870 * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
46871 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
46872 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
46873 * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
46874 * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
46875 * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
46876 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
46877 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
46878 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
46879 * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
46880 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
46881 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
46882 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
46883 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
46884 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
46885 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
46886 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
46887 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
46888 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
46889 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
46890 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
46891 * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
46892 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
46893 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
46894 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
46895 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
46896 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
46897 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
46898 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
46899 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
46900 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
46901 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
46902 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
46903 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
46904 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
46905 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
46906 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
46907 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
46908 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
46909 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
46910 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
46911 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
46912 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
46913 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
46914 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
46915 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
46916 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
46917 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
46918 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
46919 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
46920 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
46921 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
46922 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
46923 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
46924 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
46925 * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
46926 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
46927 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
46928 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
46929 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
46930 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
46931 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
46932 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
46933 * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
46934 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
46935 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
46936 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
46937 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
46938 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
46939 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
46940 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
46941 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
46942 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
46943 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
46944 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
46945 * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
46946 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
46947 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
46948 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
46949 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
46950 * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
46951 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
46952 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
46953 * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
46954 * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
46955 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
46956 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
46957 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
46958 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
46959 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
46960 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
46961 * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
46962 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
46963 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
46964 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
46965 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
46966 * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
46967 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
46968 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
46969 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
46970 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
46971 * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
46972 * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
46973 * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
46974 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
46975 * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
46976 * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
46977 * sysdeps/ieee754/s_lib_version.c: Likewise.
46978 * sysdeps/ieee754/s_matherr.c: Likewise.
46979 * sysdeps/ieee754/s_signgam.c: Likewise.
46980 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
46981 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
46982 * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
46983 * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
46984 * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
46985 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
46986 * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
46987 * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
46988 * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
46989 * sysdeps/powerpc/fpu/s_rint.c: Likewise.
46990 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
46991 * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
46992 * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
46993 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
46994 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
46995 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
46996 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
46997 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
46998 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
46999 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
47000 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
1ed0291c 47001
1991fa03
JM
470022012-03-09 Joseph Myers <joseph@codesourcery.com>
47003
47004 * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
47005 * sunrpc/rpc_main.c: Likewise.
47006 * sunrpc/rpc_svcout.c: Likewise.
47007
60d6f5a6
DM
470082012-03-09 David S. Miller <davem@davemloft.net>
47009
47010 * include/math_private.h: New file.
47011
4962050e
JM
470122012-03-09 Joseph Myers <joseph@codesourcery.com>
47013
02a6f887
JM
47014 * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
47015 * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
47016 * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
47017 from <bits/socket_type.h>.
47018 (enum __socket_type): Don't define here.
47019 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
47020 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
47021 bits/socket_type.h.
47022
c6e013c1
JM
47023 [BZ #13566]
47024 * libio/stdio.h (gets): Always declare for C++ up to C++11 without
47025 checking __USE_GNU.
47026
4962050e
JM
47027 * Makerules ($(inst_includedir)/%.h): New rule.
47028 * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
47029 (install-others): Remove variable setting.
47030 ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
47031
38842f45
RH
470322012-03-08 Richard Henderson <rth@twiddle.net>
47033
67bb6da6
RH
47034 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
47035 from macro to inline function; merge with the
47036 !__LIBC_INTERNAL_MATH_INLINES version.
47037 (__ieee754_sqrtf): Likewise.
47038
15194b4b
RH
47039 * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
47040 to inline function.
47041 (__rintf, __floor, __floorf): Likewise.
47042
64e21ede
RH
47043 * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
47044 macro to inline function.
47045 (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
47046
38842f45
RH
47047 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
47048 not <math/math_private.h>.
47049
c64bf5fe
DM
470502012-03-08 David S. Miller <davem@davemloft.net>
47051
47052 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
47053 copyright year.
47054 * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
47055
82d86f28
TS
470562012-03-08 Thomas Schwinge <thomas@codesourcery.com>
47057
47058 * resolv/gai_misc.c (handle_requests): Fix struct timespec
47059 normalization.
47060 * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
47061 * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
47062
aea5d727
UD
470632012-03-08 Ulrich Drepper <drepper@gmail.com>
47064
47065 * stdio-common/tst-fphex.c: Various cleanups. The macros cannot
47066 be defined individually, they must be defined as a block. Define
47067 S for printing a string instead of hidint the different by using a
47068 macro for adding the 'l'.
47069 * stdio-common/tst-fphex-wide.c: Adjust.
47070
70bca0a3
MP
470712012-03-07 Marek Polacek <polacek@redhat.com>
47072
47073 * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
47074
65b81130
MP
470752012-03-08 Marek Polacek <polacek@redhat.com>
47076
47077 [BZ #13806]
47078 * stdio-common/Makefile (tests): Add tst-fphex-wide.
47079 * stdio-common/tst-fphex.c: Define a few macros to make the
47080 test reusable. Use them.
47081 * stdio-common/tst-fphex-wide.c: New file.
47082
07037eeb
JM
470832012-03-08 Joseph Myers <joseph@codesourcery.com>
47084
a7a93d50
JM
47085 [BZ #6911]
47086 * manual/macros.texi (gnusystems): New macro.
47087 (nongnusystems): Likewise.
47088 (gnulinuxhurdsystems): Likewise.
47089 (gnuhurdsystems): Likewise..
47090 (gnulinuxsystems): Likewise.
47091 * manual/charset.texi: Use new macros or @theglibc{} to refer to
47092 variants of the GNU system, not "GNU system".
47093 * manual/conf.texi: Likewise.
47094 * manual/errno.texi: Likewise. Update example of errno macro
47095 expansion.
47096 * manual/filesys.texi: Likewise.
47097 (getumask): Document as specific to GNU/Hurd.
47098 * manual/install.texi: Likewise. Reword some references to
47099 GNU/Linux.
47100 * manual/intro.texi: Likewise.
47101 * manual/io.texi: Likewise.
47102 (File Name Portability): Detail which constraints are inapplicable
47103 to all GNU systems and which are only inapplicable to GNU/Hurd.
47104 * manual/job.texi: Likewise.
47105 * manual/llio.texi: Likewise.
47106 (O_NOCTTY): Document as present on GNU/Linux.
47107 * manual/maint.texi: Likewise.
47108 * manual/memory.texi: Likewise.
47109 * manual/pattern.texi: Likewise.
47110 * manual/pipe.texi: Likewise.
47111 * manual/process.texi: Likewise.
47112 * manual/resource.texi: Likewise.
47113 (RUSAGE_CHILDREN): Remove statement about specifying a particular
47114 child on GNU/Hurd.
47115 * manual/setjmp.texi: Likewise.
47116 * manual/signal.texi: Likewise.
47117 * manual/startup.texi: Likewise.
47118 * manual/stdio.texi: Likewise.
47119 * manual/terminal.texi: Likewise.
47120 (ONLCR): Document as POSIX.
47121 (OXTABS): Document availability on GNU/Linux as XTABS.
47122 (ONOEOT): Document availability separately from other bits.
47123 (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
47124 * manual/time.texi: Likewise.
47125 * manual/users.texi: Likewise.
47126 * INSTALL: Regenerated.
47127 * sysdeps/gnu/errlist.c: Regenerated.
47128
07037eeb
JM
47129 * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
47130 * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
47131 (libc_cv_ctors_header): Likewise. Use asm ("") instead of calling
47132 puts.
47133 * configure: Regenerated.
47134
d1d3431a
JM
471352012-03-07 Joseph Myers <joseph@codesourcery.com>
47136
af6a1e37
JM
47137 * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
47138 default includes instead of AC_HEADER_CHECK.
47139 * sysdeps/i386/configure: Regenerated.
47140
d1d3431a
JM
47141 [BZ #10716]
47142 * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
47143 * math/s_cacoshf.c (__cacoshf): Likewise.
47144 * math/s_cacoshl.c (__cacoshl): Likewise.
47145 * math/s_casinh.c (__casinh): Set signs of result from argument.
47146 * math/s_casinhf.c (__casinhf): Likewise.
47147 * math/s_casinhl.c (__casinhl): Likewise.
47148 * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
47149 (casinh_test): Add more tests.
47150 * sysdeps/i386/fpu/libm-test-ulps: Update.
47151 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47152
482ff4da
UD
471532012-03-07 Ulrich Drepper <drepper@gmail.com>
47154
872fda05
UD
47155 * po/zh_TW.po: Update from translation team.
47156
a4300c7a
UD
47157 * login/Makefile (distribute): Remove variable.
47158 * catgets/Makefile: Likewise.
47159 * mach/Makefile: Likewise.
47160 * malloc/Makefile: Likewise.
47161 * misc/Makefile: Likewise.
47162 * iconv/Makefile: Likewise.
47163 * nscd/Makefile: Likewise.
47164 * hurd/Makefile: Likewise.
47165 * manual/Makefile: Likewise.
47166 * locale/Makefile: Likewise.
47167 * intl/Makefile: Likewise.
47168 * conform/Makefile: Likewise.
47169 * nss/Makefile: Likewise.
47170 * time/Makefile: Likewise.
47171 * soft-fp/Makefile: Likewise.
47172 * dirent/Makefile: Likewise.
47173 * gmon/Makefile: Likewise.
47174 * po/Makefile: Likewise.
47175 * rt/Makefile: Likewise.
47176 * socket/Makefile: Likewise.
47177 * math/Makefile: Likewise.
47178 * signal/Makefile: Likewise.
47179 * debug/Makefile: Likewise.
47180 * elf/Makefile: Likewise.
47181 * timezone/Makefile: Likewise.
47182 * stdlib/Makefile: Likewise.
47183 * iconvdata/Makefile: Likewise.
47184 * sunrpc/Makefile: Likewise.
47185 * io/Makefile: Likewise.
47186 * argp/Makefile: Likewise.
47187 * inet/Makefile: Likewise.
47188 * hesiod/Makefile: Likewise.
47189 * grp/Makefile: Likewise.
47190 * csu/Makefile: Likewise.
47191 * wctype/Makefile: Likewise.
47192 * crypt/Makefile: Likewise.
47193 * libio/Makefile: Likewise.
47194 * string/Makefile: Likewise.
47195 * nis/Makefile: Likewise.
47196 * resolv/Makefile: Likewise.
47197 * stdio-common/Makefile: Likewise.
47198 * wcsmbs/Makefile: Likewise.
47199 * dlfcn/Makefile: Likewise.
47200 * posix/Makefile: Likewise.
47201
3b7c4e74 47202 [BZ #6959]
482ff4da
UD
47203 * timezone/Makefile: Don't install timezone files, just the programs
47204 and scripts.
47205
f72ed77d
UD
472062012-03-06 Ulrich Drepper <drepper@gmail.com>
47207
a000466f
UD
47208 * nss/databases.def: Add missing gshadow entry.
47209
f72ed77d
UD
47210 * stdio-common/vfprintf.c: Fix formatting. Missing copyright update.
47211
a53b7a4e
MP
472122012-03-06 Marek Polacek <polacek@redhat.com>
47213
47214 [BZ #13726]
47215 * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
47216 * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
47217 * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
47218 * stdio-common/tst-long-dbl-fphex.c: New file.
47219
e9258400
DM
472202012-03-06 David S. Miller <davem@davemloft.net>
47221
47222 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
47223 (set_obp_int): New function.
47224 (get_obp_int): New function.
47225 (__get_clockfreq_via_dev_openprom): Likewise.
f72ed77d
UD
47226 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
47227 Avoid unused variable warnings on 'val' and use builtin_expect.
47228 (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
47229 __builtin_expect.
e9258400
DM
47230 (INLINE_CLONE_SYSCALL): Likewise.
47231
3bd2c723
DM
472322012-03-05 David S. Miller <davem@davemloft.net>
47233
47234 * sysdeps/sparc/fpu/libm-test-ulps: Update.
47235
bbb78d03
AS
472362012-03-05 Andreas Schwab <schwab@linux-m68k.org>
47237
884c5db4
AS
47238 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
47239
bbb78d03
AS
47240 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
47241 only for |x| >= 40.
47242 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
47243
1c9f702a 472442012-03-05 H.J. Lu <hongjiu.lu@intel.com>
8542dee3
L
47245
47246 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
47247 Replace gettimeofday with __vdso_gettimeofday.
47248
7be16f82
RM
47249 * sysdeps/unix/sysv/linux/x86_64/init-first.c
47250 (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
47251 __vdso_clock_gettime and __vdso_getcpu.
8542dee3
L
47252
47253 * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
47254 time with __vdso_time.
47255
ed58a00f
JM
472562012-03-05 Joseph Myers <joseph@codesourcery.com>
47257
47258 * manual/lang.texi (size_t): Note types to which size_t may be
47259 equivalent with the GNU C Library, but do not describe when
47260 differences between them are significant.
47261
30ee4ced
AJ
472622012-03-05 Andreas Jaeger <aj@suse.de>
47263
47264 * sysdeps/i386/fpu/libm-test-ulps: Update.
47265
b7cd39e8
JM
472662012-03-05 Joseph Myers <joseph@codesourcery.com>
47267
47268 [BZ #3976]
47269 * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
47270 (__ieee754_pow): Save and restore rounding mode and use
47271 round-to-nearest for main computations.
47272 * math/libm-test.inc (pow_test_tonearest): New function.
47273 (pow_test_towardzero): Likewise.
47274 (pow_test_downward): Likewise.
47275 (pow_test_upward): Likewise.
47276 (main): Call the new functions.
47277 * sysdeps/i386/fpu/libm-test-ulps: Update.
47278 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
ca811b22
JM
47279
47280 [BZ #3976]
47281 * math/libm-test.inc (cosh_test_tonearest): New function.
47282 (cosh_test_towardzero): Likewise.
47283 (cosh_test_downward): Likewise.
47284 (cosh_test_upward): Likewise.
47285 (sinh_test_tonearest): Likewise.
47286 (sinh_test_towardzero): Likewise.
47287 (sinh_test_downward): Likewise.
47288 (sinh_test_upward): Likewise.
47289 (main): Call the new functions.
47290 * sysdeps/i386/fpu/libm-test-ulps: Update.
47291 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47292
6c6a98c9
TV
472932012-03-05 Tom de Vries <tom@codesourcery.com>
47294
47295 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
47296 default stack guard is set in last bytes.
47297 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
47298
21bb2d2e 472992012-03-05 Kees Cook <keescook@chromium.org>
7c1f4834 47300
21bb2d2e 47301 * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
fa035517 47302
21bb2d2e
AJ
47303 [BZ #13656]
47304 * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
47305 possibly allocate from heap instead of stack.
47306 * stdio-common/bug-vfprintf-nargs.c: New file.
47307 * stdio-common/Makefile (tests): Add nargs overflow test.
7c1f4834 47308
c6922934
AS
473092012-03-03 Andreas Schwab <schwab@linux-m68k.org>
47310
47311 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
47312
bc957d53
MP
473132012-03-03 Marek Polacek <polacek@redhat.com>
47314
47315 * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
47316 * math/math_private.h: Likewise.
47317 * stdlib/tst-strtod.c: Likewise.
47318 * sysdeps/i386/i486/bits/atomic.h: Likewise.
47319 * sysdeps/x86_64/bits/atomic.h: Likewise.
47320
6358490d
DM
473212012-03-02 David S. Miller <davem@davemloft.net>
47322
47323 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
47324 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
47325 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
47326 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
47327 * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
47328 * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
47329 * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
47330 * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
47331
01ae168d
RM
473322012-03-02 Roland McGrath <roland@hack.frob.com>
47333
d9a17c07
RM
47334 [BZ #13792]
47335 * manual/examples/README: New file, says the example source files
47336 can be used under GPL>=2.
47337 * manual/Makefile (%.c.texi): Eat the leading part of the file until a
47338 line containing just "*/".
47339 * manual/examples/add.c: Add copyright header (GPL>=2).
47340 * manual/examples/argp-ex1.c: Likewise.
47341 * manual/examples/argp-ex2.c: Likewise.
47342 * manual/examples/argp-ex3.c: Likewise.
47343 * manual/examples/argp-ex4.c: Likewise.
47344 * manual/examples/atexit.c: Likewise.
47345 * manual/examples/db.c: Likewise.
47346 * manual/examples/dir.c: Likewise.
47347 * manual/examples/dir2.c: Likewise.
47348 * manual/examples/execinfo.c: Likewise.
47349 * manual/examples/filecli.c: Likewise.
47350 * manual/examples/filesrv.c: Likewise.
47351 * manual/examples/fmtmsgexpl.c: Likewise.
47352 * manual/examples/genpass.c: Likewise.
47353 * manual/examples/inetcli.c: Likewise.
47354 * manual/examples/inetsrv.c: Likewise.
47355 * manual/examples/isockad.c: Likewise.
47356 * manual/examples/longopt.c: Likewise.
47357 * manual/examples/memopen.c: Likewise.
47358 * manual/examples/memstrm.c: Likewise.
47359 * manual/examples/mkfsock.c: Likewise.
47360 * manual/examples/mkisock.c: Likewise.
47361 * manual/examples/mygetpass.c: Likewise.
47362 * manual/examples/pipe.c: Likewise.
47363 * manual/examples/popen.c: Likewise.
47364 * manual/examples/rprintf.c: Likewise.
47365 * manual/examples/search.c: Likewise.
47366 * manual/examples/select.c: Likewise.
47367 * manual/examples/setjmp.c: Likewise.
47368 * manual/examples/sigh1.c: Likewise.
47369 * manual/examples/sigusr.c: Likewise.
47370 * manual/examples/stpcpy.c: Likewise.
47371 * manual/examples/strdupa.c: Likewise.
47372 * manual/examples/strftim.c: Likewise.
47373 * manual/examples/strncat.c: Likewise.
47374 * manual/examples/subopt.c: Likewise.
47375 * manual/examples/swapcontext.c: Likewise.
47376 * manual/examples/termios.c: Likewise.
47377 * manual/examples/testopt.c: Likewise.
47378 * manual/examples/testpass.c: Likewise.
47379 * manual/examples/timeval_subtract.c: Likewise.
47380
01ae168d
RM
47381 [BZ #13792]
47382 * manual/time.texi (Elapsed Time): Move timeval_subtract example
47383 function to ...
47384 * manual/timeval_subtract.c.texi: ... here, new file.
47385
49efa33d
DM
473862012-03-02 David S. Miller <davem@davemloft.net>
47387
47388 * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
47389
28afd92d
JM
473902012-03-02 Joseph Myers <joseph@codesourcery.com>
47391
804360ed
JM
47392 [BZ #3976]
47393 * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
47394 (__sin): Save and restore rounding mode and use round-to-nearest
47395 for all computations.
47396 (__cos): Save and restore rounding mode and use round-to-nearest
47397 for all computations.
47398 * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
47399 <fenv.h>.
47400 (tan): Save and restore rounding mode and use round-to-nearest for
47401 all computations.
47402 * math/libm-test.inc (cos_test_tonearest): New function.
47403 (cos_test_towardzero): Likewise.
47404 (cos_test_downward): Likewise.
47405 (cos_test_upward): Likewise.
47406 (sin_test_tonearest): Likewise.
47407 (sin_test_towardzero): Likewise.
47408 (sin_test_downward): Likewise.
47409 (sin_test_upward): Likewise.
47410 (tan_test_tonearest): Likewise.
47411 (tan_test_towardzero): Likewise.
47412 (tan_test_downward): Likewise.
47413 (tan_test_upward): Likewise.
47414 (main): Call the new functions.
47415 * sysdeps/i386/fpu/libm-test-ulps: Update.
47416 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47417
a6d06d7b
JM
47418 [BZ #10135]
47419 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
47420 small n, then large n, before computing and testing k+n.
47421 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
47422 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
47423 Likewise.
47424 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
47425 Likewise.
47426 * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
47427 * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
47428 * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
47429 * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
47430 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
47431 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
47432 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
47433 * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
47434 * math/libm-test.inc (scalbn_test): Add more tests.
47435 (scalbln_test): Likewise.
47436
07e12bb3
JM
47437 * manual/filesys.texi (mode_t): Describe constraints on size and
47438 signedness, not exact equivalence to a particular type.
47439 (ino_t): Likewise.
47440 (ino64_t): Likewise.
47441 (dev_t): Likewise.
47442 (nlink_t): Likewise.
47443 (blkcnt_t): Likewise.
47444 (blkcnt64_t): Likewise.
47445 * manual/llio.texi (off_t): Likewise.
47446
28afd92d
JM
47447 [BZ #3976]
47448 * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
47449 (__ieee754_exp): Save and restore rounding mode and use
47450 round-to-nearest for all computations.
47451 * math/libm-test.inc (exp_test_tonearest): New function.
47452 (exp_test_towardzero): Likewise.
47453 (exp_test_downward): Likewise.
47454 (exp_test_upward): Likewise.
47455 (main): Call the new functions.
47456 * sysdeps/i386/fpu/libm-test-ulps: Update.
47457 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47458
b1eeb65d
CD
474592012-03-01 Chris Demetriou <cgd@google.com>
47460
47461 * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
47462 have predictable order.
47463
53362a4b
DM
474642012-03-01 David S. Miller <davem@davemloft.net>
47465
3c969083
DM
47466 * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
47467
759707de
DM
47468 * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
47469 * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
47470 * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
47471 * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
47472
dfdb8ff2
DM
47473 * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
47474 * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
47475 * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
47476 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
47477 * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
47478 * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
47479 * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
47480 * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
47481 * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
47482
ead89f96
DM
47483 * sysdeps/sparc/fpu/libm-test-ulps: Update.
47484
7f66bd07
DM
47485 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
47486 * sysdeps/sparc/fpu/libm-test-ulps: to here.
47487 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
47488
53362a4b
DM
47489 * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
47490 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
47491 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
47492 * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
47493 * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
47494 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
47495 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
47496 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
47497 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
47498 * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
47499 * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
47500 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
47501 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
47502 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
47503 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
47504 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
47505 * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
47506 * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
47507 * sysdeps/sparc/elf/configure: Regenerated.
47508
7b1902cb
JM
475092012-03-01 Joseph Myers <joseph@codesourcery.com>
47510
bec039bc
JM
47511 * configure.in (AS, LD): Require binutils 2.20 or later.
47512 * configure: Regenerated.
47513 * manual/install.texi (Tools for Compilation): Give binutils 2.20
47514 as required minimum version.
47515 * INSTALL: Regenerated.
47516
7b1902cb
JM
47517 [BZ #2541]
47518 [BZ #4108]
47519 * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
47520 before squaring exponent.
47521 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
47522 bottom long double and 27 bits of top long double before squaring
47523 exponent.
47524 * math/libm-test.inc (erfc_test): Add more tests.
47525 * sysdeps/i386/fpu/libm-test-ulps: Update.
47526 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
47527 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47528
f775c276
KT
475292012-03-01 Kai Tietz <ktietz@redhat.com>
47530
47531 * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
47532 * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
47533 containing bit-fields.
47534 * soft-fp/extended.h (_FP_UNION_E): Likewise.
47535 * soft-fp/single.h (_FP_UNION_S): Likewise.
47536 * soft-fp/double.h (_FP_UNION_D): Likewise.
47537
5b8a4d4a
JM
475382012-02-29 Joseph Myers <joseph@codesourcery.com>
47539
0bab47b6
JM
47540 [BZ #13786]
47541 * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
47542 not include ../strcmp.S.
47543 [USE_AS_STRNCASECMP_L]: Likewise.
47544 * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
47545 (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
47546 * sysdeps/i386/i686/multiarch/strncase_l-c.c
47547 (__strncasecmp_l_ia32): Define as alias to
47548 __strncasecmp_l_nonascii.
47549
0fcad3e2
JM
47550 [BZ #5794]
47551 * math/libm-test.inc (expm1_test): Add test for bug 5794.
47552 * sysdeps/i386/fpu/libm-test-ulps: Update.
47553 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47554
5b8a4d4a
JM
47555 * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
47556 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
47557
8fdceb2e
JL
475582012-02-29 Jeff Law <law@redhat.com>
47559
47560 * resolv/res_query.c (__libc_res_nquerydomain): Avoid
47561 out of bounds read.
47562
1f393a11
MP
475632012-02-29 Marek Polacek <polacek@redhat.com>
47564
47565 [BZ #13706]
47566 * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
47567 * elf/Makefile: Add rules to run tst-unused-dep.out.
47568
8847f037
DM
475692012-02-28 David S. Miller <davem@davemloft.net>
47570
47571 * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
47572 * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
47573 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
47574 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
47575 * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
47576 * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
47577
169d7f11
JM
475782012-02-29 Joseph Myers <joseph@codesourcery.com>
47579
47580 * math/libm-test.inc (llround_test): Move one test from
47581 lround_test. Use TEST_f_L in moved test.
47582 (lround_test): Move misplaced test to llround_test. Add testcase
47583 from bug 2561.
47584
39adf059
UD
475852012-02-28 Ulrich Drepper <drepper@gmail.com>
47586
47587 * sysdeps/x86_64/fpu/e_expf.S: New file.
47588 Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
47589
71b5d1c5
SB
475902012-02-28 Stanislav Brabec <sbrabec@suse.cz>
47591
47592 [BZ #13637]
47593 * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
47594 of remain_len that may cause incomplete multi-byte character and
47595 false match.
47596 * posix/bug-regex33.c: New file.
47597 * posix/Makefile (tests): Add bug-regex33.
47598
1f77f049
JM
475992012-02-28 Joseph Myers <joseph@codesourcery.com>
47600
47601 * manual/macros.texi: New file.
47602 * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
47603 * manual/libc.texinfo: Include macros.texi.
47604 * manual/creatute.texi: Likewise.
47605 * manual/install.texi: Likewise.
47606 * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
47607 @glibcadj{} in references to the GNU C Library.
47608 * manual/charset.texi: Likewise.
47609 * manual/conf.texi: Likewise.
47610 * manual/contrib.texi: Likewise. Consistently use "GNU C Library"
47611 when not using those macros.
47612 * manual/creature.texi: Likewise.
47613 * manual/crypt.texi: Likewise.
47614 * manual/errno.texi: Likewise.
47615 * manual/filesys.texi: Likewise.
47616 * manual/header.texi: Likewise.
47617 * manual/install.texi: Likewise.
47618 * manual/intro.texi: Likewise.
47619 * manual/io.texi: Likewise.
47620 * manual/job.texi: Likewise.
47621 * manual/lang.texi: Likewise.
47622 * manual/libc.texiinfo: Likewise.
47623 * manual/llio.texi: Likewise.
47624 * manual/locale.texi: Likewise.
47625 * manual/maint.texi: Likewise.
47626 * manual/math.texi: Likewise.
47627 * manual/memory.texi: Likewise.
47628 * manual/message.texi: Likewise.
47629 * manual/nss.texi: Likewise.
47630 * manual/pattern.texi: Likewise.
47631 * manual/process.texi: Likewise.
47632 * manual/resource.texi: Likewise.
47633 * manual/search.texi: Likewise.
47634 * manual/setjmp.texi: Likewise.
47635 * manual/signal.texi: Likewise.
47636 * manual/socket.texi: Likewise.
47637 * manual/startup.texi: Likewise.
47638 * manual/stdio.texi: Likewise.
47639 * manual/string.texi: Likewise.
47640 * manual/sysinfo.texi: Likewise.
47641 * manual/syslog.texi: Likewise.
47642 * manual/terminal.texi: Likewise.
47643 * manual/time.texi: Likewise.
47644 * manual/users.texi: Likewise.
47645 * INSTALL: Regenerated.
47646 * NOTES: Regenerated.
d40c5d54 47647 * sysdeps/gnu/errlist.c: Regenerated.
1f77f049 47648
450bf206
AS
476492012-02-28 Andreas Schwab <schwab@linux-m68k.org>
47650
47651 * include/dirent.h: Include <dirstream.h> before
47652 <dirent/dirent.h>.
47653
741a235b
DM
476542012-02-28 David S. Miller <davem@davemloft.net>
47655
47656 * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
47657 * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
47658 * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
47659 * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
47660
d6b5aa58
DM
476612012-02-27 David S. Miller <davem@davemloft.net>
47662
1aff59a3
DM
47663 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
47664 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
47665 * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
47666 * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
47667
d6b5aa58
DM
47668 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
47669 frame pointer instead of stack pointer relative arg slot.
47670 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
47671 * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
47672 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
47673
433f48bf
CD
476742012-02-27 Carlos O'Donell <carlos_odonell@mentor.com>
47675
47676 [BZ #3992]
47677 * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
47678
d674b76d
DM
476792012-02-27 David S. Miller <davem@davemloft.net>
47680
47681 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
47682 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
47683 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
47684 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
47685 * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
47686 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
47687 * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
47688 * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
47689
0e7727f7
JM
476902012-02-27 Joseph Myers <joseph@codesourcery.com>
47691
47692 * configure.in (CC): Restrict allowed GCC versions to 4.3 and
47693 later. Allow versions 5-9.
43be4ca2 47694 * configure: Regenerated.
0e7727f7
JM
47695 * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
47696 required minimum version and 4.6 as recommended version. Do not
47697 mention bugs in GCC 2.7 and 2.8.
43be4ca2 47698 * INSTALL: Regenerated.
0e7727f7 47699
a78bc654
DM
477002012-02-27 David S. Miller <davem@davemloft.net>
47701
428d5830
DM
47702 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
47703 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
47704 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
47705 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
47706 * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
47707 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
47708 * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
47709 * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
47710
a78bc654
DM
47711 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
47712 manipulate bits before adding and subtracting TWO112[sx].
47713 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
47714
4579f81c
RM
477152012-02-27 Roland McGrath <roland@hack.frob.com>
47716
36c8acb4
RM
47717 [BZ #13775]
47718 * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
47719 [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
47720 * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
47721 being in POSIX, because they are in 1003.1-2008.
47722
84ad622b
RM
47723 * rt/tst-aio.c: Include <fcntl.h>.
47724 * rt/tst-aio7.c: Likewise.
47725 * rt/tst-aio64.c: Likewise.
47726
4579f81c
RM
47727 * stdio-common/tst-fmemopen.c (main): Remove spurious const.
47728
abd923db
JM
477292012-02-27 Joseph Myers <joseph@codesourcery.com>
47730
47731 * manual/install.texi (--with-headers): Describe headers as
47732 interface headers, not private headers.
47733 (Specific advice for GNU/Linux systems): Describe use of headers
47734 from "make headers_install", not private headers from older
47735 kernels.
43be4ca2 47736 * INSTALL: Regenerated.
abd923db
JM
47737 * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
47738 Change to 2.6.19.
47739 * sysdeps/unix/sysv/linux/configure: Regenerated.
47740
6664049b
JM
47741 * manual/llio.texi (fclean): Remove documentation.
47742
bb8b6697
JM
47743 * manual/Makefile (libc-texi-generated): New variable. Include
47744 version.texi.
47745 (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
47746 $(libc-texi-generated), not duplicated list of files.
47747 (version.texi, stamp-version): New rules.
47748 (realclean): Remove $(libc-texi-generated), not individual files
47749 from that list. Do not remove dir-add.texinfo.
47750 * manual/libc.texinfo: Comment out uses of edition numbers and
47751 references to printed manual. Remove last-updated dates.
47752 (EDITION): Comment out.
47753 (ISBN): Likewise.
47754 (VERSION, UPDATED): Remove.
47755 (version.texi): Include.
47756
12e5c3b9
AS
477572012-02-27 Andreas Schwab <schwab@linux-m68k.org>
47758
47759 * sysdeps/posix/spawni.c: Include <signal.h>.
47760 * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
47761 * sysdeps/pthread/aio_fsync.c: Likewise.
47762
4efeffc1 477632012-02-26 Ulrich Drepper <drepper@gmail.com>
d94a4670 47764
ba63ba08
UD
47765 * conform/Makefile (tests): Run only when not cross-compiling and
47766 when fast-check is not defined.
47767
d94a4670
UD
47768 * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
47769 * conform/data/limits.h-data: Fixes for POSIX2008.
47770 * conform/run-conformtest.sh: Run all tests.
47771 * include/arpa/inet.h: Changes to allow conformtest.pl to use the
47772 headers.
47773 * include/bits/dlfcn.h: Likewise.
47774 * include/langinfo.h: Likewise.
47775 * include/monetary.h: Likewise.
47776 * include/sys/poll.h: Likewise.
47777
47778 * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
47779 for __USE_GNU.
47780 * posix/spawn.h: Define __need_sigset_t.
47781 * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
47782 * posix/unistd.h: Declare ctermid only for XPG before XPG6.
47783 * rt/aio.h: Don't include fcntl.h and signal.h. Use bits/siginfo.h
47784 to get sigevent_t only.
47785 * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
47786 only for __USE_GNU.
47787 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
47788 * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
47789 process_vm_writev only for __USE_GNU.
47790 * termios/termios.h: Declare tcgetsid also for POSIX2008.
4efeffc1
UD
47791
47792 * conform/Makefile: For now ignore errors from run-conformtest.
47793 * conform/conformtest.pl: Simplify code. Add -ansi to CFLAGS for
47794 POSIX to avoid namespace pollution. Don't prepend headers.
47795 * conform/data/aio.h-data: Fixes for POSIX testing.
47796 * conform/data/fcntl.h-data: Likewise.
47797 * conform/data/glob.h-data: Likewise.
47798 * conform/data/grp.h-data: Likewise.
47799 * conform/data/pthread.h-data: Likewise.
47800 * conform/data/pwd.h-data: Likewise.
47801 * conform/data/signal.h-data: Likewise.
47802 * conform/data/spawn.h-data: Likewise.
47803 * conform/data/stdio.h-data: Likewise.
47804 * conform/data/stdlib.h-data: Likewise.
47805 * conform/data/stropts.h-data: Likewise.
47806 * conform/data/sys/mman.h-data: Likewise.
47807 * conform/data/sys/stat.h-data: Likewise.
47808 * conform/data/sys/types.h-data: Likewise.
47809 * conform/data/sys/wait.h-data: Likewise.
47810 * conform/data/time.h-data: Likewise.
47811 * conform/data/unistd.h-data: Likewise.
47812 * conform/data/utime.h-data: Likewise.
47813
47814 * io/sys/stat.h: fchmod was always in POSIX.
47815 * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
47816 * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
47817 * rt/aio.h: Define __need_timespec before including <time.h>.
47818 * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
47819 struct. Add forward declaration of pthread_attr_t and use it in
47820 sigevent.
47821 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
47822 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
47823 * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
47824 always remove CLK_TCK definition.
47825
c20105c3
AS
478262012-02-26 Andreas Schwab <schwab@linux-m68k.org>
47827
47828 * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
47829
7a270350
UD
478302012-02-25 Ulrich Drepper <drepper@gmail.com>
47831
31341567
UD
47832 * conform/run-conformtest.sh: New file.
47833 * conform/Makefile: Run run-conformtest for tests.
47834 * conform/conformtest.pl: Many bug fixes. Add ISO C99, ISO C11
47835 support.
47836
47837 * conform/data/uchar.h-data: New file.
47838 * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
47839 * conform/data/arpa/inet.h-data: Likewise.
47840 * conform/data/assert.h-data: Likewise.
47841 * conform/data/complex.h-data: Likewise.
47842 * conform/data/cpio.h-data: Likewise.
47843 * conform/data/ctype.h-data: Likewise.
47844 * conform/data/dirent.h-data: Likewise.
47845 * conform/data/dlfcn.h-data: Likewise.
47846 * conform/data/errno.h-data: Likewise.
47847 * conform/data/fcntl.h-data: Likewise.
47848 * conform/data/float.h-data: Likewise.
47849 * conform/data/fmtmsg.h-data: Likewise.
47850 * conform/data/fnmatch.h-data: Likewise.
47851 * conform/data/ftw.h-data: Likewise.
47852 * conform/data/glob.h-data: Likewise.
47853 * conform/data/grp.h-data: Likewise.
47854 * conform/data/iconv.h-data: Likewise.
47855 * conform/data/inttypes.h-data: Likewise.
47856 * conform/data/langinfo.h-data: Likewise.
47857 * conform/data/libgen.h-data: Likewise.
47858 * conform/data/limits.h-data: Likewise.
47859 * conform/data/locale.h-data: Likewise.
47860 * conform/data/math.h-data: Likewise.
47861 * conform/data/monetary.h-data: Likewise.
47862 * conform/data/mqueue.h-data: Likewise.
47863 * conform/data/ndbm.h-data: Likewise.
47864 * conform/data/net/if.h-data: Likewise.
47865 * conform/data/netdb.h-data: Likewise.
47866 * conform/data/netinet/in.h-data: Likewise.
47867 * conform/data/nl_types.h-data: Likewise.
47868 * conform/data/poll.h-data: Likewise.
47869 * conform/data/pthread.h-data: Likewise.
47870 * conform/data/pwd.h-data: Likewise.
47871 * conform/data/regex.h-data: Likewise.
47872 * conform/data/sched.h-data: Likewise.
47873 * conform/data/search.h-data: Likewise.
47874 * conform/data/semaphore.h-data: Likewise.
47875 * conform/data/setjmp.h-data: Likewise.
47876 * conform/data/signal.h-data: Likewise.
47877 * conform/data/spawn.h-data: Likewise.
47878 * conform/data/stdarg.h-data: Likewise.
47879 * conform/data/stdio.h-data: Likewise.
47880 * conform/data/stdlib.h-data: Likewise.
47881 * conform/data/string.h-data: Likewise.
47882 * conform/data/strings.h-data: Likewise.
47883 * conform/data/stropts.h-data: Likewise.
47884 * conform/data/sys/ipc.h-data: Likewise.
47885 * conform/data/sys/mman.h-data: Likewise.
47886 * conform/data/sys/msg.h-data: Likewise.
47887 * conform/data/sys/resource.h-data: Likewise.
47888 * conform/data/sys/select.h-data: Likewise.
47889 * conform/data/sys/sem.h-data: Likewise.
47890 * conform/data/sys/shm.h-data: Likewise.
47891 * conform/data/sys/socket.h-data: Likewise.
47892 * conform/data/sys/stat.h-data: Likewise.
47893 * conform/data/sys/statvfs.h-data: Likewise.
47894 * conform/data/sys/time.h-data: Likewise.
47895 * conform/data/sys/timeb.h-data: Likewise.
47896 * conform/data/sys/times.h-data: Likewise.
47897 * conform/data/sys/types.h-data: Likewise.
47898 * conform/data/sys/uio.h-data: Likewise.
47899 * conform/data/sys/un.h-data: Likewise.
47900 * conform/data/sys/utsname.h-data: Likewise.
47901 * conform/data/sys/wait.h-data: Likewise.
47902 * conform/data/syslog.h-data: Likewise.
47903 * conform/data/tar.h-data: Likewise.
47904 * conform/data/termios.h-data: Likewise.
47905 * conform/data/utime.h-data: Likewise.
47906 * conform/data/utmpx.h-data: Likewise.
47907 * conform/data/varargs.h-data: Likewise.
47908 * conform/data/wchar.h-data: Likewise.
47909 * conform/data/wctype.h-data: Likewise.
47910 * conform/data/wordexp.h-data: Likewise.
47911
47912 * include/stropts.h: New file.
47913 * include/uchar.h: New file.
47914 * include/aio.h: Changes to allow conformtest.pl to use the headers.
47915 * include/assert.h: Likewise.
47916 * include/ctype.h: Likewise.
47917 * include/dirent.h: Likewise.
47918 * include/dlfcn.h: Likewise.
47919 * include/fcntl.h: Likewise.
47920 * include/fnmatch.h: Likewise.
47921 * include/glob.h: Likewise.
47922 * include/grp.h: Likewise.
47923 * include/libio.h: Likewise.
47924 * include/locale.h: Likewise.
47925 * include/math.h: Likewise.
47926 * include/net/if.h: Likewise.
47927 * include/netdb.h: Likewise.
47928 * include/netinet/in.h: Likewise.
47929 * include/pthread.h: Likewise.
47930 * include/pwd.h: Likewise.
47931 * include/regex.h: Likewise.
47932 * include/sched.h: Likewise.
47933 * include/search.h: Likewise.
47934 * include/setjmp.h: Likewise.
47935 * include/signal.h: Likewise.
47936 * include/stdio.h: Likewise.
47937 * include/stdlib.h: Likewise.
47938 * include/string.h: Likewise.
47939 * include/sys/cdefs.h: Likewise.
47940 * include/sys/mman.h: Likewise.
47941 * include/sys/msg.h: Likewise.
47942 * include/sys/resource.h: Likewise.
47943 * include/sys/select.h: Likewise.
47944 * include/sys/socket.h: Likewise.
47945 * include/sys/stat.h: Likewise.
47946 * include/sys/statvfs.h: Likewise.
47947 * include/sys/time.h: Likewise.
47948 * include/sys/times.h: Likewise.
47949 * include/sys/uio.h: Likewise.
47950 * include/sys/utsname.h: Likewise.
47951 * include/sys/wait.h: Likewise.
47952 * include/termios.h: Likewise.
47953 * include/time.h: Likewise.
47954 * include/ulimit.h: Likewise.
47955 * include/unistd.h: Likewise.
47956 * include/utime.h: Likewise.
47957 * include/wchar.h: Likewise.
47958 * include/wctype.h: Likewise.
47959 * include/wordexp.h: Likewise.
47960
47961 * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
47962
7a270350
UD
47963 * time/time.h: TIME_UTC must be a macro.
47964 Make timespec_get available for ISO C11 only as well.
47965
7724defc
UD
479662012-02-24 Ulrich Drepper <drepper@gmail.com>
47967
47968 * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
47969 Reported by Peng Haitao <penght@cn.fujitsu.com>.
47970
6b1d1d46
JM
479712012-02-24 Joseph Myers <joseph@codesourcery.com>
47972
47973 * configure.in: Use -o not -a in test for unsupported multi-arch.
6b1d1d46 47974
0f8bbd69
JM
479752012-02-24 Joseph Myers <joseph@codesourcery.com>
47976
47977 * manual/texinfo.tex: Update to version 2012-01-19.16.
47978
66ab80bc
JM
479792012-02-24 Joseph Myers <joseph@codesourcery.com>
47980
47981 * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
47982
74981cc5
RM
479832012-02-24 Roland McGrath <roland@hack.frob.com>
47984
ee968201
RM
47985 [BZ #13738]
47986 * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
47987 * manual/fdl-1.3.texi: New file.
47988 * manual/fdl-1.1.texi: File removed.
47989
74981cc5
RM
47990 [BZ #13738]
47991 * manual/libc.texinfo (FDL_VERSION): New @set.
47992 Use it for mention of FDL in cover text.
47993 (Documentation License): Use it in @include file name.
47994
7bb764bc
JM
479952012-02-22 Joseph Myers <joseph@codesourcery.com>
47996 Roland McGrath <roland@hack.frob.com>
47997
47998 [BZ #5461]
57f41c40
AS
47999 * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
48000 (not LONG_LONG_MAX and LONG_LONG_MIN.
7bb764bc
JM
48001 * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
48002 LLONG_MIN. Refer to LONG_LONG_MIN only as older GCC-specific
48003 name.
48004 (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
48005
6cbeae47
JM
480062012-02-22 Joseph Myers <joseph@codesourcery.com>
48007
48008 [BZ #2547]
48009 [BZ #11365]
48010 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
48011 manipulate bits before adding and subtracting TWO23[sx].
48012 * math/libm-test.inc (nearbyint_test): Add more tests.
48013
fe45ce09
JM
480142012-02-22 Joseph Myers <joseph@codesourcery.com>
48015
48016 [BZ #2548]
48017 * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
48018 bits before adding and subtracting TWO23[sx].
48019 * math/libm-test.inc (rint_test): Add more tests.
48020 (rint_test_tonearest): Likewise.
48021 (rint_test_towardzero): Likewise.
48022 (rint_test_downward): Likewise.
48023 (rint_test_upward: Likewise.
48024
ff3b3d82
JM
480252012-02-22 Joseph Myers <joseph@codesourcery.com>
48026
48027 [BZ #10110]
48028 * include/stdc-predef.h: New file. Extracted from features.h.
48029 * include/features.h: Include stdc-predef.h.
48030 * Makefile (headers): Add stdc-predef.h.
48031 * CONFORMANCE (Compiler limitations): Update.
48032
ef0aab35
JM
480332012-02-22 Joseph Myers <joseph@codesourcery.com>
48034
48035 * manual/libc.texinfo (VERSION, UPDATED): Revert.
48036
58639409
DM
480372012-02-21 David S. Miller <davem@davemloft.net>
48038
48039 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
48040 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
48041
c0e70b25
DM
480422012-02-20 David S. Miller <davem@davemloft.net>
48043
48044 * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
48045 using a normal save/restore sequence, rather than allocating a
48046 dummy stack frame just to store a frame pointer and restore.
48047 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
48048
fb06851d
JM
480492012-02-21 Joseph Myers <joseph@codesourcery.com>
48050
48051 * manual/install.texi: Fix stray word in line-wrapped comment.
48052
7a8b71c3
DM
480532012-02-20 David S. Miller <davem@davemloft.net>
48054
d510c123
DM
48055 * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
48056 both binutils and gcc support GOTDATA.
48057
0722d7c2
DM
48058 * sysdeps/unix/sparc/sysdep.h: Document why we don't use
48059 "rd %pc" in the PIC register setup sequences.
48060
3d2b3019
DM
48061 * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
48062 * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
48063 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
48064 * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
48065 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
48066 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
48067 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
48068 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
48069 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
48070 (SYSCALL_ERROR_HANDLER): Likewise.
48071 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
48072 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
48073 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
48074 (SYSCALL_ERROR_HANDLER): Likewise.
48075
c80098a9
DM
48076 * config.h.in (HAVE_BINUTILS_GOTDATA): New.
48077 (HAVE_GCC_GOTDATA): New.
48078 * sysdeps/sparc/elf/configure.in: Test for GOTDATA
48079 relocation support in both binutils and gcc.
48080 * sysdeps/sparc/elf/configure: Regenerate.
48081
3a2545a0
DM
48082 * sysdeps/sparc/sparc32/elf/configure.in: Delete.
48083 * sysdeps/sparc/sparc32/elf/configure: Delete.
48084 * sysdeps/sparc/sparc64/elf/configure.in: Delete.
48085 * sysdeps/sparc/sparc64/elf/configure: Delete.
48086 * sysdeps/sparc/elf/configure.in: New file.
48087 * sysdeps/sparc/elf/configure: Generate.
48088
7a8b71c3
DM
48089 * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
48090 * sysdeps/sparc/sparc32/elf/configure: Regenerate.
48091 * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
48092 * sysdeps/sparc/sparc64/elf/configure: Regenerate.
48093 * config.h.in (BROKEN_SPARC_WDISP22): Remove.
48094
f1e86fca
JM
480952012-02-21 Joseph Myers <joseph@codesourcery.com>
48096
48097 * manual/install.texi: Do not mention specific glibc version
48098 numbers.
48099 * manual/libc.texinfo (VERSION, UPDATED): Update.
48100 (@copying): Use @copyright{} and range of years.
48101
0e7dfaef
JM
481022012-02-21 Joseph Myers <joseph@codesourcery.com>
48103
48104 [BZ #13695]
48105 * csu/Makefile (distribute): Remove initfini.c and defs.awk.
48106 [crti.S not in sysdirs] (generated): Do not append.
48107 [crti.S not in sysdirs] (omit-deps): Likewise.
48108 [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
48109 [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
48110 [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
48111 [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
48112 [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
48113 Likewise.
48114 [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
48115 [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
48116 [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
48117 * csu/defs.awk: Remove file.
48118 * sysdeps/generic/initfini.c: Likewise.
48119 * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
48120 variable.
48121 * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
48122 Likewise.
48123
599af3ca
JM
481242012-02-20 Joseph Myers <joseph@codesourcery.com>
48125
48126 * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
48127 * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
48128 * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
48129 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
48130 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
48131 * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
48132 <bits/epoll.h>.
48133 (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
48134 (__EPOLL_PACKED): Define to empty if not defined by
48135 <bits/epoll.h>.
48136 (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
48137 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48138 bits/epoll.h.
48139
0e499750
JM
481402012-02-20 Joseph Myers <joseph@codesourcery.com>
48141
48142 * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
48143 * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
48144 * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
48145 * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
48146 <bits/timerfd.h>.
48147 (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
48148 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48149 bits/timerfd.h.
48150
5ad91f6e
JM
481512012-02-20 Joseph Myers <joseph@codesourcery.com>
48152
48153 * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
48154 in C locale.
48155 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
48156 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
48157 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
48158 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48159
06b99b02
AJ
481602012-02-20 Aurelien Jarno <aurelien@aurel32.net>
48161
48162 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48163 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
48164
7638c0fd
AS
481652012-02-19 Andreas Schwab <schwab@linux-m68k.org>
48166
48167 * manual/errno.texi (Error Codes): Add EHWPOISON entry.
48168 * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
48169 defined.
48170 * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
48171 Likewise.
48172 * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
48173 entry for 2.16.
48174
92221550
AJ
481752012-02-19 Aurelien Jarno <aurelien@aurel32.net>
48176
48177 * math/w_acos.c: Use non-signaling floating-point comparisons.
48178 * math/w_acosf.c: Likewise.
48179 * math/w_acosh.c: Likewise.
48180 * math/w_acoshf.c: Likewise.
48181 * math/w_acoshl.c: Likewise.
48182 * math/w_acosl.c: Likewise.
48183 * math/w_asin.c: Likewise.
48184 * math/w_asinf.c: Likewise.
48185 * math/w_asinl.c: Likewise.
48186 * math/w_atanh.c: Likewise.
48187 * math/w_atanhf.c: Likewise.
48188 * math/w_atanhl.c: Likewise.
48189 * math/w_exp2.c: Likewise.
48190 * math/w_exp2f.c: Likewise.
48191 * math/w_exp2l.c: Likewise.
48192 * math/w_j0.c: Likewise.
48193 * math/w_j0f.c: Likewise.
48194 * math/w_j0l.c: Likewise.
48195 * math/w_j1.c: Likewise.
48196 * math/w_j1f.c: Likewise.
48197 * math/w_j1l.c: Likewise.
48198 * math/w_jn.c: Likewise.
48199 * math/w_jnf.c: Likewise.
48200 * math/w_log.c: Likewise.
48201 * math/w_log10.c: Likewise.
48202 * math/w_log10f.c: Likewise.
48203 * math/w_log10l.c: Likewise.
48204 * math/w_log2.c: Likewise.
48205 * math/w_log2f.c: Likewise.
48206 * math/w_log2l.c: Likewise.
48207 * math/w_logf.c: Likewise.
48208 * math/w_logl.c: Likewise.
48209 * math/w_sqrt.c: Likewise.
48210 * math/w_sqrtf.c: Likewise.
48211 * math/w_sqrtl.c: Likewise.
48212 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
48213 * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
48214 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
48215 * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
48216 * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
48217
ebaf36eb
JM
482182012-02-19 Joseph Myers <joseph@codesourcery.com>
48219
48220 [BZ #9739]
48221 * manual/string.texi (strnlen): Use correct parameter name in
48222 equivalent expression.
48223
71c254a6
JM
482242012-02-19 Joseph Myers <joseph@codesourcery.com>
48225
48226 [BZ #11174]
48227 * manual/users.texi (seteuid): Consistently use neweuid for
48228 argument name.
48229
16d2c631
JM
482302012-02-19 Joseph Myers <joseph@codesourcery.com>
48231
48232 [BZ #13704]
48233 * manual/nss.texi (Services in the NSS configuration): Correct
48234 list of services in example configuration file.
48235
cd837b09
NB
482362012-02-19 Nick Bowler <nbowler@draconx.ca>
48237
48238 [BZ #11322]
48239 * manual/arith.texi: Remove statements about negative zero
48240 behaving identically to zero.
48241
02c4bbad
JM
482422012-02-18 Joseph Myers <joseph@codesourcery.com>
48243
48244 [BZ #5993]
48245 * manual/install.texi: Do not document upgrading from libc5.
48246
366842e7
JM
482472012-02-18 Joseph Myers <joseph@codesourcery.com>
48248
48249 [BZ #4596]
48250 * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
48251
dd54084d
DM
482522012-02-18 David S. Miller <davem@davemloft.net>
48253
48254 * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
48255 (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
48256 %o7 across the call.
48257 (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
48258 instead.
48259 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
48260 SETUP_PIC_REG_LEAF.
48261 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
48262 * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
48263 * sysdeps/sparc/crtn.S: Likewise.
48264
2bcc53a3
UD
482652012-02-17 Ulrich Drepper <drepper@gmail.com>
48266
48267 * aout/Makefile: Remove.
48268
09c093b5
RK
482692012-02-18 Rafe Kettler <rafe.kettler@gmail.com>
48270
48271 [BZ #13058]
48272 * manual/examples/argp-ex1.c (main): Format definition in GNU
48273 style.
48274 * manual/examples/argp-ex2.c (main): Likewise.
48275 * manual/examples/argp-ex3.c (main): Likewise.
48276 * manual/examples/argp-ex4.c (main): Likewise.
48277 * manual/examples/longopt.c (main): Use new-style prototype
48278 definition.
48279 * manual/examples/strncat.c (main): Specify return type and use
48280 (void) for arguments.
48281 * manual/examples/subopt.c (main): Use char **argv argument.
48282
2ee633a2
JM
482832012-02-17 Joseph Myers <joseph@codesourcery.com>
48284
48285 [BZ #5077]
48286 * manual/lang.texi (FLT_EPSILON): Avoid description depending on
48287 rounding modes.
48288
0520adde
FB
482892012-02-17 Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
48290
48291 [BZ #6907]
48292 * manual/string.texi (strchr): Change when strchrnul is
48293 recommended.
48294
3f4081cd
DGM
482952012-02-17 Dwayne Grant McConnell <decimal@us.ibm.com>
48296
48297 [BZ #174]
48298 * manual/locale.texi (setlocale): Document LOCPATH.
48299
d1b10e78
JM
483002012-02-17 Joseph Myers <joseph@codesourcery.com>
48301
48302 [BZ #10210]
48303 * manual/process.texi (execle): Move @dots{} before last argument.
48304
79c6869c
PB
483052012-02-17 Paul Bolle <pebolle@tiscali.nl>
48306
48307 [BZ #12047]
48308 * manual/charset.texi (Generic Charset Conversion): Fix typo
48309 (LC_TYPE -> LC_CTYPE).
48310
cc6e48bc
NB
483112012-02-17 Nicolas Boulenguez <nicolas.boulenguez@free.fr>
48312
48313 [BZ #5805]
48314 * manual/arith.texi (scalbn): Use @var{} on parameter names.
48315 (scalbnf): Likewise.
48316 (scalbnl): Likewise.
48317 (scalbln): Likewise.
48318 (scalblnf): Likewise.
48319 (scalblnl): Likewise.
48320 * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
48321 (vwarnx): Likewise.
48322 (verr): Likewise.
48323 (verrx): Likewise.
48324 * manual/filesys.texi (telldir): Use braces around return type.
48325 * manual/llio.texi (mmap): Add space after comma.
48326 (mmap64): Likewise.
48327 * manual/math.texi (jn): Use @var{} on parameter names.
48328 (jnf): Likewise.
48329 (jnl): Likewise.
48330 (yn): Likewise.
48331 (ynf): Likewise.
48332 (ynl): Likewise.
48333 * manual/memory.texi (alloca): Remove semicolon on @deftypefun
48334 line.
48335 * manual/resource.texi (ulimit): Use @dots{} instead of literal
48336 "...".
48337 (sched_get_priority_min): Remove semicolon on @deftypefun line.
48338 (sched_get_priority_max): Likewise.
48339 * manual/signal.texi (sigvec): Add space after comma.
48340 * manual/socket.texi (if_nametoindex): Use @var{} on parameter
48341 names.
48342 (if_indextoname): Likewise.
48343 (if_freenameindex): Likewise.
48344 (sendto): Use ',' instead of '.' in prototype.
48345 * manual/startup.texi (syscall): Use @dots{} instead of literal
48346 "...".
48347 * manual/stdio.texi (__fpending): Separate initial words of
48348 paragraph from @deftypefun line.
48349 * manual/syslog.texi (syslog): Use @dots{} instead of literal
48350 "...".
48351 (vsyslog): Use @var{} on parameter names.
48352 * manual/terminal.texi (stty): Use @var{} on parameter names.
48353 * manual/users.texi (getutmp): Use @var{} on parameter names.
48354 (getutmpx): Likewise.
48355
5b23062f
JM
483562012-02-17 Joseph Myers <joseph@codesourcery.com>
48357
48358 [BZ #6884]
48359 * manual/stdio.texi (fopen): Fix typos in description of
48360 ",ccs=STRING".
48361
8dee4833
AJ
483622012-02-17 Aurelien Jarno <aurelien@aurel32.net>
48363
48364 [BZ #4026]
48365 * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
48366 get clock_id definition.
48367
9078ce93
TS
483682012-02-17 Thomas Schwinge <thomas@schwinge.name>
48369
48370 [BZ #4822]
48371 * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
48372 (madvise): Cast every argument to void on its own.
48373
3835c55f
JM
483742012-02-17 Joseph Myers <joseph@codesourcery.com>
48375
48376 [BZ #9902]
48377 * manual/startup.texi (Exit Status): Fix typo.
48378
35c47e37
JM
483792012-02-17 Joseph Myers <joseph@codesourcery.com>
48380
48381 [BZ #10140]
48382 * manual/examples/argp-ex1.c: Include <stdlib.h>.
48383 * manual/examples/argp-ex2.c: Likewise.
48384 * manual/examples/argp-ex3.c: Likewise.
48385
e3b69ca7
RH
483862012-02-16 Richard Henderson <rth@redhat.com>
48387
48388 * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
48389 * sysdeps/s390/s390-32/initfini.c: Remove.
48390 * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
48391 * sysdeps/s390/s390-64/initfini.c: Remove.
48392
df83af67
KK
483932012-02-15 Kaz Kojima <kkojima@rr.iij4u.or.jp>
48394
48395 * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
48396 compiler output for sysdeps/generic/initfini.c.
48397 * sysdeps/sh/elf/initfini.c: Remove file.
48398
f63f3380
DM
483992012-02-16 David S. Miller <davem@davemloft.net>
48400
fb59b3a4
DM
48401 [BZ #11494]
48402 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
48403
f63f3380
DM
48404 * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
48405 * sysdeps/sparc/crti.S: New file.
48406 * sysdeps/sparc/crtn.S: New file.
48407 * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
48408 * sysdeps/sparc/sparc64/Makefile: Likewise.
48409
df6a4a4a
MF
484102012-02-15 Mike Frysinger <vapier@gentoo.org>
48411
6dd8f3dc 48412 [BZ #3335]
df6a4a4a
MF
48413 * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
48414
1cac7236
RM
484152012-02-15 Roland McGrath <roland@hack.frob.com>
48416
d2c736f8
RM
48417 [BZ #4822]
48418 * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
48419
1cac7236
RM
48420 * mach/devstream.c (cookie_io_functions_t): Macro removed.
48421 (write, read, close): Likewise.
48422 Patch by Aurelien Jarno <aurelien@aurel32.net>.
48423
8e475601
JM
484242012-02-15 Joseph Myers <joseph@codesourcery.com>
48425
48426 * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
48427 * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
48428 * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
48429 * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
48430 <bits/signalfd.h>.
48431 (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
48432 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48433 bits/signalfd.h.
48434
ed656b40
MP
484352012-02-14 Marek Polacek <polacek@redhat.com>
48436
48437 * sysdeps/x86_64/crti.S: New file.
48438 * sysdeps/x86_64/crtn.S: New file.
48439 * sysdeps/x86_64/elf/initfini.c: Remove file.
48440
2a979d3a
JM
484412012-02-13 Joseph Myers <joseph@codesourcery.com>
48442
48443 * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
48444 * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
48445 * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
48446 * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
48447 <bits/inotify.h>.
48448 (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
48449 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48450 bits/inotify.h.
48451
2a418ac3
JM
484522012-02-13 Joseph Myers <joseph@codesourcery.com>
48453
48454 * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
48455 * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
48456 * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
48457 * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
48458 <bits/eventfd.h>.
48459 (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
48460 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
48461 bits/eventfd.h.
48462
fb779be7
TS
484632012-02-10 Thomas Schwinge <thomas@codesourcery.com>
48464
e19e83c5
RM
48465 * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
48466 __feraiseexcept instead of feraiseexcept.
7c35ffed 48467
fb779be7
TS
48468 * rt/tst-cpuclock1.c: Add a few comments, and error checking for
48469 nanosleep invocations.
48470 * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
48471 strings, and add error checking for a nanosleep invocations.
48472
59ba27a6
PE
484732012-02-09 Paul Eggert <eggert@cs.ucla.edu>
48474
48475 Replace FSF snail mail address with URLs, as per GNU coding standards.
48476 Most of the snail mail addresses were wrong anyway, and omitting
48477 them makes the source code easier to maintain. Almost all of the
48478 changes are to license notices and to locale LC_IDENTIFICATION
48479 addresses, except for this one:
48480 * manual/libc.texinfo: In "Published by", give the FSF's URL,
48481 not its snail mail address.
48482
57b957eb
RH
484832012-02-09 Richard Henderson <rth@twiddle.net>
48484
af850b1c
RH
48485 * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
48486 of kernel-features.h.
48487
57b957eb
RH
48488 * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
48489
6b73181a
MP
484902012-02-08 Marek Polacek <polacek@redhat.com>
48491
48492 * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
48493 * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
48494 * sysdeps/gnu/_G_config.h: Likewise.
48495 * sysdeps/generic/_G_config.h: Likewise.
48496
26ecc33a
AS
484972012-02-08 Andreas Schwab <schwab@linux-m68k.org>
48498
6c6dbc63
AS
48499 * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
48500 tests.
48501 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
48502
e216c012
AS
48503 * sysdeps/powerpc/powerpc32/crti.S: New file.
48504 * sysdeps/powerpc/powerpc32/crtn.S: New file.
48505 * sysdeps/powerpc/powerpc64/crti.S: New file.
48506 * sysdeps/powerpc/powerpc64/crtn.S: New file.
48507
26ecc33a
AS
48508 * Makeconfig (have-initfini): Don't set.
48509 * config.make.in (have-initfini, need-nopic-initfini): Don't set.
48510 * configure.in (nopic_initfini): Don't substitute.
48511 * config.h.in (HAVE_INITFINI): Don't #undef.
48512 * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
48513 * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
48514
3add8e13
JM
485152012-02-08 Joseph Myers <joseph@codesourcery.com>
48516
48517 Support crti.S and crtn.S provided directly by architectures.
48518 * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
48519 [crti.S in sysdirs] (omit-deps): Likewise.
48520 [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
48521 [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
48522 [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
48523 [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
48524 [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
48525 [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
48526 [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
48527 [crti.S in sysdirs] (initfini.c): Remove vpath directive.
48528 * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
48529 compiler output for sysdeps/generic/initfini.c.
48530 * sysdeps/i386/elf/Makefile: Remove file.
48531 * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
48532
a22f12b4
MP
485332012-02-07 Marek Polacek <polacek@redhat.com>
48534
48535 * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
48536 * sysdeps/gnu/_G_config.h: Likewise.
48537 * sysdeps/mach/hurd/_G_config.h: Likewise.
48538
148cf100
MP
485392012-02-07 Marek Polacek <polacek@redhat.com>
48540
48541 * math/Makefile (tests): Add tst-CMPLX2.
48542 * math/tst-CMPLX2.c: New file.
48543
cfdc0dd7
AS
485442012-02-07 Andreas Schwab <schwab@linux-m68k.org>
48545
84ba42c4
AS
48546 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48547
cfdc0dd7
AS
48548 * math/libm-test.inc (jn_test): Add missing L suffix.
48549
622c86f4
MP
485502012-02-06 Marek Polacek <polacek@redhat.com>
48551
48552 * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
48553 * sysdeps/i386/fpu/e_powf.S: Likewise.
48554 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
48555 * sysdeps/i386/fpu/s_cexpl.S: Likewise.
48556 * sysdeps/i386/fpu/e_acosh.S: Likewise.
48557 * sysdeps/i386/fpu/e_pow.S: Likewise.
48558 * sysdeps/i386/fpu/s_asinhl.S: Likewise.
48559 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
48560 * sysdeps/i386/fpu/s_expm1.S: Likewise.
48561 * sysdeps/i386/fpu/s_frexpf.S: Likewise.
48562 * sysdeps/i386/fpu/e_log2.S: Likewise.
48563 * sysdeps/i386/fpu/e_log2l.S: Likewise.
48564 * sysdeps/i386/fpu/e_scalb.S: Likewise.
48565 * sysdeps/i386/fpu/e_powl.S: Likewise.
48566 * sysdeps/i386/fpu/s_log1p.S: Likewise.
48567 * sysdeps/i386/fpu/e_log10f.S: Likewise.
48568 * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
48569 * sysdeps/i386/fpu/e_logl.S: Likewise.
48570 * sysdeps/i386/fpu/s_cbrt.S: Likewise.
48571 * sysdeps/i386/fpu/s_expm1l.S: Likewise.
48572 * sysdeps/i386/fpu/s_frexpl.S: Likewise.
48573 * sysdeps/i386/fpu/s_expm1f.S: Likewise.
48574 * sysdeps/i386/fpu/e_log2f.S: Likewise.
48575 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
48576 * sysdeps/i386/fpu/e_log.S: Likewise.
48577 * sysdeps/i386/fpu/s_cexp.S: Likewise.
48578 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
48579 * sysdeps/i386/fpu/s_log1pl.S: Likewise.
48580 * sysdeps/i386/fpu/e_logf.S: Likewise.
48581 * sysdeps/i386/fpu/e_log10l.S: Likewise.
48582 * sysdeps/i386/fpu/e_atanh.S: Likewise.
48583 * sysdeps/i386/fpu/s_log1pf.S: Likewise.
48584 * sysdeps/i386/fpu/s_asinhf.S: Likewise.
48585 * sysdeps/i386/fpu/s_cexpf.S: Likewise.
48586 * sysdeps/i386/fpu/e_log10.S: Likewise.
48587 * sysdeps/i386/fpu/s_frexp.S: Likewise.
48588 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
48589 * sysdeps/i386/fpu/s_asinh.S: Likewise.
48590 * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
48591 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
48592 * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
48593 * sysdeps/i386/asm-syntax.h: Likewise.
48594 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
48595 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
48596 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
48597 * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
48598 * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
48599 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
48600 * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
48601 * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
48602 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
48603 * sysdeps/powerpc/sysdep.h: Likewise.
48604 * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
48605 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
48606
d4a54ac6
JM
486072012-02-06 Joseph Myers <joseph@codesourcery.com>
48608
48609 [BZ #411]
48610 * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
48611
314054ea
JM
486122012-02-06 Joseph Myers <joseph@codesourcery.com>
48613
48614 * sysdeps/i386/sysdep.h: Include <features.h>.
48615 (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
48616 version.
48617
d8e0ca50
JM
486182012-02-05 Joseph Myers <joseph@codesourcery.com>
48619
48620 * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
48621 Define.
48622 * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
48623 LOAD_PIC_REG_STR.
48624
b1da7dd9
JM
486252012-02-03 Joseph Myers <joseph@codesourcery.com>
48626
48627 * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
48628 (SETUP_PIC_REG): Use GET_PC_THUNK.
48629 * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
48630 macro.
48631
9a1d9254
JM
486322012-02-03 Joseph Myers <joseph@codesourcery.com>
48633
48634 * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
48635 for non-PIC compilation.
48636 (SETUP_PIC_REG): Add .p2align directive.
48637 * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
48638 * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
48639 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
48640 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
48641 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
48642 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
48643 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
48644 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
48645 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
48646 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
48647 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
48648 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
48649 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
48650 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
48651 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
48652 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
48653 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
48654 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
48655 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
48656 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
48657 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
48658 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
48659 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
48660 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
48661 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
48662 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
48663 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
48664 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
48665 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
48666 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
48667 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
48668 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
48669 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
48670 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
48671 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
48672 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
48673 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
48674 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
48675 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
48676 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
48677 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
48678
65dc3b75
JM
486792012-02-03 Joseph Myers <joseph@codesourcery.com>
48680
48681 * math/tst-CMPLX.c: Include <stdio.h>.
48682
d55bf177
JM
486832012-01-31 Joseph Myers <joseph@codesourcery.com>
48684
48685 * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
48686 float.
48687 * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
48688 * sysdeps/sparc/bits/mathdef.h: Likewise.
48689
69db4f8f
MP
486902012-01-31 Marek Polacek <polacek@redhat.com>
48691
48692 * libio/libio.h: Don't define _PARAMS.
48693 * locale/programs/config.h: Don't define PARAMS.
48694 * stdlib/strtol_l.c: Likewise.
48695 (__strtol_l): Remove PARAMS from the prototype.
48696
41b81892
UD
486972012-01-31 Ulrich Drepper <drepper@gmail.com>
48698
3b49edc0
UD
48699 * malloc/malloc.c: Remove name translation. Don't use mixed-cap
48700 names. Just use the correct names. Remove unnecessary wrapper
48701 functions.
48702 * malloc/arena.c: Likewise.
48703 * malloc/hooks.c: Likewise.
48704
41b81892
UD
48705 * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
48706 ARENA_TEST says not to. Simplify test for creation of a new arena.
48707 Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
48708
27a25b6e
UD
487092012-01-30 Ulrich Drepper <drepper@gmail.com>
48710
48711 * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
48712 into tail calls.
48713 (update_get_addr): New function.
48714 (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
48715 GET_ADDR_MODULE parameter.
48716
c8a89e7d
JM
487172012-01-30 Joseph Myers <joseph@codesourcery.com>
48718
48719 * crypt/cert.c: Remove __STDC__ conditionals.
48720 * crypt/crypt-entry.c: Likewise.
48721 * crypt/crypt_util.c: Likewise.
48722 * libio/filedoalloc.c: Likewise.
48723 * libio/fileops.c: Likewise.
48724 * libio/genops.c: Likewise.
48725 * libio/iofclose.c: Likewise.
48726 * libio/iofdopen.c: Likewise.
48727 * libio/iofopen.c: Likewise.
48728 * libio/iofopen64.c: Likewise.
48729 * libio/iogetdelim.c: Likewise.
48730 * libio/iopopen.c: Likewise.
48731 * libio/obprintf.c: Likewise.
48732 * libio/oldfileops.c: Likewise.
48733 * libio/oldiofclose.c: Likewise.
48734 * libio/oldiofdopen.c: Likewise.
48735 * libio/oldiofopen.c: Likewise.
48736 * libio/oldiopopen.c: Likewise.
48737 * libio/wfiledoalloc.c: Likewise.
48738 * libio/wgenops.c: Likewise.
48739 * locale/programs/xmalloc.c: Likewise.
48740 * misc/syslog.c: Likewise.
48741 * stdio-common/xbug.c: Likewise.
48742 * string/memchr.c: Likewise.
48743 * string/memcmp.c: Likewise.
48744 * string/memrchr.c: Likewise.
48745 * string/rawmemchr.c: Likewise.
48746 * sysdeps/posix/getcwd.c: Likewise.
48747 * time/strftime_l.c: Likewise.
48748
3b100462
JM
487492012-01-30 Joseph Myers <joseph@codesourcery.com>
48750
48751 * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
3b100462
JM
48752 * config.make.in (config-cflags-sse2avx): Define.
48753 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
48754 Fix typo.
48755
607998af
CM
487562012-01-29 Chris Metcalf <cmetcalf@tilera.com>
48757
48758 * scripts/config.guess: Update from upstream config git repository.
48759 * scripts/config.sub: Likewise.
48760
3601428f
CM
487612012-01-28 Chris Metcalf <cmetcalf@tilera.com>
48762
3ac8b282
CM
48763 * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
48764 (EM_NUM): Update.
48765 (R_TILEPRO_*, R_TILEGX_*): New macros.
48766
e034841e
CM
48767 * scripts/firstversions.awk: Fix bug in version range handling.
48768
540d7568
CM
48769 * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
48770
3601428f
CM
48771 * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
48772
463de862
CM
48773 * include/sys/epoll.h: New file.
48774 * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
48775 libc_hidden_def.
48776
73139a76
UD
487772012-01-28 Ulrich Drepper <drepper@gmail.com>
48778
96bc5b45
UD
48779 * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
48780 Avoid unnecessary __WORDSIZE == 64 test.
48781 (fmaxf): Use VEX format if possible.
48782 (fmax): Likewise.
48783 (fminf): Likewise.
48784 (fmin): Likewise.
48785
56f6f6a2
UD
48786 * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
48787 * math/math_private.h: Remove libc_fegetround* and
48788 libc_fesetround*.
48789 * sysdeps/i386/configure.in: Check for -msse2avx.
48790 * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
48791 also if SSE2AVX is defined.
48792 Remove libc_fegetround* and libc_fesetround*.
48793 * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
48794 if config-cflags-sse2avx is yes. Also add -DSSE2AVX to defines.
48795 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
48796 of HAS_YMM_USABLE.
48797 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
48798 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
48799 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
48800 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
48801 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
48802
73139a76
UD
48803 * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
48804
d73f93a4
AZ
488052012-01-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
48806
48807 * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
48808 size is not set.
48809 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
48810
6ee65ed6
UD
488112012-01-27 Ulrich Drepper <drepper@gmail.com>
48812
48813 [BZ #13618]
48814 * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
48815 relocation.
48816 * Makeconfig (libm): Define.
48817 * elf/Makefile: Add rules to build and run tst-relsort1.
48818 * elf/tst-relsort1.c: New file.
48819 * elf/tst-relsort1mod1.c: New file.
48820 * elf/tst-relsort1mod2.c: New file.
48821
8db21882
JM
488222012-01-27 Joseph Myers <joseph@codesourcery.com>
48823
48824 * math/s_ldexp.c: Remove __STDC__ conditionals.
48825 * math/s_ldexpf.c: Likewise.
48826 * math/s_ldexpl.c: Likewise.
48827 * math/s_nextafter.c: Likewise.
48828 * math/s_nexttowardf.c: Likewise.
48829 * math/s_significand.c: Likewise.
48830 * math/s_significandf.c: Likewise.
48831 * math/s_significandl.c: Likewise.
48832 * math/w_jnl.c: Likewise.
48833 * sysdeps/i386/fpu/s_isinfl.c: Likewise.
48834 * sysdeps/i386/fpu/s_isnanl.c: Likewise.
48835 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
48836 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
48837 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
48838 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
48839 * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
48840 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
48841 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
48842 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
48843 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
48844 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
48845 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
48846 * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
48847 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
48848 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
48849 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
48850 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
48851 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
48852 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
48853 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
48854 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
48855 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
48856 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
48857 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
48858 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
48859 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
48860 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
48861 * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
48862 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
48863 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
48864 * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
48865 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
48866 * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
48867 * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
48868 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
48869 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
48870 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
48871 * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
48872 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
48873 * sysdeps/ieee754/k_standard.c: Likewise.
48874 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
48875 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
48876 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
48877 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
48878 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
48879 * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
48880 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
48881 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
48882 * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
48883 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
48884 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
48885 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
48886 * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
48887 * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
48888 * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
48889 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
48890 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
48891 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
48892 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
48893 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
48894 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
48895 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
48896 * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
48897 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
48898 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
48899 * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
48900 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
48901 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
48902 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
48903 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
48904 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
48905 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
48906 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
48907 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
48908 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
48909 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
48910 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
48911 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
48912 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
48913 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
48914 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
48915 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
48916 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
48917 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
48918 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
48919 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
48920 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
48921 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
48922 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
48923 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
48924 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
48925 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
48926 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
48927 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
48928 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
48929 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
48930 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
48931 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
48932 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
48933 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
48934 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
48935 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
48936 * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
48937 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
48938 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
48939 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
48940 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
48941 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
48942 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
48943 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
48944 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
48945 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
48946 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
48947 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
48948 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
48949 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
48950 * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
48951 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
48952 * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
48953 * sysdeps/ieee754/s_matherr.c: Likewise.
48954 * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
48955 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
48956 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
48957 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
48958
965a54a4
JM
489592012-01-26 Joseph Myers <joseph@codesourcery.com>
48960
48961 * crypt/md5.h: Remove __STDC__ conditionals.
48962 * libio/libioP.h: Likewise.
48963 * locale/programs/config.h: Likewise.
48964 * sysdeps/generic/sysdep.h: Likewise.
48965 * sysdeps/i386/asm-syntax.h: Likewise.
48966 * sysdeps/s390/asm-syntax.h: Likewise.
48967 * sysdeps/unix/sysdep.h: Likewise.
48968 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
48969 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
48970
7071ad79
JM
489712012-01-26 Joseph Myers <joseph@codesourcery.com>
48972
48973 * libio/libio.h: Remove __STDC__ conditionals.
48974 * malloc/obstack.h: Likewise.
48975 * math/complex.h: Likewise.
48976 * math/math.h: Likewise.
48977 * sysdeps/generic/_G_config.h: Likewise.
48978 * sysdeps/gnu/_G_config.h: Likewise.
48979 * sysdeps/mach/hurd/_G_config.h: Likewise.
48980 * sysdeps/powerpc/bits/mathdef.h: Likewise.
48981 * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
48982 * sysdeps/sparc/bits/mathdef.h: Likewise.
48983
afc5ed09
UD
489842012-01-26 Ulrich Drepper <drepper@gmail.com>
48985
48986 [BZ #13583]
48987 * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
08cf777f 48988 Clean up HAS_* macros.
afc5ed09 48989 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
08cf777f
UD
48990 bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
48991 possible.
48992 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
48993 HAS_AVX.
48994 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
48995 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
48996 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
48997 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
48998 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
afc5ed09 48999
bdb6de1d
JM
490002012-01-25 Joseph Myers <joseph@codesourcery.com>
49001
49002 * elf/tst-unique3.cc (gets): Remove declaration.
49003 * elf/tst-unique3lib.cc (gets): Likewise.
49004 * elf/tst-unique3lib2.cc (gets): Likewise.
49005 * elf/tst-unique4.cc (gets): Likewise.
49006
b15549e6
UD
490072012-01-24 Ulrich Drepper <drepper@gmail.com>
49008
49009 * include/stdio.h: Add C++ protection. Add gets declarations and
49010 definitions.
49011 * debug/tst-chk1.c: Don't declare gets here.
49012 * stdio-common/tst-gets.c: Likewise.
49013
a037381f
JM
490142012-01-24 Joseph Myers <joseph@codesourcery.com>
49015
49016 * posix/glob: Remove directory.
49017
f1d4aa75
JM
490182012-01-24 Joseph Myers <joseph@codesourcery.com>
49019
49020 * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
49021
81c0c964
PT
490222012-01-22 Pino Toscano <toscano.pino@tiscali.it>
49023
49024 * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
49025 of the non-standard EPFNOSUPPORT.
49026
0ea698ae
ST
490272011-12-26 Samuel Thibault <samuel.thibault@ens-lyon.org>
49028
49029 * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
49030 __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
49031 ANYWHERE set to 1 only on KERN_NO_SPACE error.
49032
d220b117
UD
490332012-01-21 Ulrich Drepper <drepper@gmail.com>
49034
49035 * wcsmbs/uchar.h: Test __STDC_VERSION__.
49036
3e1aa84e
UD
490372012-01-20 Ulrich Drepper <drepper@gmail.com>
49038
49039 * nscd/aicache.c (addhstaiX): Do not cache negative results of
49040 transient errors.
49041 * nscd/grpcache.c (cache_addgr): Likewise.
49042 * nscd/hstcache.c (cache_addhst): Likewise.
49043 * nscd/initgrcache.c (addinitgroupsX): Likewise.
49044 * nscd/pwdcache.c (cache_addpw): Likewise.
49045 * nscd/servicescache.c (cache_addserv): Likewise.
49046
400aa020
UD
490472012-01-16 Ulrich Drepper <drepper@gmail.com>
49048
d77e7869
UD
49049 * malloc/malloc.c: Various cleanups.
49050 * malloc/hooks.c: Likewise.
49051
400aa020
UD
49052 * stdlib/Makefile (tests): Add bug-fmtmsg1.
49053 * stdlib/bug-fmtmsg1.c: New file.
49054
49055 * stdlib/fmtmsg.c (init): Add missing unlock.
49056 Patch by Peng Haitao <penght@cn.fujitsu.com>.
49057
e0a309cf
MP
490582012-01-12 Marek Polacek <polacek@redhat.com>
49059
49060 * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
49061 and _GNU_SOURCE.
49062
929d11c7
WS
490632012-01-04 Will Schmidt <will_schmidt@vnet.ibm.com>
49064
49065 * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
49066 * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
49067 macro to ensure uniqueness of label name.
49068 * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
49069 * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
49070
41d0e869
UD
490712012-01-11 Ulrich Drepper <drepper@gmail.com>
49072
0cc5ed3b
UD
49073 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
49074
41d0e869
UD
49075 * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
49076 * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
49077 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
49078 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
49079
a47a831a
UD
490802012-01-10 Ulrich Drepper <drepper@gmail.com>
49081
daa891c0
UD
49082 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
49083
49084 * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
49085 * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
49086 * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
49087
e58ef0f2
UD
49088 * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
49089
a47a831a 49090 * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
a47a831a
UD
49091 * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
49092 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
41d0e869 49093 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
a47a831a
UD
49094
49095 * math/bits/math-finite.h: Add ldexp support.
49096
a0bfc9c7
MP
490972012-01-10 Marek Polacek <polacek@redhat.com>
49098
49099 * locale/programs/localedef.h (show_archive_content): Add noreturn
49100 attribute.
49101
d6e97a1d
UD
491022012-01-09 Ulrich Drepper <drepper@gmail.com>
49103
49104 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
49105
d5835c26
UD
491062012-01-08 Ulrich Drepper <drepper@gmail.com>
49107
e5f484c6
UD
49108 * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
49109
d5835c26
UD
49110 * io/Makefile (headers): Add bits/poll2.h.
49111
d1f741e9
WS
491122011-01-05 Will Schmidt <will_schmidt@vnet.ibm.com>
49113
49114 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
49115 typo #include statement.
49116
ec09c1c4
UD
491172012-01-08 Ulrich Drepper <drepper@gmail.com>
49118
49119 * include/sys/cdefs.h: Define __attribute_alloc_size.
49120 * catgets/gencat.c: Add alloc_size attribute and apply consistently
49121 the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
49122 * elf/pldd.c: Likewise.
49123 * iconv/iconv_charmap.c: Likewise.
49124 * iconv/iconvconfig.c: Likewise.
49125 * iconv/strtab.c: Likewise.
49126 * locale/programs/locale.c: Likewise.
49127 * locale/programs/localedef.h: Likewise.
49128 * locale/programs/simple-hash.c: Likewise.
49129 * nscd/nscd.h: Likewise.
49130 * nss/makedb.c: Likewise.
49131 * sysdeps/generic/ldconfig.h: Likewise.
49132 * locale/programs/localedef.c: Remove xmalloc prototype.
49133 * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
49134
20b38e03
PP
491352012-01-05 Paul Pluzhnikov <ppluzhnikov@google.com>
49136
49137 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
49138 appropriate.
49139
a0da5fe1
UD
491402012-01-08 Ulrich Drepper <drepper@gmail.com>
49141
1d5a644a 49142 * math/Makefile (tests): Add tst-CMPLX.
669704fd 49143 * math/tst-CMPLX.c: New file.
1d5a644a 49144
8784a6db
UD
49145 * math/complex.h (CMPLXL): Fix typo.
49146
d9a216c0
UD
49147 * debug/Makefile (routines): Add poll_chk and ppoll_chk.
49148 * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
49149 GLIBC_2.16.
49150 * debug/tst-chk1.c: Add poll and ppoll tests.
49151 * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
49152 * include/sys/poll.h: Add hidden proto for ppoll.
49153 * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
49154 * sysdeps/mach/hurd/ppoll.c: Likewise.
49155 * io/ppoll.c: Likewise.
49156 * debug/poll_chk.c: New file.
49157 * debug/ppoll_chk.c: New file.
49158 * include/bits/poll2.h: New file.
49159 * io/bits/poll2.h: New file.
49160
ac097f5c
UD
49161 [BZ #1350]
49162 * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
49163
2119dcfa
UD
49164 * configure.in: static is always set to yes. Remove.
49165 * config.make.in: Don't set build-static.
49166 * Makeconfig: Remove use of build-static.
49167 * dlfcn/Makefile: Likewise.
49168 * elf/Makefile: Likewise.
49169 * math/Makefile: Likewise.
49170 * misc/Makefile: Likewise.
49171 * nptl/Makefile: Likewise.
49172 * sysdeps/mach/hurd/Makefile: Likewise.
49173
121766a9
UD
49174 * configure.in: PWD_P is not used anymore.
49175 * config.make.in: Remove PWD_P entry.
49176
51a1d39c 49177 * configure.in: Remove last remnants of RANLIB.
8720d066 49178 No need to check for signed size_t anymore.
215f4bdc
UD
49179 Don't set libc_commonpagesize and libc_relro_required here for Alpha
49180 and IA-64.
3857022a 49181 Remove __builtin_expect test because we require at least gcc 3.4.
51a1d39c
UD
49182 * aclocal.m4: Likewise.
49183
d3ed7225
UD
49184 * wcsmbs/mbrtoc16.c: Implement using towc function.
49185 * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
49186 * wcsmbs/wcsmbsload.c: Likewise.
49187 * iconv/gconv_simple.c: Likewise.
49188 * iconv/gconv_int.h: Likewise.
49189 * iconv/gconv_builtin.h: Likewise.
49190 * iconv/iconv_prog.c: Remove CHAR16 handling.
49191
49192 * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
49193
49194 * wcsmbs/mbrtowc.c: Better check for invalid inputs.
49195
a0da5fe1
UD
49196 * configure.in: Remove --with-elf and --enable-bounded options.
49197 Dont set base_machine for ia64. More non-ELF conditions removed.
49198 Remove testing and setting of leading underscore information.
49199 * config.make.in (build-bounded): Set to no.
49200 * config.h.in: Remove NO_UNDERSCORES entry.
49201 * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS. ELF has
49202 them.
49203 * csu/start.c: Remove !NO_UNDERSCORE code.
49204 * locale/localeinfo.h: Likewise.
49205 * sysdeps/generic/machine-gmon.h: Likewise.
49206 * sysdeps/generic/sysdep.h: Likewise.
49207 * sysdeps/i386/sysdep.h: Likewise.
49208 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
49209 * sysdeps/mach/sysdep.h: Likewise.
49210 * sysdeps/s390/s390-32/sysdep.h: Likewise.
49211 * sysdeps/s390/s390-64/sysdep.h: Likewise.
49212 * sysdeps/sh/sysdep.h: Likewise.
49213 * sysdeps/sparc/sparc32/alloca.S: Likewise.
49214 * sysdeps/unix/i386/sysdep.S: Likewise.
49215 * sysdeps/unix/sparc/start.c: Likewise.
49216 * sysdeps/unix/sparc/sysdep.S: Likewise.
49217 * sysdeps/unix/sparc/sysdep.h: Likewise.
49218 * sysdeps/unix/start.c: Likewise.
49219 * sysdeps/unix/x86_64/sysdep.S: Likewise.
49220 * sysdeps/x86_64/sysdep.h: Likewise.
49221
df78418a
UD
492222012-01-07 Ulrich Drepper <drepper@gmail.com>
49223
a784e502
UD
49224 [BZ #13553]
49225 * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
49226 for non-gcc.
49227 * argp/argp-fmtstream.h: Use const instead __const.
49228 * argp/argp.h: Likewise.
49229 * assert/assert.h: Likewise.
49230 * bits/fenv.h: Likewise.
49231 * bits/sched.h: Likewise.
49232 * bits/sigset.h: Likewise.
49233 * bits/sigthread.h: Likewise.
49234 * catgets/nl_types.h: Likewise.
49235 * conform/data/pthread.h-data: Likewise.
49236 * crypt/crypt-private.h: Likewise.
49237 * crypt/crypt.h: Likewise.
49238 * crypt/crypt_util.c: Likewise.
49239 * ctype/ctype.h: Likewise.
49240 * debug/execinfo.h: Likewise.
49241 * debug/mbsnrtowcs_chk.c: Likewise.
49242 * debug/mbsrtowcs_chk.c: Likewise.
49243 * debug/wcsnrtombs_chk.c: Likewise.
49244 * debug/wcsrtombs_chk.c: Likewise.
49245 * debug/wcstombs_chk.c: Likewise.
49246 * dirent/dirent.h: Likewise.
49247 * dlfcn/dlfcn.h: Likewise.
49248 * elf/neededtest4.c: Likewise.
49249 * grp/grp.h: Likewise.
49250 * gshadow/gshadow.h: Likewise.
49251 * iconv/gconv.h: Likewise.
49252 * iconv/gconv_int.h: Likewise.
49253 * iconv/gconv_simple.c: Likewise.
49254 * iconv/iconv.h: Likewise.
49255 * iconv/loop.c: Likewise.
49256 * iconv/skeleton.c: Likewise.
49257 * include/aio.h: Likewise.
49258 * include/aliases.h: Likewise.
49259 * include/argz.h: Likewise.
49260 * include/arpa/inet.h: Likewise.
49261 * include/assert.h: Likewise.
49262 * include/dirent.h: Likewise.
49263 * include/dlfcn.h: Likewise.
49264 * include/execinfo.h: Likewise.
49265 * include/fcntl.h: Likewise.
49266 * include/fenv.h: Likewise.
49267 * include/glob.h: Likewise.
49268 * include/grp.h: Likewise.
49269 * include/libintl.h: Likewise.
49270 * include/mntent.h: Likewise.
49271 * include/netdb.h: Likewise.
49272 * include/pwd.h: Likewise.
49273 * include/rpc/netdb.h: Likewise.
49274 * include/sched.h: Likewise.
49275 * include/search.h: Likewise.
49276 * include/shadow.h: Likewise.
49277 * include/signal.h: Likewise.
49278 * include/stdio.h: Likewise.
49279 * include/stdlib.h: Likewise.
49280 * include/string.h: Likewise.
49281 * include/sys/socket.h: Likewise.
49282 * include/sys/stat.h: Likewise.
49283 * include/sys/statfs.h: Likewise.
49284 * include/sys/statvfs.h: Likewise.
49285 * include/sys/syslog.h: Likewise.
49286 * include/sys/time.h: Likewise.
49287 * include/sys/uio.h: Likewise.
49288 * include/time.h: Likewise.
49289 * include/unistd.h: Likewise.
49290 * include/utmp.h: Likewise.
49291 * include/wchar.h: Likewise.
49292 * include/wctype.h: Likewise.
49293 * inet/aliases.h: Likewise.
49294 * inet/arpa/inet.h: Likewise.
49295 * inet/netinet/ether.h: Likewise.
49296 * inet/netinet/in.h: Likewise.
49297 * intl/libintl.h: Likewise.
49298 * io/bits/fcntl2.h: Likewise.
49299 * io/fcntl.h: Likewise.
49300 * io/ftw.h: Likewise.
49301 * io/sys/poll.h: Likewise.
49302 * io/sys/stat.h: Likewise.
49303 * io/sys/statfs.h: Likewise.
49304 * io/sys/statvfs.h: Likewise.
49305 * io/utime.h: Likewise.
49306 * libio/bits/stdio.h: Likewise.
49307 * libio/bits/stdio2.h: Likewise.
49308 * libio/libio.h: Likewise.
49309 * libio/libioP.h: Likewise.
49310 * libio/stdio.h: Likewise.
49311 * locale/lc-ctype.c: Likewise.
49312 * locale/locale.h: Likewise.
49313 * login/utmp.h: Likewise.
49314 * malloc/arena.c: Likewise.
49315 * malloc/malloc.c: Likewise.
49316 * malloc/malloc.h: Likewise.
49317 * malloc/mcheck.c: Likewise.
49318 * malloc/mtrace.c: Likewise.
49319 * math/bits/mathcalls.h: Likewise.
49320 * math/fenv.h: Likewise.
49321 * math/math_private.h: Likewise.
49322 * misc/bits/error.h: Likewise.
49323 * misc/bits/syslog.h: Likewise.
49324 * misc/err.h: Likewise.
49325 * misc/error.h: Likewise.
49326 * misc/fstab.h: Likewise.
49327 * misc/mntent.h: Likewise.
49328 * misc/regexp.h: Likewise.
49329 * misc/search.h: Likewise.
49330 * misc/sgtty.h: Likewise.
49331 * misc/sys/mman.h: Likewise.
49332 * misc/sys/syslog.h: Likewise.
49333 * misc/sys/uio.h: Likewise.
49334 * misc/sys/xattr.h: Likewise.
49335 * misc/ttyent.h: Likewise.
49336 * nis/rpcsvc/ypclnt.h: Likewise.
49337 * nss/nss.h: Likewise.
49338 * posix/bits/unistd.h: Likewise.
49339 * posix/fnmatch.h: Likewise.
49340 * posix/glob.h: Likewise.
49341 * posix/sched.h: Likewise.
49342 * posix/spawn.h: Likewise.
49343 * posix/sys/wait.h: Likewise.
49344 * posix/unistd.h: Likewise.
49345 * posix/wordexp.h: Likewise.
49346 * pwd/pwd.h: Likewise.
49347 * resolv/netdb.h: Likewise.
49348 * resource/sys/resource.h: Likewise.
49349 * rt/aio.h: Likewise.
49350 * rt/bits/mqueue2.h: Likewise.
49351 * rt/mqueue.h: Likewise.
49352 * shadow/shadow.h: Likewise.
49353 * signal/signal.h: Likewise.
49354 * socket/send.c: Likewise.
49355 * socket/sendto.c: Likewise.
49356 * socket/sys/socket.h: Likewise.
49357 * stdio-common/printf.h: Likewise.
49358 * stdlib/bits/stdlib.h: Likewise.
49359 * stdlib/fmtmsg.h: Likewise.
49360 * stdlib/monetary.h: Likewise.
49361 * stdlib/stdlib.h: Likewise.
49362 * stdlib/ucontext.h: Likewise.
49363 * streams/stropts.h: Likewise.
49364 * string/argz.h: Likewise.
49365 * string/bits/string2.h: Likewise.
49366 * string/string.h: Likewise.
49367 * string/strings.h: Likewise.
49368 * sunrpc/rpc/auth.h: Likewise.
49369 * sunrpc/rpc/auth_des.h: Likewise.
49370 * sunrpc/rpc/clnt.h: Likewise.
49371 * sunrpc/rpc/netdb.h: Likewise.
49372 * sunrpc/rpc/pmap_clnt.h: Likewise.
49373 * sunrpc/rpc/xdr.h: Likewise.
49374 * sysdeps/generic/inttypes.h: Likewise.
49375 * sysdeps/generic/net/if.h: Likewise.
49376 * sysdeps/generic/sys/swap.h: Likewise.
49377 * sysdeps/gnu/net/if.h: Likewise.
49378 * sysdeps/gnu/utmpx.h: Likewise.
49379 * sysdeps/i386/fpu/bits/fenv.h: Likewise.
49380 * sysdeps/i386/i486/bits/string.h: Likewise.
49381 * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
49382 * sysdeps/s390/bits/string.h: Likewise.
49383 * sysdeps/s390/fpu/bits/fenv.h: Likewise.
49384 * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
49385 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
49386 * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
49387 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
49388 * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
49389 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
49390 * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
49391 * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
49392 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
49393 * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
49394 * sysdeps/unix/sysv/linux/preadv.c: Likewise.
49395 * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
49396 * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
49397 * sysdeps/unix/sysv/linux/readv.c: Likewise.
49398 * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
49399 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
49400 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
49401 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
49402 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
49403 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
49404 * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
49405 * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
49406 * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
49407 * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
49408 * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
49409 * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
49410 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
49411 * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
49412 * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
49413 * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
49414 * sysvipc/sys/ipc.h: Likewise.
49415 * sysvipc/sys/msg.h: Likewise.
49416 * sysvipc/sys/sem.h: Likewise.
49417 * sysvipc/sys/shm.h: Likewise.
49418 * termios/termios.h: Likewise.
49419 * time/sys/time.h: Likewise.
49420 * time/time.h: Likewise.
49421 * wcsmbs/bits/wchar2.h: Likewise.
49422 * wcsmbs/uchar.h: Likewise.
49423 * wcsmbs/wchar.h: Likewise.
49424 * wctype/wctype.h: Likewise.
49425
0269750c
UD
49426 [BZ #13551]
49427 * Makeconfig: Remove all but ELF support including AIX support.
49428 * Makerules: Likewise.
49429 * config.h.in: Likewise.
49430 * config.make.in: Likewise.
49431 * configure: Likewise.
49432 * configure.in: Likewise.
49433 * csu/Makefile: Likewise.
49434 * csu/version.c: Likewise.
49435 * debug/Makefile: Likewise.
49436 * dlfcn/Makefile: Likewise.
49437 * elf/Makefile: Likewise.
49438 * extra-lib.mk: Likewise.
49439 * iconv/Makefile: Likewise.
49440 * include/libc-symbols.h: Likewise.
49441 * include/shlib-compat.h: Likewise.
49442 * resolv/Makefile: Likewise.
49443 * resolv/res_libc.c: Likewise.
49444 * rt/Makefile: Likewise.
49445 * sysdeps/i386/asm-syntax.h: Likewise.
49446 * sysdeps/i386/sysdep.h: Likewise.
49447 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
49448 * sysdeps/mach/sysdep.h: Likewise.
49449 * sysdeps/powerpc/powerpc32/Makefile: Likewise.
49450 * sysdeps/powerpc/powerpc64/Makefile: Likewise.
49451 * sysdeps/s390/asm-syntax.h: Likewise.
49452 * sysdeps/s390/s390-32/sysdep.h: Likewise.
49453 * sysdeps/s390/s390-64/sysdep.h: Likewise.
49454 * sysdeps/sh/sysdep.h: Likewise.
49455 * sysdeps/unix/sparc/sysdep.h: Likewise.
49456 * sysdeps/wordsize-32/divdi3.c: Likewise.
49457 * sysdeps/x86_64/sysdep.h: Likewise.
49458
00bbd29b
UD
49459 * argp/Versions: Remove _argp_unlock_xxx.
49460
49461 [BZ #13559]
49462 * abilist/ld.abilist: Update. Adjust for removal of tls option.
49463 * abilist/libBrokenLocale.abilist: Likewise.
49464 * abilist/libanl.abilist: Likewise.
49465 * abilist/libc.abilist: Likewise.
49466 * abilist/libcrypt.abilist: Likewise.
49467 * abilist/libdl.abilist: Likewise.
49468 * abilist/libm.abilist: Likewise.
49469 * abilist/libnsl.abilist: Likewise.
49470 * abilist/libpthread.abilist: Likewise.
49471 * abilist/libresolv.abilist: Likewise.
49472 * abilist/librt.abilist: Likewise.
49473 * abilist/libthread_db.abilist: Likewise.
49474 * abilist/libutil.abilist: Likewise.
49475 * abilist/libnss_db.abilist: New file.
49476
49477 * scripts/abilist.awk: Add support for indirect functions.
49478
a2693a0e
UD
49479 * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
49480
3f05895f
UD
49481 * sysdeps/generic/ldsodefs.h: Remove Alpha support.
49482
ecb6fb48
UD
49483 * shlib-versions: Remove entries for ports architectures.
49484
664f8cb9
UD
49485 * elf/tls-macros.h: Remove support for Alpha and IA-64. Should be in
49486 files in ports.
49487 * elf/stackguard-macros.h: Remove support for IA-64.
49488 * elf/tst-auditmod1.c: Likewise.
49489 * sysdeps/generic/ldsodefs.h: Likewise.
49490
7ae81d88
UD
49491 * sysdeps/unix/sysv/linux/configure.in: Ports should define
49492 libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
49493 configure files.
49494
bdeba135
UD
49495 [BZ #13552]
49496 * configure.in: Remove --enable-omitfp support.
49497 * FAQ.in: Adjust.
49498 * config.make.in: Likewise.
49499 * Makeconfig: Likewise.
49500 * manual/install.texi: Likewise.
49501
d75a0a62
UD
49502 In case anyone cares, the IA-64 architecture could move to ports.
49503 * sysdeps/ia64/*: Removed.
49504 * sysdeps/unix/sysv/linux/ia64/*: Removed.
b13b9885 49505 * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
d75a0a62 49506
dcc9756b
UD
49507 [BZ #13555]
49508 * configure.in: Remove entries for unsupported architectures.
49509
d3761ebc 49510 [BZ #13533]
9954432e
UD
49511 * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
49512 * iconv/gconv_simple.c: Rename char16_t routines. Add char16_t<->utf8
49513 routines.
49514 * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
49515 * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
49516 * wcsmbs/c16rtomb.c: Fix a few problems. Disable all the code and
49517 fall back to using wcrtomb.
49518 * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
49519 * wcsmbs/wcsmbsload.c: Make char16 routines optional. Adjust for
49520 renaming.
49521 * wcsmbs/Makefile (tests): Add tst-c16c32-1:
49522 * wcsmbs/tst-c16c32-1.c: New file.
49523
49524 * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
49525 local variable.
49526
c3a87236
UD
49527 * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
49528
28926a1b
UD
49529 * elf/tst-unique3.cc: Add explicit declaration of gets.
49530 * elf/tst-unique3lib.cc: Likewise.
49531 * elf/tst-unique3lib2.cc: Likewise.
49532 * elf/tst-unique4.cc: Likewise.
49533
df78418a
UD
49534 * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
49535
8ecd6b2a
JM
495362012-01-06 Joseph Myers <joseph@codesourcery.com>
49537
49538 [BZ #13566]
49539 * assert/assert.h (static_assert): Don't define for C++.
49540 * libio/stdio.h (gets): Do declare for C++ <= C++11.
49541 * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
49542
9f115170
UD
495432012-01-03 Ulrich Drepper <drepper@gmail.com>
49544
5e0d0300
UD
49545 * iconv/loop.c (single loop): Fix assertion in storing of
49546 remaining bytes.
49547
9f115170
UD
49548 * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
49549
81fb02b0
UD
495502012-01-01 Ulrich Drepper <drepper@gmail.com>
49551
49552 * posix/getconf.c: Update copyright year.
49553 * nss/getent.c: Likewise.
a316c1f6 49554 * nss/makedb.c: Likewise.
81fb02b0
UD
49555 * iconv/iconvconfig.c: Likewise.
49556 * iconv/iconv_prog.c: Likewise.
49557 * elf/ldconfig.c: Likewise.
a316c1f6
UD
49558 * elf/pldd.c: Likewise.
49559 * elf/sotruss.ksh: Likewise.
81fb02b0
UD
49560 * catgets/gencat.c: Likewise.
49561 * csu/version.c: Likewise.
49562 * elf/ldd.bash.in: Likewise.
49563 * elf/sprof.c (print_version): Likewise.
49564 * locale/programs/locale.c: Likewise.
49565 * locale/programs/localedef.c: Likewise.
a316c1f6 49566 * login/programs/pt_chown.c: Likewise.
81fb02b0
UD
49567 * nscd/nscd.c (print_version): Likewise.
49568 * debug/xtrace.sh: Likewise.
49569 * malloc/memusage.sh: Likewise.
49570 * malloc/mtrace.pl: Likewise.
49571 * debug/catchsegv.sh: Likewise.
49572
2ba92745
JJ
495732011-12-30 Jakub Jelinek <jakub@redhat.com>
49574
49575 * posix/regex_internal.c (re_string_fetch_byte_case): Remove
49576 pure attribute.
49577
dadebdae
UD
495782011-12-24 Ulrich Drepper <drepper@gmail.com>
49579
d3761ebc 49580 [BZ #13533]
db6af3eb
UD
49581 * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
49582 * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
49583 transformations.
49584 * iconv/gconv_int.h: Likewise.
49585 * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
49586 * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
49587 from libc for GLIBC_2.16.
49588 * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
49589 * wcsmbs/wcrtomb.c: Define c32rtomb alias.
49590 * wcsmbs/uchar.h: Really define mbstate_t.
49591 * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
49592 * wcsmbs/c16rtomb.c: New file.
49593 * wcsmbs/mbrtoc16.c: New file.
49594 * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
49595 for C/POSIX locale.
49596 (__wcsmbs_load_conv): Do not fill in c16 routines yet.
49597 * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
49598
dadebdae
UD
49599 * wcsmbs/wchar.h: Add missing __restrict.
49600
67371b56
UD
496012011-12-23 Ulrich Drepper <drepper@gmail.com>
49602
74033a25
UD
49603 [BZ #13532]
49604 * time/Makefile (routines): Add timespec_get.
49605 * time/Versions: Export timespec_get from libc for GLIBC_2.16.
49606 * time/time.h: Define TIME_UTC and declare timespec_get. Define
49607 timespec for ISO C11.
49608 * time/timespec_get.c: New file.
49609 * sysdeps/unix/sysv/linux/timespec_get.c: New file.
49610 * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
49611
380d7e87
UD
49612 [BZ #13531]
49613 * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
49614 * stdlib/stdlib.h: Declare aligned_alloc.
49615 * Versions.def: Add GLIBC_2.16 for libc.
49616 * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
49617
4e9e7a35
UD
49618 [BZ 13527]
49619 * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
49620 ISO C11.
49621
380d7e87 49622 * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
8fd8ff3b
UD
49623 code.
49624
03a71829
UD
49625 [BZ #13528]
49626 * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
49627
839e283e
UD
49628 [BZ #13529]
49629 * assert/assert.h (static_assert): Define.
49630
ce5294e2 49631 * version.h: Update for 2.16 development version.
90fa7312 49632
8d44e150 49633 [BZ #13526]
d7809905
UD
49634 * include/features.h: Handle __STDC_VERSION__ >= 201112 and
49635 _ISOC11_SOURCE.
49636
c0da14cd
UD
49637 * version.h (RELEASE): Bump for 2.15 release.
49638 * include/features.h (__GLIBC_MINOR__): Bump to 15.
49639
530a3249
MP
49640 * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
49641 Patch by Marek Polacek <mpolacek@redhat.com>.
49642
67371b56
UD
49643 * bits/byteswap.h: Protect long long constants with __extension__.
49644 * sysdeps/i386/bits/byteswap.h: Likewise.
49645 * sysdeps/ia64/bits/byteswap.h: Likewise.
49646 * sysdeps/s390/bits/byteswap.h: Likewise.
49647 * sysdeps/x86_64/bits/byteswap.h: Likewise.
49648
15db4de1
LD
496492011-12-23 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49650
49651 [BZ #13540]
bbe315ea
LD
49652 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
49653 destination buffer.
15db4de1
LD
49654 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
49655
2b2596b1
MP
496562011-12-23 Marek Polacek <polacek@redhat.com>
49657
49658 * elf/dl-addr.c (determine_info): Add inline keyword.
49659 * elf/tst-auditmod4b.c (check_avx): Likewise.
49660 * elf/tst-auditmod6b.c (check_avx): Likewise.
49661 * elf/tst-auditmod6c.c (check_avx): Likewise.
49662 * elf/tst-auditmod7b.c (check_avx): Likewise.
49663
70c6c246
UD
496642011-12-23 Ulrich Drepper <drepper@gmail.com>
49665
49666 * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
49667 !__SSE_MATH__.
49668
c044cf14
LD
496692011-12-23 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49670
15db4de1 49671 [BZ #13540]
c044cf14
LD
49672 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
49673 processing for last bytes.
49674
6b13d9d9
BH
496752011-08-06 Bruno Haible <bruno@clisp.org>
49676
d455f537
BH
49677 [BZ #13061]
49678 * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
49679 U+0385, not to U+1FEE.
49680
6b13d9d9
BH
49681 [BZ #13062]
49682 * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
49683 entry for U+00A5 U+0301.
49684
db910efd
UD
496852011-12-22 Ulrich Drepper <drepper@gmail.com>
49686
27deeafc
UD
49687 [BZ #13166]
49688 * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
49689 buffer for the output is too small.
49690
aed9d171
UD
49691 * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
49692 optimization.
49693
db910efd
UD
49694 [BZ #13185]
49695 * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
49696 SSE flags if possible.
49697
2bd779ae
LD
496982011-12-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49699
e7f9dac3 49700 [BZ #13540]
2bd779ae
LD
49701 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
49702 processing for last bytes.
49703
154bfc16
JM
497042011-12-22 Joseph Myers <joseph@codesourcery.com>
49705
49706 * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
49707 (syscall-list-default-options, syscall-list-default-condition)
49708 (syscall-list-includes): Define.
49709 ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
49710 list of ABIs and options and #if conditions for each ABI. Do not
49711 handle common syscalls between ABIs specially.
49712 * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
49713 Remove.
49714 (syscall-list-variants, syscall-list-32bit-options)
49715 (syscall-list-32bit-condition, syscall-list-64bit-options)
49716 (syscall-list-64bit-condition): Define.
49717 * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
49718 (syscall-list-variants, syscall-list-32bit-options)
49719 (syscall-list-32bit-condition, syscall-list-64bit-options)
49720 (syscall-list-64bit-condition): Define.
49721 * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
49722 Remove.
49723 (syscall-list-variants, syscall-list-32bit-options)
49724 (syscall-list-32bit-condition, syscall-list-64bit-options)
49725 (syscall-list-64bit-condition): Define.
49726 * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
49727 Remove.
49728 (syscall-list-variants, syscall-list-32bit-options)
49729 (syscall-list-32bit-condition, syscall-list-64bit-options)
49730 (syscall-list-64bit-condition): Define.
49731
21eaf3a5
UD
497322011-12-22 Ulrich Drepper <drepper@gmail.com>
49733
16c6f992
UD
49734 * locale/iso-639.def: Add brx entry.
49735
41043168
UD
49736 [BZ #13328]
49737 * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
49738 Proposed by Mariusz_Cukr <marcukr@op.pl>.
49739
21eaf3a5
UD
49740 * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
49741 __feraiseexcept_renamed.
49742
e3a851a2
UD
497432011-12-21 Ulrich Drepper <drepper@gmail.com>
49744
4920765e
UD
49745 [BZ #13538]
49746 * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
49747 EPOLLET with unsigned values.
49748 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
49749 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
49750
e3a851a2
UD
49751 * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
49752 to large cancellation.
49753 * math/s_cacoshf.c: Likewise.
49754 * math/s_cacoshl.c: Likewise.
49755
b27e24b8
RK
497562011-11-18 Richard B. Kreckel <kreckel@ginac.de>
49757
49758 [BZ #13305]
aebefeee 49759 [BZ #12786]
b27e24b8
RK
49760 * math/s_cacosh.c: Fix rare miscomputation in cacosh().
49761 * math/s_cacoshf.c: Likewise.
49762 * math/s_cacoshl.c: Likewise.
49763
ee190f67
UD
497642011-12-21 Ulrich Drepper <drepper@gmail.com>
49765
49766 [BZ #13439]
49767 * iconv/gconv.h: Define __GCONV_SWAP.
49768 * iconvdata/unicode.c: The swap bit must be stored in __flags.
49769 * iconvdata/utf-16.c: Likewise.
49770 * iconvdata/utf-32.c: Likewise.
49771
707f25df
AS
497722011-12-21 Andreas Schwab <schwab@linux-m68k.org>
49773
49774 [BZ #13524]
49775 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
49776 numerator after shifting it by one limb.
49777
d2daaa1e
RÁE
497782011-12-19 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
49779
49780 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
49781 under [__USE_EXTERN_INLINES].
49782
a4647e72
UD
497832011-12-17 Ulrich Drepper <drepper@gmail.com>
49784
49785 [BZ #13446]
49786 * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
49787
f0b264f1
AZ
497882011-11-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
49789
49790 * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
49791 * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
49792 optimized code.
49793 * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
49794 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
49795 * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
49796 * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
49797 for strncasecmp/strncasecmp_l compilation.
49798 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
49799 * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
49800
8ef4f244
MP
498012011-12-08 Marek Polacek <mpolacek@redhat.com>
49802
49803 [BZ #13484]
49804 * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
49805 of __asm__.
49806
97ac2654
UD
498072011-12-17 Ulrich Drepper <drepper@gmail.com>
49808
49809 [BZ #13506]
49810 * time/tzfile.c (__tzfile_read): Check values from file header.
49811
91d2a845
WS
498122011-11-21 Will Schmidt <will_schmidt@vnet.ibm.com>
49813
49814 * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
49815 * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
49816 * powerpc/powerpc32/dl-start.S: Likewise.
49817 * powerpc/powerpc32/elf/start.S: Likewise.
49818 * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
49819 * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
49820 * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
49821 * powerpc/powerpc32/fpu/s_floor.S: Likewise.
49822 * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
49823 * powerpc/powerpc32/fpu/s_lround.S: Likewise.
49824 * powerpc/powerpc32/fpu/s_rint.S: Likewise.
49825 * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
49826 * powerpc/powerpc32/fpu/s_round.S: Likewise.
49827 * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
49828 * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
49829 * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
49830 * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
49831 * powerpc/powerpc32/memset.S: Likewise.
49832 * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
49833 * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
49834 * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
49835 * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
49836 * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
49837 * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
49838 * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
49839 * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
49840 * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
49841 * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
49842 * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
49843 * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
49844 * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
49845
a1267ba1
AZ
498462011-11-18 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
49847
49848 * math/libm-test.inc: Added more nearbyint tests.
49849 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
49850 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
49851 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
49852 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
49853
ad8ac1bd
RL
498542011-11-21 Ross Lagerwall <rosslagerwall@gmail.com>
49855
49856 * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
49857 FD_CLOEXEC.
49858
1d3e4b61
UD
498592011-11-14 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49860
49861 * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
49862 Add wcscpy-ssse3 wcscpy-c.
49863 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
49864 * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
49865 * sysdeps/x86_64/multiarch/wcscpy.S: New file.
49866 * sysdeps/x86_64/wcschr.S: New file.
49867 * sysdeps/x86_64/wcsrchr.S: New file.
49868 * string/test-strcmp.c: Remove checking of wcscmp function for
49869 wrong alignments.
49870 * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
49871 (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
49872 wcsrchr-sse2 wcsrchr-c.
49873 * sysdeps/i386/i686/multiarch/wcschr.S: New file.
49874 * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
49875 * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
49876 * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
49877 * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
49878 * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
49879 * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
49880 * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
49881 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
49882 * wcsmbc/wcschr.c (WCSCHR): New macro.
49883
5b330a2d
UD
498842011-11-17 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49885
49886 * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
49887 * wcsmbs/test-wcsrchr.c: New file.
49888 * string/test-strrchr.c: Add wcsrchr support.
49889 (WIDE): New macro.
49890 * wcsmbs/test-wcscpy.c: New file.
49891 * string/test-strcpy.c: Add wcscpy support.
49892 (WIDE): New macro.
26428b7c 49893
f039c043
UD
498942011-12-10 Ulrich Drepper <drepper@gmail.com>
49895
49896 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
49897 the inner loop.
49898
850fb039
AS
498992011-12-06 Andreas Schwab <schwab@linux-m68k.org>
49900
49901 [BZ #13472]
49902 * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
49903
4efbd5cb
UD
499042011-12-04 Ulrich Drepper <drepper@gmail.com>
49905
52ff5dd0 49906 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
52ad36a2 49907 Minor optimizations.
52ff5dd0 49908
4efbd5cb
UD
49909 * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
49910 * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
49911 * sunrpc/clnt_udp.c (clntudp_call): Likewise.
49912
8a426e12
UD
499132011-12-03 Ulrich Drepper <drepper@gmail.com>
49914
aff2453d
UD
49915 * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
49916 IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
49917 IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
49918 for gcc to avoid warnings.
49919 * inet/Makefile (tests): Add tst-checks.
49920 * inet/tst-checks.c: New file.
49921
49922 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
49923 warning.
49924
49925 * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
49926 __wmemcmp_sse2.
49927
49928 * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
49929 * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
49930
8a426e12
UD
49931 * malloc/mcheck.h: Fix use of incorrect encoding in comment.
49932
9bea3473
UD
499332011-12-02 Ulrich Drepper <drepper@gmail.com>
49934
3a965496
UD
49935 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
49936 problem.
49937
9bea3473
UD
49938 * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
49939
f101631b
UD
499402011-11-29 Joseph Myers <joseph@codesourcery.com>
49941
49942 * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
49943 conditional on GCC version.
49944 (__arch_compare_and_exchange_val_8_acq)
49945 (__arch_compare_and_exchange_val_16_acq)
49946 (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
49947 (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
49948 (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
49949
a98275aa
UD
499502011-12-02 Joseph Myers <joseph@codesourcery.com>
49951
49952 * sysdeps/sh/backtrace.c: New file.
49953
d4cc29a2
AS
499542011-12-02 Andreas Schwab <schwab@redhat.com>
49955
49956 * misc/bits/select2.h (__FD_ELT): Mark as extension. Add
49957 parenthesis.
49958
6257af2d
AS
499592011-12-01 Andreas Schwab <schwab@redhat.com>
49960
49961 * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
49962 falling back to utime.
49963
b5f44c1a
AS
499642011-11-30 Andreas Schwab <schwab@redhat.com>
49965
49966 * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
49967 expectations for float.
49968
f3a6cc0a
AS
499692011-11-29 Andreas Schwab <schwab@redhat.com>
49970
49971 * locale/weight.h (findidx): Add parameter len.
49972 * locale/weightwc.h (findidx): Likewise.
49973 * posix/fnmatch_loop.c (FCT): Adjust caller.
49974 * posix/regcomp.c (build_equiv_class): Likewise.
49975 * posix/regex_internal.h (re_string_elem_size_at): Likewise.
49976 * posix/regexec.c (check_node_accept_bytes): Likewise.
49977 * string/strcoll_l.c (STRCOLL): Likewise.
49978 * string/strxfrm_l.c (STRXFRM): Likewise.
49979
9d65ea3a
UD
499802011-11-17 Ulrich Drepper <drepper@gmail.com>
49981
49982 * Makefile.in: Remove CVSOPT handling.
49983 * configure.in: Remove use of AC_REVISION.
49984 * iconvdata/Makefile (distribute): No need to filter out CVS.
49985 * scripts/list-sources.sh: Remove CVS, subversion and monotone
49986 handling.
49987
5583a086
AS
499882011-11-16 Andreas Schwab <schwab@redhat.com>
49989
49990 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
49991 [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
49992 [USE_AS_STRNCASECMP_L]: Likewise.
49993 (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
49994 NO_TLS_DIRECT_SEG_REFS.
49995 * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
49996 Fix argument offsets for non-PIC.
49997 [USE_AS_STRNCASECMP_L]: Likewise.
49998 (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
49999 NO_TLS_DIRECT_SEG_REFS.
50000
d62a8200
UD
500012011-11-15 Ulrich Drepper <drepper@gmail.com>
50002
9d65ea3a 50003 * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
d62a8200
UD
50004 O_CLOEXEC.
50005 * locale/loadlocale.c (_nl_load_locale): Likewise.
50006
09f93bd3
AS
500072011-11-15 Andreas Schwab <schwab@redhat.com>
50008
446514f9
AS
50009 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
50010 [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
50011 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
50012 (SYSCALL_GETTIME): Set errno on error.
50013
09f93bd3
AS
50014 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
50015 count references to noai6ai_cached.
50016
312be3f9
UD
500172011-11-15 Ulrich Drepper <drepper@gmail.com>
50018
50019 * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
50020
50021 * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
50022 FD_CLOEXEC for /proc/self/maps.
50023
50024 * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
50025 FD_CLOEXEC for /proc/meminfo.
50026
50027 * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
50028 gai.conf.
50029
50030 * resolv/res_query.c (res_hostalias): Don't allow cancellation and set
50031 FD_CLOEXEC for given file.
50032
50033 * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
50034
50035 * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
50036 FD_CLOEXEC for /etc/hosts.
50037 (_gethtent): Likewise.
50038
50039 * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
50040
50041 * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
50042 cancellation and set FD_CLOEXEC for /etc/netgroup.
50043
50044 * nss/nss_files/files-key.c (search): Don't allow cancellation when
50045 reading /etc/publickey.
50046
50047 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
50048 allow cancellation when reading /etc/group.
50049
50050 * nss/nss_files/files-alias.c (internal_setent): Don't allow
50051 cancellation.
50052 (get_next_alias): Likewise for included file. Also set FD_CLOEXEC.
50053
50054 * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
50055 when using data file.
50056
50057 * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
50058
50059 * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
50060 (write_nis_obj): Use "c" and "e" in fopen.
50061
50062 * misc/mntent_r.c (__setmntent): Also append e to fopen format.
50063
50064 * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
50065
50066 * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
50067
50068 * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
50069
50070 * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
50071 locale.alias.
50072
50073 * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
50074
50075 * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
50076
50077 * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
50078
50079 * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
50080 file parsing and set FD_CLOEXEC.
50081
82af0fa8
UD
500822011-11-14 Ulrich Drepper <drepper@gmail.com>
50083
50084 * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
50085
a5fb313c
AS
500862011-11-14 Andreas Schwab <schwab@redhat.com>
50087
50088 * malloc/arena.c (arena_get2): Don't call reused_arena when
50089 _int_new_arena failed.
50090
6abf3465
UD
500912011-11-14 Ulrich Drepper <drepper@gmail.com>
50092
50093 * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
50094 (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
50095 * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
50096 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
50097 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
50098 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
50099 to compile strcasecmp and strncasecmp.
50100 * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
50101 * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
50102
50103 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
50104
76e3966e
UD
501052011-11-13 Ulrich Drepper <drepper@gmail.com>
50106
50107 * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
50108 locale-defines.sym to gen-as-const-headers.
50109 (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
50110 strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
50111 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
50112 to compile strcasecmp and strncasecmp.
50113 * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
50114 strcasecmp_l and strncasecmp_l.
50115 * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
50116 * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
50117 * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
50118 * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
50119 * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
50120 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
50121 * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
50122 * sysdeps/i386/i686/multiarch/strncase.S: New file.
50123 * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
50124 * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
50125 * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
50126
ab26144e
UD
501272011-11-12 Ulrich Drepper <drepper@gmail.com>
50128
7edb22ef
UD
50129 * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
50130 result of SYSDEP_GETTIME_CPU to retval.
50131 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
50132 parameter list to macro. Remove trailing semicolon. Adjust users.
50133
9694fc44
UD
50134 * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
50135 variable.
50136
8ad89ef8
UD
50137 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
50138 mantissa words.
50139 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
50140
0c822ef9
UD
50141 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
50142 from unused variable.
50143
874e0564
UD
50144 * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
50145 DWARF definitions.
50146 * sysdeps/generic/dwarf2.h: Don't define enums when using the file
50147 for assembling.
50148
3a2edc79
UD
50149 * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
50150 over namespaces.
50151
f3c2577f
UD
50152 * sunrpc/rpc_prot.c (rejected): Fix case value.
50153
294ce126
UD
50154 * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
50155 unsigned long long int to avoid warnings in shift.
50156
5e2b63c6
UD
50157 * posix/regex_internal.c (re_string_reconstruct): Actually use result
50158 of use of trans.
50159 * posix/regex_internal.h (re_string_wchar_at): Remove temporary
50160 variable tmp.
50161
e7f4b08e
UD
50162 * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
50163 * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
50164 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
50165
ab26144e
UD
50166 * nis/nis_table.c (nis_list): Use variable of correct type for
50167 result of __follow_path call.
50168
8a6d5255
AZ
501692011-11-07 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
50170
50171 * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
50172 of math functions ceil, trunc, floor, round, and sqrt, when
50173 avaliable on the platform.
50174 * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
50175 name clash.
50176 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
50177 * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
50178 * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
50179
aaddc98c
MP
501802011-10-30 Marek Polacek <mpolacek@redhat.com>
50181
50182 * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
50183 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
50184
95b7042b
RM
501852011-11-11 Roland McGrath <roland@hack.frob.com>
50186
50187 * include/unistd.h: Fix __readlink return type.
50188 Reported by Chris Metcalf <cmetcalf@tilera.com>.
50189
57769839
UD
501902011-11-11 Ulrich Drepper <drepper@gmail.com>
50191
50192 * stdlib/ucontext.h: Undo last change for makecontext.
50193
edc5984d
AS
501942011-11-11 Andreas Schwab <schwab@redhat.com>
50195
98591e58
AS
50196 * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
50197
edc5984d
AS
50198 * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
50199 * setjmp/setjmp.h: Mark functions as non-leaf.
50200 * setjmp/bits/setjmp2.h: Likewise.
50201 * stdlib/ucontext.h: Likewise.
50202
77cdc054
AS
502032011-11-10 Andreas Schwab <schwab@redhat.com>
50204
50205 * malloc/arena.c (_int_new_arena): Don't increment narenas.
50206 (reused_arena): Don't check arena limit.
50207 (arena_get2): Atomically check arena limit.
50208
fe72eebd
UD
502092011-11-08 Ulrich Drepper <drepper@gmail.com>
50210
5f078c32
UD
50211 * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
50212 * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
50213
fe72eebd
UD
50214 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
50215 instructions.
50216
ae1bc2fa
AS
502172011-11-07 Andreas Schwab <schwab@redhat.com>
50218
7583a88d
AS
50219 * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
50220 handler when locking.
50221
ae1bc2fa
AS
50222 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
50223 Fix size of allocated buffer.
50224
10fb0bfa
AS
502252011-11-04 Andreas Schwab <schwab@redhat.com>
50226
998832a4
AS
50227 [BZ #10103]
50228 * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
50229 declarations for long double functions.
50230 * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
50231
10fb0bfa
AS
50232 * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
50233
3d7ba52b
AS
502342011-11-03 Andreas Schwab <schwab@redhat.com>
50235
a9ae54a1
AS
50236 * nscd/nscd.c (main): Don't start AVC thread until credentials are
50237 installed.
50238
3d7ba52b
AS
50239 * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
50240 is disabled.
50241
bc8db248
ST
502422011-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
50243
50244 * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
50245
45b96dd6
AS
502462011-11-01 Andreas Schwab <schwab@linux-m68k.org>
50247
647776f6
AS
50248 * include/alloca.h (stackinfo_alloca_round): Define.
50249 (extend_alloca): Use it.
50250 [_STACK_GROWS_UP]: Correct check for adjacent allocation.
50251 * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
50252 here.
50253
d91a8b93
AS
50254 * scripts/check-local-headers.sh: Ignore libaudit.h.
50255
45b96dd6
AS
50256 * nscd/Makefile (extra-objs): Make recursively expanded.
50257
432d41ce
UD
502582011-11-01 Ulrich Drepper <drepper@gmail.com>
50259
34372fc6
UD
50260 * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
50261 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
50262
fadb59f8
UD
50263 * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
50264 * posix/tst-rfc3484-2.c: Likewise.
50265 * posix/tst-rfc3484-3.c: Likewise.
50266
78239589
UD
50267 * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
50268 process_vm_writev.
50269 * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
50270 process_vm_writev.
50271 * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
50272 process_vm_writev from libc using GLIBC_2.15 version.
50273
432d41ce
UD
50274 * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
50275
02f9c6cf
PP
502762011-10-31 Paul Pluzhnikov <ppluzhnikov@google.com>
50277
50278 * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
50279 stack usage.
50280
3a2c0242
UD
502812011-10-31 Ulrich Drepper <drepper@gmail.com>
50282
f4ec4833
UD
50283 [BZ #13367]
50284 * nss/getent.c (initgroups_keys): Show error message in case no group
50285 names are given.
50286
3a2c0242
UD
50287 * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
50288 * inet/check_pf.c: Provide dummy versions of __free_in6ai and
50289 __bump_nl_timestamp.
50290 * nscd/connections (nscd_init): When host database is served open
50291 netlink socket and request notification about configuration changes.
50292 (main_loop_poll): Track netlink file descriptor and bump timestamp
50293 in case data becomes available.
50294 (main_loop_epoll): Likewise.
50295 * nscd/nscd-client.h (DB_VERSION): Bump to 2.
50296 (database_pers_head): Add extra_data fileds.
50297 Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
50298 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
50299 * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
50300 Adjust caller.
50301 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
50302 in6ai data, call __free_in6ai.
50303 * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
50304 Add -DHAVE_NETLINK.
50305 * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite. Cache the
50306 interface information. Reuse previous data if netlink timestamp
50307 is not changed.
50308 (__bump_nl_timestamp): New function.
50309 (__free_in6ai): New function.
50310
636064eb
UD
503112011-10-30 Ulrich Drepper <drepper@gmail.com>
50312
50313 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
50314 close_not_cancel_no_status here.
50315 (__check_pf): Reorganize code a bit to not call close twice if OOM.
50316
9beb2334
UD
503172011-10-29 Ulrich Drepper <drepper@gmail.com>
50318
6ef76f3b
UD
50319 [BZ #13276]
50320 * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
50321 return value.
50322
0ffc4f3e 50323 * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
9beb2334
UD
50324 * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
50325 asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
50326
cb95113e
UD
503272011-07-03 Andreas Jaeger <aj@suse.de>
50328
50329 [BZ #10709]
50330 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
50331 of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
50332 * math/libm-test.inc (sin_test): Add test case.
50333
a1b560ff
UD
503342011-10-29 Ulrich Drepper <drepper@gmail.com>
50335
c9aaface
UD
50336 [BZ #13337]
50337 * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
50338 Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
50339
d272e7f1
UD
50340 * elf/chroot_canon.c (chroot_canon): Cleanups.
50341
1bc33071
UD
50342 * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
50343
1760874d
TJ
50344 [BZ #13335]
50345 * elf/chroot_canon.c (chroot_canon): Fix readlink call.
50346 Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
50347
51d91b18
UD
50348 * string/test-strchr.c: Make usable for strchrnul testing.
50349 * string/test-strchrnul.c: New file.
50350 * string/Makefile (strop-tests): Add strchrnul.
50351
a1b560ff 50352 * po/it.po: Update from translation team.
b611fb81 50353 * po/es.po: Likewise.
a1b560ff 50354
a5b81e1f
UD
503552011-10-28 Ulrich Drepper <drepper@gmail.com>
50356
fd52bc6d
UD
50357 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
50358 the three constants needed as parameters. Drop the others.
50359 (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
50360 __m128i_strloadu_tolower.
52e4b9eb
UD
50361 Create and initialize variable zero and use it in all the places
50362 where _mm_setzero_si128 was used.
fd52bc6d 50363
a5b81e1f
UD
50364 * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
50365 doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
50366 mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
50367 * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
50368 anymore.
50369 * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
50370 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
50371 * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
50372 __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
50373 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
50374 __mpranred, __mptan.
50375 * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
50376 * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
50377 * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
50378 * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
50379 * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
50380 * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
50381 * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
50382 * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
50383 * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
50384
b4343346
AS
503852011-10-28 Andreas Schwab <schwab@redhat.com>
50386
0c92d8a8
AS
50387 * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
50388 redefine if SHARED.
50389 * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
50390
b4343346
AS
50391 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
50392 wide char related routines to wcsmbs subdir.
50393
3871f58f
AS
503942011-10-27 Andreas Schwab <schwab@redhat.com>
50395
50396 [BZ #13344]
50397 * misc/sys/cdefs.h (__THROWNL): Define.
50398 * posix/unistd.h: Use __THREADNL instead of __THREAD
50399 for memory synchronization functions.
50400
94d44d9f
RM
504012011-10-26 Roland McGrath <roland@hack.frob.com>
50402
21b64b15 50403 [BZ #13349]
94d44d9f
RM
50404 * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
50405 doesn't exist.
50406 * manual/stdio.texi (Obstack Streams): Node removed.
50407
f6ce9294
AS
504082011-10-26 Andreas Schwab <schwab@redhat.com>
50409
80479147
AS
50410 * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
50411 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
50412 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
50413
f6ce9294
AS
50414 * math/math_private.h (math_force_eval): Allow non-addressable
50415 arguments.
50416 * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
50417
618280a1
UD
504182011-10-25 Ulrich Drepper <drepper@gmail.com>
50419
e0016b11
UD
50420 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
50421 file is not needed.
50422
50423 * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
50424 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
50425 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
50426 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
50427 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
50428 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
50429 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
50430 * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
50431 Add AVX variants.
50432 * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
50433 * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
50434 * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
50435 * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
50436 * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
50437 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
50438 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
50439 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
50440 * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
50441 * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
50442 * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
50443 * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
50444 * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
50445 * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
50446 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
50447 * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
50448 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
50449 * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
50450 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
50451
50452 * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
50453 all the time. Define bit_AVX. Define HAS_* macros using bit_* macros.
50454
618280a1
UD
50455 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
50456 place. Use VEX encoding when compiling for AVX.
50457
37822576
AS
504582011-10-25 Andreas Schwab <schwab@redhat.com>
50459
1f1e1947
AS
50460 * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
50461 * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
50462
37822576
AS
50463 * string/test-strchr.c (do_test): Don't generate NUL bytes.
50464
31ea014d
UD
504652011-10-25 Ulrich Drepper <drepper@gmail.com>
50466
d7826aa1 50467 * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
ffb124cc 50468 useless if() expression.
d7826aa1
UD
50469 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
50470 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
50471 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
50472 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
50473 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
50474 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
50475 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
50476 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
50477 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
50478 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
50479 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
50480 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
50481 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
50482 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
50483 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
50484 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
50485 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
50486 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
50487 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
50488
31ea014d
UD
50489 * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
50490
16437fec
AS
504912011-10-25 Andreas Schwab <schwab@redhat.com>
50492
50493 * elf/dl-deps.c (_dl_map_object_deps): Remove always true
50494 condition.
50495 * elf/dl-fini.c (_dl_sort_fini): Likewise.
50496
31d3cc00
UD
504972011-10-25 Ulrich Drepper <drepper@gmail.com>
50498
50499 * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
50500 .text section. Avoid duplicate constants.
50501 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
50502 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50503 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
50504 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50505 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
50506 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50507 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50508 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50509 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
50510 * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
50511 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
50512 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
50513 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
50514 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
50515 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
50516 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
50517 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
50518 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
50519 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
50520 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50521 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
50522 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
50523 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
50524 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
50525 * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
50526 * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
50527 * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
50528 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
50529 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
50530 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
50531 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
50532 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
50533 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
50534 * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
50535 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
50536 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
50537 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
50538 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
50539 * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
50540 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
50541 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
50542 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
50543 * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
50544 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
50545 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
50546
58985aa9
UD
505472011-10-24 Ulrich Drepper <drepper@gmail.com>
50548
202c9deb
UD
50549 * sysdeps/x86_64/dla.h: Move to ...
50550 * sysdeps/x86_64/fpu/dla.h: ...here.
50551 (DLA_FMS): Some compilers fail to inline __builtin_fma in some
50552 situations. Use __builtin_fma only for gcc 4.6 and up.
a0cf1edd 50553
af968f62
UD
50554 * config.make.in: Add have-mfma4 entry.
50555 * configure.in: Substitute libc_cv_cc_fma4.
50556 * math/Makefile (dbl-only-routines): Add sincostab.
50557 * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
50558 Use __sincostab not sincos.
50559 * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
50560 name is a macro.
50561 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
50562 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50563 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50564 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise. Define singArctan2
50565 using __copysign.
50566 * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr. Don't define
50567 __cr and __cpymn. Define __cpy unless NO___CPY is defined. Define
50568 norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
50569 * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
50570 and __inv.
50571 * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
50572 * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
50573 __copysign.
50574 * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos. Don't
50575 define aliases when function name is a macro.
50576 * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
50577 sysdeps/ieee754/dbl-64/sincos.tbl.
50578 * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
50579 fma4-enabled routines.
50580 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
50581 * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
50582 * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
50583 * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
50584 * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
50585 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
50586 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
50587 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
50588 * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
50589 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
50590 * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
50591 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
50592 * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
50593 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
50594 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
50595 * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
50596 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
50597 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
50598 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
50599 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
50600 * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
50601 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
50602 * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
50603 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
50604 * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
50605 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
50606 * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
50607 * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
50608 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
50609 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
50610
58985aa9
UD
50611 * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
50612 rename.
50613 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50614 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50615 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50616 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50617 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50618 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50619 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50620 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50621
a201fbcf
AS
506222011-10-24 Andreas Schwab <schwab@redhat.com>
50623
50624 * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
50625
fc2ee42a
LD
506262011-10-23 Ulrich Drepper <drepper@gmail.com>
50627
bb3129bd
UD
50628 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
50629
0275fff8
UD
50630 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
50631 prediction.
50632 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
50633
2fa2ae85
UD
50634 * string/strnlen.c: Don't define STRNLEN, reverse logic.
50635 Remove unused variable magic_bits.
50636 * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
50637
fc2ee42a
LD
50638 * string/strnlen.c: Define and use STRNLEN macro.
50639 * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
50640 Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
50641 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
50642 * wcsmbs/wcslen.c: Define and use WCSLEN.
50643 * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
50644 * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
50645 * sysdeps/i386/i686/multiarch/strnlen.S: New file.
50646 * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
50647 * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
50648 * sysdeps/i386/i686/multiarch/wcslen.S: New file.
50649 Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
50650
ce7dd29f
LD
506512011-10-20 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
50652
50653 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
50654 strnlen-sse2-no-bsf.
50655 Rename strlen-no-bsf to strlen-sse2-no-bsf.
50656 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
50657 * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
50658 Add strnlen support.
50659 (USE_AS_STRNLEN): New macro.
50660 * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
50661 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
50662 Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
50663 * sysdeps/x86_64/wcslen.S: New file.
50664
979c70a3
MZ
506652011-10-20 Michael Zolotukhin <michael.v.zolotukhin@gmail.com>
50666
50667 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
50668 XMM-moves are used for copying on small sizes.
50669
2d09f82f
LD
506702011-10-19 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
50671
50672 * wcsmbs/Makefile (strop-tests): Add wcschr.
50673 * wcsmbs/test-wcschr.c: New file.
50674 * string/test-strchr.c: Update.
50675 Add wcschr support.
50676 (WIDE): New macro.
50677
619fccca
LD
506782011-10-18 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
50679
2d09f82f 50680 * wcsmbs/Makefile (strop-tests): Add wcslen.
619fccca
LD
50681 * wcsmbs/test-wcslen.c: New file.
50682 * string/test-strlen.c: Update.
50683 Add wcslen support.
50684 (WIDE): New macro.
50685
09f699ea
UD
506862011-10-23 Ulrich Drepper <drepper@gmail.com>
50687
50688 * po/it.po: Update from translation team.
50689
95584d3b
LD
506902011-09-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
50691
50692 * sysdeps/x86_64/wcscmp.S: Update.
50693 Fix wrong comparison semantics.
50694 wcscmp shall use signed comparison not unsigned.
50695 Don't use substraction to avoid overflow bug.
50696 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
50697 * wcsmbc/wcscmp.c: Likewise.
50698 * string/test-strcmp.c: Likewise.
50699 Add new tests to check cases with negative values.
50700
c8b3296b
UD
507012011-10-23 Ulrich Drepper <drepper@gmail.com>
50702
50703 * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
50704 * sysdeps/x86_64/dla.h: ...here. New file.
50705 * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
50706 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50707 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50708 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50709 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50710 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
50711 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50712 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50713 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50714
246ad57a
AS
507152011-10-23 Andreas Schwab <schwab@linux-m68k.org>
50716
50717 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
50718 __ynl_finite aliases.
50719
a1a87169
UD
507202011-10-22 Ulrich Drepper <drepper@gmail.com>
50721
0d355eb7
UD
50722 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
50723
a1a87169
UD
50724 * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
50725 define DLA_FMA.
50726 [DLA_FMA] (EMULV): Use DLA_FMA.
50727 [DLA_FMA] (MUL12): Use EMULV.
50728 * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
50729 that are not needed.
50730 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
50731 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
50732 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
50733 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
50734 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
50735 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
50736 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
50737
ee2aafe0
AS
507382011-10-22 Andreas Schwab <schwab@linux-m68k.org>
50739
50740 * math/s_nan.c: Undef __nan.
50741 * math/s_nanf.c: Undef __nanf.
50742 * math/s_nanl.c: Undef __nanl.
50743 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
50744 "math_private.h".
50745
bc62c2fb
UD
507462011-10-22 Ulrich Drepper <drepper@gmail.com>
50747
77425c63
UD
50748 * math/s_catan.c: Add branch predictions.
50749 * math/s_catanf.c: Likewise.
50750 * math/s_catanh.c: Likewise.
50751 * math/s_catanhf.c: Likewise.
50752 * math/s_catanhl.c: Likewise.
50753 * math/s_catanl.c: Likewise.
50754 * math/s_cexp.c: Likewise.
50755 * math/s_cexpf.c: Likewise.
50756 * math/s_cexpl.c: Likewise.
50757 * math/s_clog.c: Likewise.
50758 * math/s_clog10.c: Likewise.
50759 * math/s_clog10f.c: Likewise.
50760 * math/s_clog10l.c: Likewise.
50761 * math/s_clogf.c: Likewise.
50762 * math/s_clogl.c: Likewise.
50763 * math/s_csqrt.c: Likewise.
50764 * math/s_csqrtf.c: Likewise.
50765 * math/s_csqrtl.c: Likewise.
50766 * math/s_ctanf.c: Likewise.
50767 * math/s_ctanh.c: Likewise.
50768 * math/s_ctanhf.c: Likewise.
50769 * math/s_ctanhl.c: Likewise.
50770 * math/s_ctanl.c: Likewise.
50771
bc62c2fb
UD
50772 * math/math_private.h: Define __nan, __nanf, __nanl.
50773 * math/s_cacosh.c: Include <math_private.h>.
50774 * math/s_cacoshl.c: Likewise.
50775 * math/s_casinh.c: Likewise.
50776 * math/s_casinhf.c: Likewise.
50777 * math/s_casinhl.c: Likewise.
50778 * math/s_ccos.c: Rely entire on ccosh.
50779 * math/s_ccosf.c: Rely entire on ccoshf.
50780 * math/s_ccosl.c: Rely entirely on ccoshl.
50781 * math/s_ccosh.c: Add branch predicion helpers. Add branch prediction.
50782 Remove tests for FE_INVALID.
50783 * math/s_ccoshf.c: Likewise.
50784 * math/s_ccoshl.c: Likewise.
50785 * math/s_csin.c: Likewise.
50786 * math/s_csinf.c: Likewise.
50787 * math/s_csinh.c Likewise.
50788 * math/s_csinhf.c: Likewise.
50789 * math/s_csinhl.c: Likewise.
50790 * math/s_csinl.c: Likewise.
50791 * math/s_ctan.c: Likewise.
50792 * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
50793 * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
50794 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
50795
8ec250a4
UD
507962011-10-21 Ulrich Drepper <drepper@gmail.com>
50797
c196fed8
UD
50798 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
50799 compilation problems.
50800
8ec250a4
UD
50801 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
50802 __builtin_expect.
50803
8d4f46c6
UD
508042011-10-20 Ulrich Drepper <drepper@gmail.com>
50805
ed72b654
UD
50806 * sysdeps/i386/configure.in: Test for -mfma4 option.
50807 * config.h.in: Add HAVE_FMA4_SUPPORT entry.
50808 * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
50809 COMMON_CPUID_INDEX_80000001.
50810 * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
50811 * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
50812 use it if FMA3 is not supported.
50813 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
50814
8d4f46c6
UD
50815 * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
50816 * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
50817
d45c60c2
AS
508182011-10-20 Andreas Schwab <schwab@redhat.com>
50819
50820 [BZ #12892]
50821 * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
50822 it would create a cycle with a link time dependency.
50823
d9a4d2ab
UD
508242011-10-19 Ulrich Drepper <drepper@gmail.com>
50825
855d1560
UD
50826 * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
50827 instruction.
50828 * string/Makefile (strop-tests): Add rawmemchr.
50829 * string/test-rawmemchr.c: New file.
50830
d9a4d2ab
UD
50831 * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
50832 * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file. Split out from...
50833 * sysdeps/x86_64/multiarch/strcmp.S: ...here. Include strcmp-sse42.S
50834 when compiling str{,n}casecmp and when AVX is available. Hook up
50835 new optimized code in initializers.
50836
8f3b1ffe
AS
508372011-10-19 Andreas Schwab <schwab@redhat.com>
50838
50839 * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
50840 __feraiseexcept instead of feraiseexcept.
50841
d38f1dba
UD
508422011-10-18 Ulrich Drepper <drepper@gmail.com>
50843
d9a8d0ab
UD
50844 * math/math_private.h: Define defaults for libc_fetestexcept and
50845 libc_feupdateenv.
50846 * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
50847 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
50848 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
50849 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
50850 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
50851 * sysdeps/x86_64/fpu/math_private.h: Define special versions of
50852 libc_fetestexcept and libc_feupdateenv.
50853
4855e3dd
UD
50854 * math/math_private.h: Define defaults for libc_feholdexcept_setround,
50855 libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
50856 * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
50857 * sysdeps/x86_64/fpu/math_private.h: Define special version of
50858 libc_feholdexcept_setround.
50859
581d30e3
UD
50860 * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
50861 Add s_nearbyint-c and s_nearbyintf-c.
50862 * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
50863 nearbyintf inlines.
50864 * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
50865 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
50866 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
50867 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
50868
d38f1dba
UD
50869 * math/math_private.h: Define defaults for libc_fegetround,
50870 libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
50871 libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
50872 libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
50873 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
50874 libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
50875 standard functions.
50876 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
50877 Remove comments and hacks for old compiler versions.
50878 * sysdeps/x86_64/fpu/math_private.h: Define special versions of
50879 libc_fegetround, libc_fesetround, libc_feholdexcept, and
50880 libc_feholdexceptl.
50881
caa6c9d8
AS
508822011-10-18 Andreas Schwab <schwab@redhat.com>
50883
50884 * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
83c7615c
AS
50885 (__feraiseexcept_renamed): Add __NTH.
50886 (feraiseexcept): Add __NTH. Rename local variables to fix
caa6c9d8
AS
50887 namespace violations.
50888
97c066e6
UD
508892011-10-17 Ulrich Drepper <drepper@gmail.com>
50890
99ce7b04
UD
50891 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
50892
1004d182
UD
50893 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
50894
228a984d
UD
50895 * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
50896 recently added interfaces.
50897 * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
50898
c8553a6a
UD
50899 * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
50900 about macro parameter expansion.
50901
ed22dcf6
UD
50902 * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
50903 __NO_MATH_INLINES is defined. Cleanups.
50904
50905 * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
50906 and __floorf is target has SSE4.1.
50907 * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
50908 * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
50909 * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
50910 * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
50911
b171c137
UD
50912 * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
50913 name.
50914 (floorf): Likewise.
50915
97c066e6
UD
50916 * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
50917
629f62ef
AS
509182011-10-17 Andreas Schwab <schwab@redhat.com>
50919
49a43d80
AS
50920 * misc/sys/cdefs.h: Fix last change.
50921
629f62ef
AS
50922 * grp/initgroups.c (internal_getgrouplist): Fix initgroups
50923 database lookup.
50924
e453f6cd
UD
509252011-10-16 Ulrich Drepper <drepper@gmail.com>
50926
aa78043a
UD
50927 * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
50928
ad0f5cad
UD
50929 * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
50930 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
50931 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
50932 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
50933 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
50934 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
50935 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
50936 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
50937 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
50938 * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
50939 * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
50940 * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
50941 * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
50942 * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
50943 * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
50944 * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
50945 * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
50946 * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
50947 * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
50948 * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
50949 * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
50950 * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
50951
50952 * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
50953 ceil, ceilf, floor, floorf.
50954
50955 * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
50956 Perform IRELATIVE relocations last.
50957
e453f6cd
UD
50958 * elf/do-rel.h: Add another parameter nrelative, replacing the
50959 local variable with the same name. Change name of the function
50960 to end in Rel or Rela (uppercase).
50961 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
50962 nrelative to ranges. Only nonzero for DT_REL/DT_RELA. Pass to the
50963 elf_dynamic_do_##reloc function.
50964
fd5bdc09
UD
509652011-10-15 Ulrich Drepper <drepper@gmail.com>
50966
79b195b5
UD
50967 * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
50968 is sufficient, at least on modern CPUs.
50969
d4a28569
UD
50970 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
50971
b61099b5
UD
50972 * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
50973 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
50974
bcf01e6d
UD
50975 * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
50976 __expl_finite.
50977 * math/bits/math-finite.h: Add entries for exp.
50978 * math/e_expl.c: Add __*_finite alias.
50979 * sysdeps/i386/fpu/e_exp.S: Likewise.
50980 * sysdeps/i386/fpu/e_expf.S: Likewise.
50981 * sysdeps/i386/fpu/e_expl.c: Likewise.
50982 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
50983 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
50984 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
50985 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
50986 * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
50987 * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
50988 * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
50989
ba1a0d59
UD
50990 * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
50991 is sufficient, at least on modern CPUs.
50992
fd5bdc09
UD
50993 * ctype/ctype-info.c (__ctype_init): Define.
50994 * include/ctype.h (__ctype_init): Declare.
50995 (__ctype_b_loc): The variable is always initialized.
50996 (__ctype_toupper_loc): Likewise.
50997 (__ctype_tolower_loc): Likewise.
50998 * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
50999 * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
51000
7872cfb0
AS
510012011-10-15 Andreas Schwab <schwab@linux-m68k.org>
51002
b468825a
AS
51003 * wcsmbs/wmemcmp.c (WMEMCMP): Define.
51004
7872cfb0
AS
51005 * configure.in: Also look in $cxxmachine/include for C++ system
51006 headers.
51007
be13f7bf
LD
510082011-09-27 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
51009
51010 * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
51011 memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
51012 * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
51013 * sysdeps/x86_64/multiarch/memcmp.S: Update. Add __memcmp_ssse3.
51014 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
51015 (USE_AS_WMEMCMP): New macro.
51016 Fixing indents.
51017 * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
51018 * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
51019 * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
51020 * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
51021 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51022 wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
51023 * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
51024 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
51025 * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
51026 * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
51027 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
51028 (USE_AS_WMEMCMP): New macro.
51029 * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
51030 * sysdeps/string/test-memcmp.c: Update.
51031 Fix simple_wmemcmp.
51032 Add new tests.
51033 * wcsmbs/wmemcmp.c: Update.
51034 (WMEMCMP): New macro.
51035 Fix overflow bug.
51036
556a2007
AJ
510372011-10-12 Andreas Jaeger <aj@suse.de>
51038
51039 [BZ #13268]
51040 * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
51041
538faaa7
UD
510422011-10-15 Ulrich Drepper <drepper@gmail.com>
51043
ab6737ff
UD
51044 * libio/iofwide.c (do_length): Avoid warning.
51045
538faaa7
UD
51046 * ctype/ctype.h (__isctype_f): Add missing __THROW.
51047
396a21b1
UD
510482011-10-14 Ulrich Drepper <drepper@gmail.com>
51049
cdf2901f
UD
51050 * elf/pldd-xx.c (find_maps): Remove leftover debug message.
51051
38ad40ce
UD
51052 * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
51053 * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
51054 * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
51055 * sysdeps/i386/i686/fpu/e_log.S: New file.
51056 * sysdeps/i386/i686/fpu/e_logf.S: New file.
51057 * sysdeps/i386/i686/fpu/e_logl.S: New file.
51058
396a21b1
UD
51059 * ctype/ctype.h: Add support for inlined isXXX functions when
51060 compiling C++ code.
51061
6b1f68c9
AS
510622011-10-14 Andreas Schwab <schwab@redhat.com>
51063
349290c0
AS
51064 * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
51065
6b1f68c9
AS
51066 * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
51067
f2282d42
RM
510682011-10-13 Roland McGrath <roland@hack.frob.com>
51069
51070 [BZ #13291]
51071 * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
51072
5298ffa8
AS
510732011-10-13 Andreas Schwab <schwab@redhat.com>
51074
714fad23
AS
51075 * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
51076 * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
51077 feraiseexcept.
51078
81dcc7fb
AS
51079 * sysdeps/x86_64/memrchr.S: Check for zero size.
51080
5298ffa8
AS
51081 * string/stratcliff.c: Add memrchr tests.
51082
951fbcec
LD
510832011-10-12 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
51084
51085 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51086 memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
51087 rawmemchr-sse2 rawmemchr-sse2-bsf.
51088 * sysdeps/i386/i686/multiarch/memchr.S: New file.
51089 * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
51090 * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
51091 * sysdeps/i386/i686/multiarch/memrchr.S: New file.
51092 * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
51093 * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
51094 * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
51095 * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
51096 * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
51097 * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
51098 * string/memrchr.c (MEMRCHR): New macro.
51099
0ac5ae23
UD
511002011-10-12 Ulrich Drepper <drepper@gmail.com>
51101
51102 Add integration with gcc's -ffinite-math-only and optimize wrapper
51103 functions in libm.
51104 * Versions.def: Define GLIBC_2.15 version for libm.
51105 * math/Makefile (headers): Add bits/math-finite.h.
51106 * math/bits/math-finite.h: New file.
51107 * sysdeps/ia64/fpu/bits/math-finite.h: New file.
51108 * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
51109 * math/e_acoshl.c: Add __*_finite alias.
51110 * math/e_acosl.c: Likewise.
51111 * math/e_asinl.c: Likewise.
51112 * math/e_atan2l.c: Likewise.
51113 * math/e_atanhl.c: Likewise.
51114 * math/e_coshl.c: Likewise.
51115 * math/e_exp10.c: Likewise.
51116 * math/e_exp10f.c: Likewise.
51117 * math/e_exp10l.c: Likewise.
51118 * math/e_exp2l.c: Likewise.
51119 * math/e_fmodl.c: Likewise.
51120 * math/e_gammal_r.c: Likewise.
51121 * math/e_hypotl.c: Likewise.
51122 * math/e_j0l.c: Likewise.
51123 * math/e_j1l.c: Likewise.
51124 * math/e_jnl.c: Likewise.
51125 * math/e_lgammal_r.c: Likewise.
51126 * math/e_log10l.c: Likewise.
51127 * math/e_log2l.c: Likewise.
51128 * math/e_logl.c: Likewise.
51129 * math/e_powl.c: Likewise.
51130 * math/e_sinhl.c: Likewise.
51131 * math/e_sqrtl.c: Likewise.
51132 * math/e_scalb.c: Completely rewritten and optimized.
51133 * math/e_scalbf.c: Likewise.
51134 * math/e_scalbl.c: Likewise.
51135 * math/w_acos.c: Likewise.
51136 * math/w_acosf.c: Likewise.
51137 * math/w_acosl.c: Likewise.
51138 * math/w_acosh.c: Likewise.
51139 * math/w_acoshf.c: Likewise.
51140 * math/w_acoshl.c: Likewise.
51141 * math/w_asin.c: Likewise.
51142 * math/w_asinf.c: Likewise.
51143 * math/w_asinl.c: Likewise.
51144 * math/w_atan2.c: Likewise.
51145 * math/w_atan2f.c: Likewise.
51146 * math/w_atan2l.c: Likewise.
51147 * math/w_atanh.c: Likewise.
51148 * math/w_atanhf.c: Likewise.
51149 * math/w_atanhl.c: Likewise.
51150 * math/w_exp10.c: Likewise.
51151 * math/w_exp10f.c: Likewise.
51152 * math/w_exp10l.c: Likewise.
51153 * math/w_fmod.c: Likewise.
51154 * math/w_fmodf.c: Likewise.
51155 * math/w_fmodl.c: Likewise.
51156 * math/w_j0.c: Likewise.
51157 * math/w_j0f.c: Likewise.
51158 * math/w_j0l.c: Likewise.
51159 * math/w_j1.c: Likewise.
51160 * math/w_j1f.c: Likewise.
51161 * math/w_j1l.c: Likewise.
51162 * math/w_jn.c: Likewise.
51163 * math/w_jnf.c: Likewise.
51164 * math/w_log.c: Likewise.
51165 * math/w_logf.c: Likewise.
51166 * math/w_logl.c: Likewise.
51167 * math/w_log10.c: Likewise.
51168 * math/w_log10f.c: Likewise.
51169 * math/w_log10l.c: Likewise.
51170 * math/w_log2.c: Likewise.
51171 * math/w_log2f.c: Likewise.
51172 * math/w_log2l.c: Likewise.
51173 * math/w_pow.c: Likewise.
51174 * math/w_powf.c: Likewise.
51175 * math/w_powl.c: Likewise.
51176 * math/w_remainder.c: Likewise.
51177 * math/w_remainderf.c: Likewise.
51178 * math/w_remainderl.c: Likewise.
51179 * math/w_scalb.c: Likewise.
51180 * math/w_scalbf.c: Likewise.
51181 * math/w_scalbl.c: Likewise.
51182 * math/w_sqrt.c: Likewise.
51183 * math/w_sqrtf.c: Likewise.
51184 * math/w_sqrtl.c: Likewise.
51185 * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
51186 are declared. Include <bits/math-finite.h> if -ffinite-math-only is
51187 used.
51188 * math/math_private.h: Declare __kernel_standard_f.
51189 * math/w_cosh.c: Remove cruft and optimize a bit.
51190 * math/w_coshf.c: Likewise.
51191 * math/w_coshl.c: Likewise.
51192 * math/w_exp2.c: Likewise.
51193 * math/w_exp2f.c: Likewise.
51194 * math/w_exp2l.c: Likewise.
51195 * math/w_hypot.c: Likewise.
51196 * math/w_hypotf.c: Likewise.
51197 * math/w_hypotl.c: Likewise.
51198 * math/w_lgamma.c: Likewise.
51199 * math/w_lgamma_r.c: Likewise.
51200 * math/w_lgammaf.c: Likewise.
51201 * math/w_lgammaf_r.c: Likewise.
51202 * math/w_lgammal.c: Likewise.
51203 * math/w_lgammal_r.c: Likewise.
51204 * math/w_sinh.c: Likewise.
51205 * math/w_sinhf.c: Likewise.
51206 * math/w_sinhl.c: Likewise.
51207 * math/w_tgamma.c: Likewise.
51208 * math/w_tgammaf.c: Likewise.
51209 * math/w_tgammal.c: Likewise.
51210 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
51211 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
51212 * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
51213 Minor optimizations. Pretty printing. Remove cruft.
51214 * sysdeps/i386/fpu/e_acosf.S: Likewise.
51215 * sysdeps/i386/fpu/e_acosh.S: Likewise.
51216 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
51217 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
51218 * sysdeps/i386/fpu/e_acosl.c: Likewise.
51219 * sysdeps/i386/fpu/e_asin.S: Likewise.
51220 * sysdeps/i386/fpu/e_asinf.S: Likewise.
51221 * sysdeps/i386/fpu/e_atan2.S: Likewise.
51222 * sysdeps/i386/fpu/e_atan2f.S: Likewise.
51223 * sysdeps/i386/fpu/e_atan2l.c: Likewise.
51224 * sysdeps/i386/fpu/e_atanh.S: Likewise.
51225 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
51226 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
51227 * sysdeps/i386/fpu/e_exp10.S: Likewise.
51228 * sysdeps/i386/fpu/e_exp10f.S: Likewise.
51229 * sysdeps/i386/fpu/e_exp10l.S: Likewise.
51230 * sysdeps/i386/fpu/e_exp2.S: Likewise.
51231 * sysdeps/i386/fpu/e_exp2f.S: Likewise.
51232 * sysdeps/i386/fpu/e_exp2l.S: Likewise.
51233 * sysdeps/i386/fpu/e_fmod.S: Likewise.
51234 * sysdeps/i386/fpu/e_fmodf.S: Likewise.
51235 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
51236 * sysdeps/i386/fpu/e_hypot.S: Likewise.
51237 * sysdeps/i386/fpu/e_hypotf.S: Likewise.
51238 * sysdeps/i386/fpu/e_log.S: Likewise.
51239 * sysdeps/i386/fpu/e_log10.S: Likewise.
51240 * sysdeps/i386/fpu/e_log10f.S: Likewise.
51241 * sysdeps/i386/fpu/e_log10l.S: Likewise.
51242 * sysdeps/i386/fpu/e_log2.S: Likewise.
51243 * sysdeps/i386/fpu/e_log2f.S: Likewise.
51244 * sysdeps/i386/fpu/e_log2l.S: Likewise.
51245 * sysdeps/i386/fpu/e_logf.S: Likewise.
51246 * sysdeps/i386/fpu/e_logl.S: Likewise.
51247 * sysdeps/i386/fpu/e_pow.S: Likewise.
51248 * sysdeps/i386/fpu/e_powf.S: Likewise.
51249 * sysdeps/i386/fpu/e_powl.S: Likewise.
51250 * sysdeps/i386/fpu/e_remainder.S: Likewise.
51251 * sysdeps/i386/fpu/e_remainderf.S: Likewise.
51252 * sysdeps/i386/fpu/e_remainderl.S: Likewise.
51253 * sysdeps/i386/fpu/e_scalb.S: Likewise.
51254 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
51255 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
51256 * sysdeps/i386/fpu/e_sqrt.S: Likewise.
51257 * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
51258 * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
51259 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
51260 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
51261 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
51262 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
51263 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
51264 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
51265 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
51266 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
51267 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
51268 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
51269 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
51270 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
51271 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
51272 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
51273 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
51274 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
51275 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
51276 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
51277 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
51278 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
51279 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
51280 * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
51281 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
51282 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
51283 * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
51284 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
51285 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
51286 * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
51287 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
51288 * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
51289 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
51290 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
51291 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
51292 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
51293 * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
51294 * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
51295 * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
51296 * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
51297 * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
51298 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
51299 * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
51300 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
51301 * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
51302 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
51303 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
51304 * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
51305 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
51306 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
51307 * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
51308 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
51309 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
51310 * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
51311 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
51312 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
51313 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
51314 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
51315 * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
51316 * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
51317 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
51318 * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
51319 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
51320 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
51321 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
51322 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
51323 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
51324 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
51325 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
51326 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
51327 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
51328 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
51329 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
51330 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
51331 * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
51332 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
51333 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
51334 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
51335 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
51336 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
51337 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
51338 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
51339 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
51340 * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
51341 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
51342 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
51343 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
51344 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
51345 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
51346 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
51347 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
51348 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
51349 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
51350 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
51351 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
51352 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
51353 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
51354 * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
51355 * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
51356 * sysdeps/s390/fpu/e_sqrt.c: Likewise.
51357 * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
51358 * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
51359 * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
51360 * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
51361 * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
51362 * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
51363 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
51364 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
51365 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
51366 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
51367 * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
51368 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
51369 * sysdeps/x86_64/fpu/e_sqrt.c: Likewise. Fix parameter order
51370 * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
51371 * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
51372 (__isnanf): Likewise.
51373 (__isinf_ns): Likewise.
51374 (__isinf_nsf): Likewise.
51375 (__finite): Likewise.
51376 (__finitef): Likewise.
51377 (__ieee754_sqrt): Define as macro.
51378 (__ieee754_sqrtf): Define as macro.
51379 (__ieee754_sqrtl): Define as macro.
51380 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
51381 inlined copy.
51382 * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
51383 __FINITE_MATH_ONLY__ consistent.
51384 * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
51385
12cc2fcd
AS
513862011-10-10 Andreas Schwab <schwab@linux-m68k.org>
51387
a843a204
AS
51388 * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
51389 of rawmemchr.
51390
12cc2fcd
AS
51391 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
51392
c853acd5
UD
513932011-10-09 Ulrich Drepper <drepper@gmail.com>
51394
51395 * po/ja.po: Update from translation team.
51396
c658d255
RM
513972011-10-08 Roland McGrath <roland@hack.frob.com>
51398
110946e4
RM
51399 * locale/programs/locarchive.c (prepare_address_space): New function.
51400 (create_archive, enlarge_archive, open_archive): Use it.
51401
50604220
RM
51402 * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
51403 inside [SHARED], where it is used.
51404
c658d255
RM
51405 * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
51406
51407 * nss/getent.c (netgroup_keys): Remove unused variable.
51408 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
51409
6a621eb7
UD
514102011-10-08 Ulrich Drepper <drepper@gmail.com>
51411
7edb55ce
UD
51412 * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
51413 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
51414 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
51415 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
51416 * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
51417 * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
51418 * math/Makefile (libm-calls): Add s_isinf_ns.
51419 * math/divtc3.c: Use __isinf_nsl instead of isinf.
51420 * math/multc3.c: Likewise.
51421 * math/s_casin.c: Likewise.
51422 * math/s_casinf.c: Likewise.
51423 * math/s_casinl.c: Likewise.
51424 * math/s_ccos.c: Likewise.
51425 * math/s_ccosf.c: Likewise.
51426 * math/s_ccosl.c: Likewise.
51427 * math/s_ctan.c: Likewise.
51428 * math/s_ctanf.c: Likewise.
51429 * math/s_ctanh.c: Likewise.
51430 * math/s_ctanhf.c: Likewise.
51431 * math/s_ctanhl.c: Likewise.
51432 * math/s_ctanl.c: Likewise.
51433 * math/w_fmod.c: Likewise.
51434 * math/w_fmodf.c: Likewise.
51435 * math/w_fmodl.c: Likewise.
51436 * math/w_remainder.c: Likewise.
51437 * math/w_remainderf.c: Likewise.
51438 * math/w_remainderl.c: Likewise.
51439 * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
51440 * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
51441 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
51442 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
51443 * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
51444 * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
51445 * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
51446 __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
51447
187da0ae
UD
51448 * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
51449 of the number.
51450 * stdio-common/printf_fphex.c: Likewise.
51451 * stdio-common/printf_size.c: Likewise.
51452
9277c064
UD
51453 * math/e_exp10.c: Include math_private.h using <...> not "...".
51454 * math/e_exp10f.c: Likewise.
51455 * math/e_exp10l.c: Likewise.
51456 * math/e_exp2l.c: Likewise.
51457 * math/e_j0l.c: Likewise.
51458 * math/e_j1l.c: Likewise.
51459 * math/e_jnl.c: Likewise.
51460 * math/e_lgammal_r.c: Likewise.
51461 * math/e_rem_pio2l.c: Likewise.
51462 * math/e_scalb.c: Likewise.
51463 * math/e_scalbf.c: Likewise.
51464 * math/e_scalbl.c: Likewise.
51465 * math/k_cosl.c: Likewise.
51466 * math/k_sinl.c: Likewise.
51467 * math/k_tanl.c: Likewise.
51468 * math/s_cacoshf.c: Likewise.
51469 * math/s_catan.c: Likewise.
51470 * math/s_catanf.c: Likewise.
51471 * math/s_catanh.c: Likewise.
51472 * math/s_catanhf.c: Likewise.
51473 * math/s_catanhl.c: Likewise.
51474 * math/s_catanl.c: Likewise.
51475 * math/s_ccosh.c: Likewise.
51476 * math/s_ccoshf.c: Likewise.
51477 * math/s_ccoshl.c: Likewise.
51478 * math/s_cexp.c: Likewise.
51479 * math/s_cexpf.c: Likewise.
51480 * math/s_cexpl.c: Likewise.
51481 * math/s_clog.c: Likewise.
51482 * math/s_clog10.c: Likewise.
51483 * math/s_clog10f.c: Likewise.
51484 * math/s_clog10l.c: Likewise.
51485 * math/s_clogf.c: Likewise.
51486 * math/s_clogl.c: Likewise.
51487 * math/s_csin.c: Likewise.
51488 * math/s_csinf.c: Likewise.
51489 * math/s_csinh.c: Likewise.
51490 * math/s_csinhf.c: Likewise.
51491 * math/s_csinhl.c: Likewise.
51492 * math/s_csinl.c: Likewise.
51493 * math/s_csqrt.c: Likewise.
51494 * math/s_csqrtf.c: Likewise.
51495 * math/s_csqrtl.c: Likewise.
51496 * math/s_ctan.c: Likewise.
51497 * math/s_ctanf.c: Likewise.
51498 * math/s_ctanh.c: Likewise.
51499 * math/s_ctanhf.c: Likewise.
51500 * math/s_ctanhl.c: Likewise.
51501 * math/s_ctanl.c: Likewise.
51502 * math/s_ldexp.c: Likewise.
51503 * math/s_ldexpf.c: Likewise.
51504 * math/s_ldexpl.c: Likewise.
51505 * math/s_significand.c: Likewise.
51506 * math/s_significandf.c: Likewise.
51507 * math/s_significandl.c: Likewise.
51508 * math/w_acos.c: Likewise.
51509 * math/w_acosf.c: Likewise.
51510 * math/w_acosh.c: Likewise.
51511 * math/w_acoshf.c: Likewise.
51512 * math/w_acoshl.c: Likewise.
51513 * math/w_acosl.c: Likewise.
51514 * math/w_asin.c: Likewise.
51515 * math/w_asinf.c: Likewise.
51516 * math/w_asinl.c: Likewise.
51517 * math/w_atan2.c: Likewise.
51518 * math/w_atan2f.c: Likewise.
51519 * math/w_atan2l.c: Likewise.
51520 * math/w_atanh.c: Likewise.
51521 * math/w_atanhf.c: Likewise.
51522 * math/w_atanhl.c: Likewise.
51523 * math/w_cosh.c: Likewise.
51524 * math/w_coshf.c: Likewise.
51525 * math/w_coshl.c: Likewise.
51526 * math/w_dremf.c: Likewise.
51527 * math/w_exp10.c: Likewise.
51528 * math/w_exp10f.c: Likewise.
51529 * math/w_exp10l.c: Likewise.
51530 * math/w_exp2.c: Likewise.
51531 * math/w_exp2f.c: Likewise.
51532 * math/w_fmod.c: Likewise.
51533 * math/w_fmodf.c: Likewise.
51534 * math/w_fmodl.c: Likewise.
51535 * math/w_hypot.c: Likewise.
51536 * math/w_hypotf.c: Likewise.
51537 * math/w_hypotl.c: Likewise.
51538 * math/w_j0.c: Likewise.
51539 * math/w_j0f.c: Likewise.
51540 * math/w_j0l.c: Likewise.
51541 * math/w_j1.c: Likewise.
51542 * math/w_j1f.c: Likewise.
51543 * math/w_j1l.c: Likewise.
51544 * math/w_jn.c: Likewise.
51545 * math/w_jnf.c: Likewise.
51546 * math/w_jnl.c: Likewise.
51547 * math/w_lgamma.c: Likewise.
51548 * math/w_lgamma_r.c: Likewise.
51549 * math/w_lgammaf.c: Likewise.
51550 * math/w_lgammaf_r.c: Likewise.
51551 * math/w_lgammal.c: Likewise.
51552 * math/w_lgammal_r.c: Likewise.
51553 * math/w_log.c: Likewise.
51554 * math/w_log10.c: Likewise.
51555 * math/w_log10f.c: Likewise.
51556 * math/w_log10l.c: Likewise.
51557 * math/w_log2.c: Likewise.
51558 * math/w_log2f.c: Likewise.
51559 * math/w_log2l.c: Likewise.
51560 * math/w_logf.c: Likewise.
51561 * math/w_logl.c: Likewise.
51562 * math/w_pow.c: Likewise.
51563 * math/w_powf.c: Likewise.
51564 * math/w_powl.c: Likewise.
51565 * math/w_remainder.c: Likewise.
51566 * math/w_remainderf.c: Likewise.
51567 * math/w_remainderl.c: Likewise.
51568 * math/w_scalb.c: Likewise.
51569 * math/w_scalbf.c: Likewise.
51570 * math/w_scalbl.c: Likewise.
51571 * math/w_sinh.c: Likewise.
51572 * math/w_sinhf.c: Likewise.
51573 * math/w_sinhl.c: Likewise.
51574 * math/w_sqrt.c: Likewise.
51575 * math/w_sqrtf.c: Likewise.
51576 * math/w_sqrtl.c: Likewise.
51577 * math/w_tgamma.c: Likewise.
51578 * math/w_tgammaf.c: Likewise.
51579 * math/w_tgammal.c: Likewise.
51580
6a621eb7
UD
51581 * po/ja.po: Update from translation team.
51582
bf582445
AJ
515832011-09-29 Andreas Jaeger <aj@suse.de>
51584
f9efbf3a
AJ
51585 [BZ #13179]
51586 * sunrpc/netname.c (netname2host): Fix logic.
51587
bf582445
AJ
51588 [BZ #6779]
51589 [BZ #6783]
51590 * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
51591 correctly.
51592 * math/w_remainder.c (__remainder): Likewise.
51593 * math/w_remainderf.c (__remainderf): Likewise.
51594 * math/libm-test.inc (remainder_test): Add test cases.
51595
48693bea
AK
515962011-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
51597
51598 * stdlib/longlong.h: Update from GCC. Fix zarch smul_ppmm and
51599 sdiv_qrnnd.
51600
42622229
LD
516012011-10-07 Ulrich Drepper <drepper@gmail.com>
51602
51603 * string/test-memcmp.c: Avoid unncessary #defines.
51604 Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
51605
093ecf92
LD
516062011-08-31 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
51607
51608 * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
51609 Use new sse2 version for core i3 - i7 as it's faster
51610 than sse42 version.
51611 (bit_Prefer_PMINUB_for_stringop): New.
51612 * sysdeps/x86_64/rawmemchr.S: Update.
51613 Replace with faster SSE2 version.
51614 * sysdeps/x86_64/memrchr.S: New file.
51615 * sysdeps/x86_64/memchr.S: Update.
51616 Replace with faster SSE2 version.
51617
fde56e5c
MP
516182011-09-12 Marek Polacek <mpolacek@redhat.com>
51619
51620 * elf/dl-load.c (lose): Add cast to avoid warning.
51621
21fd49a9
UD
516222011-10-07 Ulrich Drepper <drepper@gmail.com>
51623
5a06e643
UD
51624 * po/ca.po: Update from translation team.
51625
684ae515
UD
51626 * inet/getnetgrent_r.c: Hook up nscd.
51627 * nscd/Makefile (routines): Add nscd_netgroup.
51628 (nscd-modules): Add netgroupcache.
51629 (CFLAGS-netgroupcache.c): Define.
51630 * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
51631 (cache_search): Add const to second parameter.
51632 * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
51633 INNETGR.
51634 (dbs): Add netgrdb entry.
51635 (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
51636 (verify_persistent_db): Handle netgrdb.
51637 (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
51638 * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
51639 GETFDNETGR.
51640 (netgroup_response_header): Define.
51641 (innetgroup_response_header): Define.
51642 (datahead): Add netgroup_response_header and innetgroup_response_header
51643 elements.
51644 * nscd/nscd.conf: Add entries for netgroup cache.
51645 * nscd/nscd.h (dbtype): Add netgrdb.
51646 (_PATH_NSCD_NETGROUP_DB): Define.
51647 (netgroup_iov_disabled): Declare.
51648 (xmalloc, xcalloc, xrealloc): Move declarations here.
51649 (cache_search): Adjust prototype.
51650 Add netgroup-related prototypes.
51651 * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
51652 * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
51653 (__nscd_innetgr): Declare.
51654 * nscd/selinux.c (perms): Use access_vector_t as element type and
51655 add netgroup-related initializers.
51656 * nscd/netgroupcache.c: New file.
51657 * nscd/nscd_netgroup.c: New file.
51658 * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
51659 * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
51660 For four parameters use innetgr.
51661 * nss/nss_files/files-init.c: Add definition and callback for netgr.
51662 * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
51663 (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
51664 * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
51665
21fd49a9
UD
51666 * nscd/connections.c (register_traced_file): Don't register file
51667 for disabled databases.
51668
054c0457
UD
516692011-10-06 Ulrich Drepper <drepper@gmail.com>
51670
32b63198
UD
51671 * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
51672
054c0457
UD
51673 * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
51674 from tree and freeing node.
51675
64031225
JO
516762011-09-25 Jiri Olsa <jolsa@redhat.com>
51677
51678 * nss/nsswitch.c (__nss_database_lookup): Handle
51679 nss_parse_service_list out of memory case.
51680
0490345c
JO
516812011-09-15 Jiri Olsa <jolsa@redhat.com>
51682
51683 * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
51684 out of memory case.
51685
3a62d00d
AS
516862011-10-04 Andreas Schwab <schwab@redhat.com>
51687
51688 * include/dlfcn.h (__RTLD_NOIFUNC): Define.
51689 * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
51690 pass it down.
51691 * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
51692 elf_machine_rela, elf_machine_lazy_rel.
51693 (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
51694 (ELF_DYNAMIC_DO_REL): Likewise.
51695 (ELF_DYNAMIC_DO_RELA): Likewise.
51696 (ELF_DYNAMIC_RELOCATE): Likewise.
51697 * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
51698 to ELF_DYNAMIC_DO_REL.
51699 * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
51700 (dl_main): In trace mode always set __RTLD_NOIFUNC.
51701 * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
51702 elf_machine_rela.
51703 * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
51704 skip_ifunc, don't call ifunc function if non-zero.
51705 (elf_machine_rela): Likewise.
51706 (elf_machine_lazy_rel): Likewise.
51707 (elf_machine_lazy_rela): Likewise.
51708 * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
51709 (elf_machine_lazy_rel): Likewise.
51710 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
51711 Likewise.
51712 (elf_machine_lazy_rel): Likewise.
51713 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
51714 Likewise.
51715 (elf_machine_lazy_rel): Likewise.
51716 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
51717 (elf_machine_lazy_rel): Likewise.
51718 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
51719 (elf_machine_lazy_rel): Likewise.
51720 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
51721 (elf_machine_lazy_rel): Likewise.
51722 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
51723 (elf_machine_lazy_rel): Likewise.
51724 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
51725 (elf_machine_lazy_rel): Likewise.
51726 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
51727 (elf_machine_lazy_rel): Likewise.
51728
68577918
UD
517292011-09-28 Ulrich Drepper <drepper@gmail.com>
51730
51731 * nss/nss_files/files-init.c (_nss_files_init): Use static
51732 initialization for all the *_traced_file variables.
51733
68822d74
AS
517342011-09-28 Andreas Schwab <schwab@redhat.com>
51735
51736 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
51737
2056100b
RM
517382011-09-27 Roland McGrath <roland@hack.frob.com>
51739
51740 [BZ #13226]
51741 * manual/signal.texi (Longjmp in Handler): Grammar fixes.
51742
32c76b63
AS
517432011-09-27 Andreas Schwab <schwab@redhat.com>
51744
51745 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
51746 Reread the line before reparsing it.
51747
bf972c9d
AS
517482011-09-26 Andreas Schwab <schwab@redhat.com>
51749
51750 * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
51751
e057a1b5
JM
517522011-09-21 Chung-Lin Tang <cltang@codesourcery.com>
51753 Maxim Kuvyrkov <maxim@codesourcery.com>
51754 Joseph Myers <joseph@codesourcery.com>
51755
51756 * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
51757 if needed for __stack_chk_guard.
51758
bc7e1c36
RM
517592011-09-19 Roland McGrath <roland@hack.frob.com>
51760
ecb1482f
RM
51761 * sysdeps/posix/spawni.c (script_execute): Always define it.
51762 It will be optimized away if unused.
51763 (maybe_script_execute): New function.
51764 (__spawni): Call it.
51765
bc7e1c36
RM
51766 * Makerules: Don't include tls.make.
51767 (config-tls): Always set to thread.
51768 * tls.make.c: File removed.
51769
1c3b002b
MF
517702011-09-19 Mike Frysinger <vapier@gentoo.org>
51771
51772 * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
51773 * config.make.in (CPPFLAGS-config): New substituted variable.
51774
2840865d
UD
517752011-09-15 Ulrich Drepper <drepper@gmail.com>
51776
88738eb6
UD
51777 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
51778
cbf645a6 51779 [BZ #13192]
2840865d
UD
51780 * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
51781 Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
51782
b402e91a
RM
517832011-09-15 Roland McGrath <roland@hack.frob.com>
51784
51785 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
51786 (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
51787 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
51788 (CALL_FAIL): Likewise.
51789 * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
51790 (CALL_FAIL): Macro removed.
51791 Patch mostly by Mike Frysinger <vapier@gentoo.org>.
51792
4c1a1f71
UD
517932011-09-15 Ulrich Drepper <drepper@gmail.com>
51794
51795 * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
51796 for __FINITE_MATH_ONLY__ == 1.
51797
edc121be
AS
517982011-09-15 Andreas Schwab <schwab@redhat.com>
51799
51800 * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
51801 __ieee754_sqrt instead of sqrt.
51802 * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
51803 __ieee754_sqrtf instead of sqrtf.
51804 * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
51805 __floorf instead of floorf.
51806 * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
51807 __floorf, __truncf instead of floorf, truncf.
51808
cd205654
UD
518092011-09-14 Ulrich Drepper <drepper@gmail.com>
51810
ee4d0315
UD
51811 * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
51812
cd205654
UD
51813 * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
51814 __extern_always_inline.
51815 Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
51816 32-bit.
51817
48b67d71
AS
518182011-09-14 Andreas Schwab <schwab@redhat.com>
51819
51820 * elf/rtld.c (dl_main): Also relocate in dependency order when
51821 doing symbol dependency testing.
51822
1ae12c75
AS
518232011-09-13 Andreas Schwab <schwab@linux-m68k.org>
51824
51825 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
51826 Always define `refsym'.
51827
995a80df
AS
518282011-09-13 Andreas Schwab <schwab@redhat.com>
51829
e529793b
AS
51830 * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
51831 (__FD_ELT): Renamed from __FDELT.
51832 * misc/bits/select2.h (__FD_ELT): Likewise.
51833 * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
51834 __FD_MASK instead of __FDELT, __FDMASK.
51835 * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
51836 Likewise.
51837 * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
51838 Likewise.
51839
52d4fef8
AS
51840 * elf/Makefile (gen-ldd): Fix pattern.
51841
995a80df
AS
51842 * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
51843 (init_tls): Likewise.
51844
8682f8b0
UD
518452011-09-12 Ulrich Drepper <drepper@gmail.com>
51846
51847 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
51848
de82006d
AS
518492011-09-12 Andreas Schwab <schwab@redhat.com>
51850
a7c8e6a1
AS
51851 * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
51852 `struct cmsghdr *' instead of `void *'.
51853 * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
51854 Likewise.
51855
0f31fe77
AS
518562011-09-11 Andreas Schwab <schwab@linux-m68k.org>
51857
51858 * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
51859 if non-absolute.
51860 * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
51861 ldd_rewrite_script.
0f31fe77 51862
32b4c839
UD
518632011-09-11 Ulrich Drepper <drepper@gmail.com>
51864
83cd1420
UD
51865 * configure.in: Remove --with-tls option.
51866 * config.h.in: Remove HAVE_TLS_SUPPORT entry.
51867 * sysdeps/i386/elf/configure.in: Always test for TLS support and err
51868 out in case it is missing.
51869 * sysdeps/ia64/elf/configure.in: Likewise.
51870 * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
51871 * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
51872 * sysdeps/s390/s390-32/elf/configure.in: Likewise.
51873 * sysdeps/s390/s390-64/elf/configure.in: Likewise.
51874 * sysdeps/sh/elf/configure.in: Likewise.
51875 * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
51876 * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
51877 * sysdeps/x86_64/elf/configure.in: Likewise.
51878 * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
51879 * sysdeps/mach/hurd/tls.h: Likewise.
51880
633f745d
UD
51881 [BZ #13067]
51882 * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
51883
f318beb8
UD
51884 [BZ #13090]
51885 * configure.in: Fix use of AC_INIT.
51886
32b4c839
UD
51887 * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
51888
3ce1f295
UD
518892011-09-10 Ulrich Drepper <drepper@gmail.com>
51890
bb016596
UD
51891 * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
51892 __set_errno.
8e58439c
UD
51893 * malloc/hooks.c: Likewise.
51894
aebae053 51895 [BZ #11929]
02d46fc4
UD
51896 * malloc/arena.c (ptmalloc_init_minimal): Removed. Initialize all
51897 variables statically.
51898 (narenas): Initialize.
51899 (list_lock): Initialize.
bb016596
UD
51900 (ptmalloc_init): Don't call ptmalloc_init_minimal. Remove
51901 initializtion of main_arena and list_lock. Small cleanups.
02d46fc4
UD
51902 Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
51903 * malloc/malloc.c: Remove malloc_getpagesize. Include <ldsodefs.h>.
51904 Add initializers to main_arena and mp_.
51905 (malloc_state): Remove pagesize member. Change all users to use
51906 GLRO(dl_pagesize).
51907
51908 * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
51909 * sysdeps/unix/sysv/linux/getpagesize.c: Simplify. GLRO(dl_pagesize)
51910 is always initialized.
51911
22a89187
UD
51912 * malloc/malloc.c: Removed unused configurations and dead code.
51913 * malloc/arena.c: Likewise.
51914 * malloc/hooks.c: Likewise.
02d46fc4 51915 * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
22a89187 51916
d063d164
UD
51917 * include/tls.h: Removed. USE___THREAD must always be defined.
51918 * bits/libc-tsd.h: Don't handle !USE___THREAD.
51919 * elf/dl-libc.c: Likewise.
51920 * elf/dl-tsd.c: Likewise.
51921 * include/errno.h: Likewise.
51922 * include/netdb.h: Likewise.
51923 * include/resolv.h: Likewise.
51924 * inet/herrno-loc.c: Likewise.
51925 * inet/herrno.c: Likewise.
51926 * malloc/arena.c: Likewise.
51927 * malloc/hooks.c: Likewise.
51928 * malloc/malloc.c: Likewise.
51929 * resolv/res-state.c: Likewise.
51930 * resolv/res_libc.c: Likewise.
51931 * sysdeps/i386/dl-machine.h: Likewise.
51932 * sysdeps/ia64/dl-machine.h: Likewise.
51933 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
51934 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
51935 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
51936 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
51937 * sysdeps/sh/dl-machine.h: Likewise.
51938 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
51939 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
51940 * sysdeps/unix/i386/sysdep.S: Likewise.
51941 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
51942 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
51943 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
51944 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
51945 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
51946 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
51947 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
51948 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
51949 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
51950 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
51951 * sysdeps/unix/x86_64/sysdep.S: Likewise.
51952 * sysdeps/x86_64/dl-machine.h: Likewise.
51953 * tls.make.c: Likewise.
51954
3ce1f295
UD
51955 * configure.in: Remove --with-__thread option. Make tests for
51956 --no-whole-archive, __builtin_expect, symbol redirection, __thread,
51957 tls_model attribute fail if no support is available. Remove
51958 USE_IN_LIBIO.
51959 * Makeconfig: Adjust for dropped configure option. All features are
51960 now mandatory.
51961 * Makerules: Likewise.
51962 * Versions.def: Likewise.
51963 * argp/argp-fmtstream.c: Likewise.
51964 * argp/argp-fmtstream.h: Likewise.
51965 * argp/argp-help.c: Likewise.
51966 * assert/assert.c: Likewise.
51967 * config.h.in: Likewise.
51968 * config.make.in: Likewise.
51969 * configure: Likewise.
51970 * configure.in: Likewise.
51971 * csu/Versions: Likewise.
51972 * csu/init.c: Likewise.
51973 * elf/tst-audit2.c: Likewise.
51974 * elf/tst-tls10.c: Likewise.
51975 * elf/tst-tls10.h: Likewise.
51976 * elf/tst-tls11.c: Likewise.
51977 * elf/tst-tls12.c: Likewise.
51978 * elf/tst-tls14.c: Likewise.
51979 * elf/tst-tlsmod11.c: Likewise.
51980 * elf/tst-tlsmod12.c: Likewise.
51981 * elf/tst-tlsmod13.c: Likewise.
51982 * elf/tst-tlsmod13a.c: Likewise.
51983 * elf/tst-tlsmod14a.c: Likewise.
51984 * elf/tst-tlsmod15b.c: Likewise.
51985 * elf/tst-tlsmod16a.c: Likewise.
51986 * elf/tst-tlsmod16b.c: Likewise.
51987 * elf/tst-tlsmod7.c: Likewise.
51988 * elf/tst-tlsmod8.c: Likewise.
51989 * elf/tst-tlsmod9.c: Likewise.
51990 * gmon/gmon.c: Likewise.
51991 * grp/fgetgrent_r.c: Likewise.
51992 * grp/putgrent.c: Likewise.
51993 * hurd/fopenport.c: Likewise.
51994 * include/libc-symbols.h: Likewise.
51995 * include/tls.h: Likewise.
51996 * intl/gettextP.h: Likewise.
51997 * intl/loadinfo.h: Likewise.
51998 * locale/global-locale.c: Likewise.
51999 * locale/localeinfo.h: Likewise.
52000 * mach/devstream.c: Likewise.
52001 * malloc/arena.c: Likewise.
52002 * malloc/set-freeres.c: Likewise.
52003 * misc/err.c: Likewise.
52004 * misc/getttyent.c: Likewise.
52005 * misc/mntent_r.c: Likewise.
52006 * posix/getopt.c: Likewise.
52007 * posix/wordexp.c: Likewise.
52008 * pwd/fgetpwent_r.c: Likewise.
52009 * resolv/Versions: Likewise.
52010 * resolv/res_hconf.c: Likewise.
52011 * shadow/fgetspent_r.c: Likewise.
52012 * shadow/putspent.c: Likewise.
52013 * stdio-common/printf_fphex.c: Likewise.
52014 * stdio-common/tmpfile.c: Likewise.
52015 * stdlib/abort.c: Likewise.
52016 * stdlib/fmtmsg.c: Likewise.
52017 * sunrpc/auth_unix.c: Likewise.
52018 * sunrpc/clnt_perr.c: Likewise.
52019 * sunrpc/clnt_tcp.c: Likewise.
52020 * sunrpc/clnt_udp.c: Likewise.
52021 * sunrpc/clnt_unix.c: Likewise.
52022 * sunrpc/openchild.c: Likewise.
52023 * sunrpc/svc_simple.c: Likewise.
52024 * sunrpc/svc_tcp.c: Likewise.
52025 * sunrpc/svc_udp.c: Likewise.
52026 * sunrpc/svc_unix.c: Likewise.
52027 * sunrpc/xdr.c: Likewise.
52028 * sunrpc/xdr_array.c: Likewise.
52029 * sunrpc/xdr_rec.c: Likewise.
52030 * sunrpc/xdr_ref.c: Likewise.
52031 * sunrpc/xdr_stdio.c: Likewise.
52032
1248c1c4
PB
520332011-09-09 Ulrich Drepper <drepper@gmail.com>
52034
52035 * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
52036
520372011-07-03 Andreas Jaeger <aj@suse.de>
52038
52039 * math/libm-test.inc (jn_test): Add tests for BZ#11589.
52040 * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
52041 regenerate with gen-libm-tests.pl.
52042
520432010-05-12 Petr Baudis <pasky@suse.cz>
52044
52045 [BZ #11589]
52046 * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
52047 around j0() zero points by switching to j1().
52048 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
52049 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
52050 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
52051 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
52052
f22e1074
UD
520532011-09-09 Ulrich Drepper <drepper@gmail.com>
52054
f19009c1
UD
52055 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
52056 instead of 0.
52057 * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
3a235abb 52058 instead of 0.
f19009c1
UD
52059 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
52060 Patch in part by Pavel Roskin <proski@gnu.org>.
52061
3f8cc204
UD
52062 [BZ #13138]
52063 * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
52064 realloc.
52065 (_IO_vfscanf_internal): Remove reteof. Use errout after setting done.
52066 Free memory block if necessary.
52067
f22e1074
UD
52068 [BZ #12847]
52069 * libio/genops.c (INTDEF): For string streams the _lock pointer can
52070 be NULL. Don't lock in this case.
52071
0a2349f9
RM
520722011-09-09 Roland McGrath <roland@hack.frob.com>
52073
52074 * elf/elf.h (ELFOSABI_GNU): New macro.
52075 (ELFOSABI_LINUX): Define to that.
52076
f3cdd467
DZ
520772011-07-29 Denis Zaitceff <zaitceff@gmail.com>
52078
52079 * string/strncat.c (strncat): Undef the symbol in case it has been
52080 defined in bits/string.h.
52081
74718d13
UD
520822011-09-09 Ulrich Drepper <drepper@gmail.com>
52083
633e9e0f
UD
52084 * elf/sotruss.ksh: Clean up, fix, and complete help messages.
52085
0a2349f9 52086 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
74718d13
UD
52087 link map.
52088
f9924780
AJ
520892011-08-17 Andreas Jaeger <aj@suse.de>
52090
52091 * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
52092
7f5517aa
PP
520932011-08-18 Paul Pluzhnikov <ppluzhnikov@google.com>
52094 Ian Lance Taylor <iant@google.com>
52095
52096 * math/libm-test.inc (lround_test): New testcase.
52097 * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
52098
762011fe
UD
520992011-09-08 Ulrich Drepper <drepper@gmail.com>
52100
92963737
UD
52101 * Makefile: Remove support for automatic cvs check-ins.
52102 * Makerules: Likewise.
52103 * config.make.in: Likewise.
52104 * configure.in: Likewise.
52105 * intl/Makefile: Likewise.
52106 * locale/Makefile: Likewise.
52107 * po/Makefile: Likewise.
52108 * posix/Makefile: Likewise.
52109 * sysdeps/gnu/Makefile: Likewise.
52110 * sysdeps/mach/hurd/Makefile: Likewise.
52111 * sysdeps/sparc/sparc32/Makefile: Likewise.
52112
b0727fd8
JS
52113 [BZ #13118]
52114 * posix/Makefile (bug-regex32-ENV): Define.
52115 Patch by John Stanley <jpsinthemix@verizon.net>.
52116
a0f33f99
UD
52117 * misc/Makefile (headers): Add bits/select2.h.
52118 * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
52119 * misc/bits/select2.h: New file.
52120 * include/bits/select2.h: New file.
52121 * debug/Makefile (routines): Add fdelt_chk.
52122 * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
52123 * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
52124 FD_ISSET.
52125 * debug/fdelt_chk.c: New file.
52126
762011fe
UD
52127 * wcsmbs/test-wcscmp.c: Moved from string/*. Adjust.
52128 * wcsmbs/test-wmemcmp.c: Likewise.
52129 * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
a0f33f99 52130 * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
762011fe
UD
52131
521322011-09-08 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
52133
52134 * string/Makefile (strop-tests): Add memcmp.
52135 * string/test-wmemcmp.c: New file.
52136 * string/test-memcmp.c: Add wmemcmp support.
52137
7f513ec8
RM
521382011-09-08 Roland McGrath <roland@hack.frob.com>
52139
0442afb4
RM
52140 [BZ #13153]
52141 * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
52142 2011-07-19 change.
52143
7f513ec8
RM
52144 * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
52145 garbage value in a __mach_port_mod_refs call in the cases of the
52146 task-self and thread-self ports.
52147
a12b2239
ST
521482011-09-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
52149
52150 * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
52151
610f9ab4
AS
521522011-09-08 Andreas Schwab <schwab@redhat.com>
52153
7f513ec8 52154 * elf/dl-load.c (lose): Check for non-null L.
610f9ab4 52155
48882a1a
LD
521562011-09-07 Ulrich Drepper <drepper@gmail.com>
52157
b49865be
UD
52158 * elf/dl-load.c (open_verify): Use O_CLOEXEC.
52159
fdc86bc9
UD
52160 * elf/dl-libc.c (dlerror_run): Pass back error code from
52161 dl_catch_error.
52162
c966526a
UD
52163 [BZ #13123]
52164 * elf/dl-load.c (lose): Free l_origin if it is valid.
52165
48882a1a
LD
52166 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
52167 names.
52168 * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
52169 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
52170 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
52171 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
52172 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
52173 Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
52174
77a2a8b4
AZ
521752011-08-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
52176
52177 * sysdeps/powerpc/fpu/e_hypot.c: New file.
52178 * sysdeps/powerpc/fpu/e_hypotf.c: New file.
52179 * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
52180 * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
52181 * sysdeps/powerpc/fpu/k_cosf.c: New file.
52182 * sysdeps/powerpc/fpu/k_sinf.c: New file.
52183 * sysdeps/powerpc/fpu/s_cosf.c: New file.
52184 * sysdeps/powerpc/fpu/s_sinf.c: New file.
52185 * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
52186 * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
52187
24f579d8
AM
521882011-08-15 Alan Modra <amodra@gmail.com>
52189
52190 [BZ #13092]
52191 * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
52192 * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
52193 * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here. Add
52194 ppc_mcount to static-only-routines.
52195 * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
52196 __mcount_internal.
52197 * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
52198 __mcount_internal with usual JUMPTARGET. Remove useless nop.
52199
3d4837df
UD
522002011-08-18 David Flaherty <flaherty@linux.vnet.ibm.com>
52201
52202 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
52203 for finite and infinity parameters.
52204
22700377
WS
522052011-08-04 Will Schmidt <will_schmidt@vnet.ibm.com>
52206
52207 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
52208 and add nop instructions for throughput optimization.
52209 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
52210
5025581e
WS
522112011-07-28 Will Schmidt <will_schmidt@vnet.ibm.com>
52212
52213 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
52214 aligned copy for power7 with vector-scalar instructions.
52215 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
52216
08a300c9
L
522172011-07-24 H.J. Lu <hongjiu.lu@intel.com>
52218
52219 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
52220 AVX check.
52221
59178ef9
AS
522222011-09-07 Andreas Schwab <schwab@redhat.com>
52223
52224 [BZ #13144]
52225 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
52226 last change.
52227
e38ba7ab
UD
522282011-09-07 Ulrich Drepper <drepper@gmail.com>
52229
52230 * sysdeps/unix/sysv/linux/x86_64/init-first.c
52231 (_libc_vdso_platform_setup): If vDSO is not present store pointer to
52232 syscall wrapper around clock_gettime in __vdso_clock_gettime.
52233 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
52234 clock_gettime.
52235
d53a73ac
UD
522362011-09-06 Ulrich Drepper <drepper@gmail.com>
52237
fc8bffcc
UD
52238 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
52239 Forgot to demangle the pointer.
52240
ceaa0c5d
UD
52241 * sysdeps/i386/sysdep.h: Define atom_text_section.
52242 * sysdeps/x86_64/sysdep.h: Likewise.
52243 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
52244 section with atom_text_section.
52245 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
52246 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
52247 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
52248 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
52249 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
52250
a77d3c17
UD
52251 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
52252 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
52253 already be defined. Change to take two parameters and don't assign
52254 result to variable. Adjust all users.
52255 Define INTERNAL_GETTIME if not already defined.
52256 Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
52257 call.
52258 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
52259 HAVE_CLOCK_GETTIME_VSYSCALL.
52260 * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
52261
d53a73ac
UD
52262 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
52263 gettimeofday vsyscall, just use time.
52264
a8f84144
AS
522652011-09-06 Andreas Schwab <schwab@redhat.com>
52266
52267 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
52268 <errno.h>.
52269
ef606249
UD
522702011-09-06 Ulrich Drepper <drepper@gmail.com>
52271
52272 * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
52273 syscall on x86-64.
52274 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
52275 syscall.
52276 * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
52277 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
52278 syscall if possible.
52279
6585cb60
UD
522802011-09-05 Ulrich Drepper <drepper@gmail.com>
52281
52282 * elf/pldd.c (get_process_info): Don't read whole ELF header, just
52283 e_ident. Don't pass to find_mapsXX.
52284 * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
52285
a5f524e4
LD
522862011-07-20 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
52287
52288 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
52289 strchr-sse2-no-bsf strrchr-sse2-no-bsf
52290 * sysdeps/x86_64/multiarch/strchr.S: Update.
52291 Check bit_slow_BSF bit.
52292 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
52293 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
52294 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
52295
554881ef
UD
522962011-09-05 Ulrich Drepper <drepper@gmail.com>
52297
d96de963
UD
52298 [BZ #13134]
52299 * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
52300 before glibc 2.15.
52301 (tryshell): Define.
52302 (__spawni): Change last parameter to be flag. Test
52303 SPAWN_XFLAGS_USE_PATH flag to use path or not.
52304 Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
52305 * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
52306 * posix/spawni.c: Likewise.
52307 * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
52308 * posix/spawnp.c: Likewise. Change normal version to use
52309 SPAWN_XFLAGS_USE_PATH.
52310 * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
52311 SPAWN_XFLAGS_TRY_SHELL.
52312
d48e5868
UD
52313 [BZ #13150]
52314 * posix/glob.h: Remove gcc 1.x support.
52315
554881ef
UD
52316 [BZ #13068]
52317 * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
52318
693fb948
LD
523192011-07-20 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
52320
52321 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
52322 strchr-sse2 strrchr-sse2 strchr-sse2-bsf
52323 strrchr-sse2-bsf
52324 * sysdeps/i386/i686/multiarch/strchr.S: New file.
52325 * sysdeps/i386/i686/multiarch/strrchr.S: New file.
52326 * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
52327 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
52328 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
52329 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
52330
1b48c537
UD
523312011-08-29 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
52332
49d42c37
UD
52333 * sysdeps/x86_64/wcscmp.S: New file.
52334
1b48c537
UD
52335 * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
52336 wcscmp-c wcscmp-sse2
52337 * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
52338 * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
52339 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
52340 * wcsmbs/wcscmp.c: Allow renaming.
52341
15c95c5d
DM
523422011-09-05 David S. Miller <davem@davemloft.net>
52343
52344 * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
52345 stack slot, rather than the struct return pointer slot.
52346 * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
52347 * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
52348 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
52349 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
52350
2f0ad8f3
UD
523512011-09-05 Ulrich Drepper <drepper@gmail.com>
52352
d88ae418
UD
52353 * po/ja.po: Update from translation team.
52354
2f0ad8f3
UD
52355 [BZ #13144]
52356 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
52357 kernel in 64-bit binaries.
52358
5f4318d1
DM
523592011-09-01 David S. Miller <davem@davemloft.net>
52360
52361 * elf/elf.h (HWCAP_SPARC_*): Move to..
52362 * sysdeps/sparc/sysdep.h: this new file and add new values.
52363 * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
52364 * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
52365 _DL_HWCAP_COUNT to 24.
52366 * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
52367 entries.
52368 * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
52369 __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
52370 * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
52371 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
52372 instead of magic constants.
52373 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
52374
3ba57516
DM
523752011-08-31 David S. Miller <davem@davemloft.net>
52376
52377 * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
52378 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
52379 Reimplement to do errno handling inline.
52380 (SYSCALL_ERROR_HANDLER): New macro.
52381 (__SYSCALL_STRING): Do not do errno handling in asm.
52382 (__CLONE_SYSCALL_STRING): Delete.
52383 (__INTERNAL_SYSCALL_STRING): Delete.
52384 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
52385 sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
52386 (PSEUDO): Reimplement to do errno handling inline.
52387 (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
52388 (SYSCALL_ERROR_HANDLER): New macro.
52389 (__SYSCALL_STRING): Do not do errno handling in asm.
52390 (__CLONE_SYSCALL_STRING): Delete.
52391 (__INTERNAL_SYSCALL_STRING): Delete.
52392 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
52393 Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
52394 i386.
52395 (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
52396 (inline_syscall*): Add 'err' argument.
52397 (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
52398 INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
52399 (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
52400 INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
52401
52402 * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
52403 * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
52404
2bc17433
AS
524052011-08-30 Andreas Schwab <schwab@redhat.com>
52406
52407 * elf/rtld.c (dl_main): Relocate objects in dependency order.
52408
fbeb5f4d
JO
524092011-08-29 Jiri Olsa <jolsa@redhat.com>
52410
52411 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
52412 directive.
52413
ad69cc26
DM
524142011-08-24 David S. Miller <davem@davemloft.net>
52415
52416 * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
52417
39dd69df
AS
524182011-08-24 Andreas Schwab <schwab@redhat.com>
52419
52420 * elf/Makefile: Add rules to build and run unload8 test.
52421 * elf/unload8.c: New file.
52422 * elf/unload8mod1.c: New file.
52423 * elf/unload8mod1x.c: New file.
52424 * elf/unload8mod2.c: New file.
52425 * elf/unload8mod3.c: New file.
52426
52427 * elf/dl-close.c (_dl_close_worker): Reset private search list if
52428 it wasn't used.
52429
2c0b250a
DM
524302011-08-23 David S. Miller <davem@davemloft.net>
52431
52432 * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
52433 subtract stack bias.
52434 * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
52435 %sp not %fp in calculations.
52436 (_JMPBUF_UNWINDS_ADJ): Likewise.
52437
22044b48
DM
52438 * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
52439 (aio_suspend): Call it to force an exception region around the
52440 AIO_MISC_WAIT() invocation.
52441
2cae4995
AS
524422011-08-23 Andreas Schwab <schwab@redhat.com>
52443
52444 * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
52445 backslash.
52446
873a772e
AJ
524472011-07-04 Aurelien Jarno <aurelien@aurel32.net>
52448
52449 * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
52450 protection macro.
52451 * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
52452 and <dl-machine.h>.
52453 (Elf64_FuncDesc): Remove.
52454
25ad0df1
DM
524552011-08-22 David S. Miller <davem@davemloft.net>
52456
52457 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
52458 sigaltstack check, add missing cfi directives.
52459 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
52460 missing cfi directives, and sigaltstack handling.
52461
e888bcbe
AS
524622011-08-16 Andreas Schwab <schwab@redhat.com>
52463
52464 [BZ #11724]
52465 * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
52466 object is seen twice.
52467 * elf/dl-fini.c (_dl_sort_fini): Likewise.
52468
52469 * elf/Makefile (distribute): Add tst-initorder2.c.
52470 (tests): Add tst-initorder2.
52471 (modules-names): Add tst-initorder2a tst-initorder2b
52472 tst-initorder2c tst-initorder2d. Add rules to build them.
52473 ($(objpfx)tst-initorder2.out): New rule.
52474 * elf/tst-initorder2.c: New file.
52475 * elf/tst-initorder2.exp: New file.
52476
87162f46
AS
524772011-08-22 Andreas Schwab <schwab@redhat.com>
52478
70538b7f
AS
52479 * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
52480
f55ffe58
AS
52481 * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
52482 dependencies back to end of function.
52483
87162f46
AS
52484 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
52485 $(elfobjdir)/ld.so.
52486
91b392a4
UD
524872011-08-21 Ulrich Drepper <drepper@gmail.com>
52488
52489 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
52490 * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
52491 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
52492 * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
52493 * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
52494 of __vdso_gettimeofday.
52495 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
52496 __vdso_gettimeofday and __vdso_time. Define __vdso_getcpu with
52497 attribute_hidden.
52498 (_libc_vdso_platform_setup): Remove initialization of
52499 __vdso_gettimeofday and __vdso_time.
52500
5c43483f
UD
525012011-08-20 Ulrich Drepper <drepper@gmail.com>
52502
775a77e7
UD
52503 * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
52504 and fgetc_unlocked.
52505 * nss/nss_files/files-key.c (search): Use fgets_unlocked and
52506 getc_unlocked.
89f447ed 52507
49c74ba9
UD
52508 * elf/dl-open.c (add_to_global): Report additions to the global scope
52509 for LD_DEBUG=scopes.
52510 (dl_open_worker): Also print scope of newly loaded dependencies.
001f0a6c 52511 (_dl_show_scope): Indicate if there is no scope.
49c74ba9 52512
5c43483f
UD
52513 [BZ #13114]
52514 * stdio-common/Makefile (tests): Add bug24.
52515 * stdio-common/bug24.c: New file.
52516
a101b025
AJ
525172011-08-19 Andreas Jaeger <aj@suse.de>
52518
52519 [BZ #13114]
52520 * libio/fileops.c (_IO_new_file_fopen): Fix handling of
52521 non-existant file when using close-on-exec mode.
52522
c88f1766
UD
525232011-08-20 Ulrich Drepper <drepper@gmail.com>
52524
0276a718
UD
52525 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
52526 the very first instruction.
52527
c88f1766
UD
52528 * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
52529 the CFI state in the end.
52530 * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
52531 inclusion of dl-trampoline.h.
52532 Based on a patch by Jiri Olsa <jolsa@redhat.com>.
52533
51ccffa0
AS
525342011-08-19 Andreas Schwab <schwab@redhat.com>
52535
94d7165f
AS
52536 * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
52537 expectations for long double.
52538
51ccffa0
AS
52539 * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
52540 from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
52541
fd708658 525422011-08-14 David S. Miller <davem@davemloft.net>
c27714f1
DM
52543
52544 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
52545 artificual limit depends upon the system page size.
52546
44f0a71e
UD
525472011-08-17 Ulrich Drepper <drepper@gmail.com>
52548
52549 * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
52550 * resolv/Makefile: Define CFLAGS-libresolv.
52551
8de79a24
AS
525522011-08-17 Andreas Schwab <schwab@redhat.com>
52553
52554 * nss/makedb.c (compute_tables): Make variables used in nested
52555 function static.
52556
27724598
UD
525572011-08-17 Ulrich Drepper <drepper@gmail.com>
52558
c5305d88
UD
52559 * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
52560 * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
52561 if buffer was too small.
52562
27724598
UD
52563 * elf/pldd.c (main): Attach to all threads in the process.
52564 Rewrite /proc handling to use *at functions.
52565
076fe015
UD
525662011-08-16 Ulrich Drepper <drepper@gmail.com>
52567
174baab3
UD
52568 * elf/dl-open.c (_dl_show_scope): Take additional parameter which
52569 specifies first scope to show.
52570 (dl_open_worker): Update callers. Move printing scope of new
52571 object to before the relocation.
44f0a71e 52572 * elf/rtld.c (dl_main): Update _dl_show_scope call.
174baab3
UD
52573 * sysdeps/generic/ldsodefs.h: Update declaration.
52574
076fe015
UD
52575 * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
52576 string for the scope number.
52577
a60df2c3
UD
525782011-08-14 Ulrich Drepper <drepper@gmail.com>
52579
52580 * nscd/servicescache.c (cache_addserv): Make sure written is always
52581 initialized.
52582
5e4287d1
RM
525832011-08-14 Roland McGrath <roland@hack.frob.com>
52584
85ae0589
RM
52585 * sysdeps/i386/i486/bits/atomic.h
52586 (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
52587 statement expression, so as to suppress "set but not used" warning.
52588 (__arch_c_compare_and_exchange_val_64_acq): Likewise.
52589
69f63097
RM
52590 * string/strncat.c (STRNCAT): Use prototype definition.
52591
675456ef
RM
52592 * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
52593 (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
52594 -Iprograms here.
52595 (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
52596 (localedef-modules): Add localedef.
52597 (locale-modules): Add locale.
52598
5e4287d1
RM
52599 * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
52600 * elf/rtld.c (dl_main): Invert order of assignment in last change,
52601 to avoid a warning.
52602
9c96ff23
DM
526032011-08-14 David S. Miller <davem@davemloft.net>
52604
52605 * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
52606 RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
52607
f9ddf089
UD
526082011-08-13 Ulrich Drepper <drepper@gmail.com>
52609
44f0a71e 52610 * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
73d7af4f
UD
52611 (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
52612 * elf/rtld.c (dl_main): Set l_name of vDSO.
52613 Call _dl_show_scope when DL_DEBUG_SCOPES.
52614 (process_dl_debug): Recognize scopes flag and also set it for all.
52615 * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
52616 Declare _dl_show_scope.
52617
1dc27704
UD
52618 * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
52619 (do_dlopen): Pass caller_dlopen to dl_open.
52620 (__libc_dlopen_mode): Initialize caller_dlopen.
52621
f9ddf089
UD
52622 * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
52623 of libc. Make tolower call locale-independent. Optimize a bit by
52624 using isdigit instead of isalnum.
52625 * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
52626
9ac533d3
UD
526272011-08-12 Ulrich Drepper <drepper@gmail.com>
52628
52629 * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
52630 was a dependency or dynamically loaded.
52631
89edf2e9
UD
526322011-08-11 Ulrich Drepper <drepper@gmail.com>
52633
8e999d29
UD
52634 * intl/l10nflist.c: Allow architecture-specific pop function.
52635 * sysdeps/x86_64/l10nflist.c: New file.
52636
89edf2e9
UD
52637 * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
52638 classification.
52639
14d96785
AS
526402011-08-10 Andreas Schwab <schwab@redhat.com>
52641
52642 * include/dirent.h: Add libc_hidden_proto for scandirat and
52643 scandirat64. Don't declare __scandirat64.
52644 * dirent/scandirat.c: Add libc_hidden_def.
52645 * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
52646 * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
52647
6761ac04
DM
526482011-08-10 David S. Miller <davem@davemloft.net>
52649
52650 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
52651 enum.
52652 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
52653 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
52654 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
52655
c55fbd1e
UD
526562011-08-09 Ulrich Drepper <drepper@gmail.com>
52657
52658 * Versions.def [libc]: Add GLIBC_2.15.
52659 * dirent/Makefile (routines): Add scandirat and scandirat64.
52660 * dirent/Versions [libc]: Export scandirat and scandirat64 for
52661 GLIBC_2.15.
52662 * dirent/dirent.h: Declare scandirat and scandirat64.
52663 * dirent/scandirat.c: New file.
52664 * dirent/scandirat64.c: New file.
52665 * sysdeps/wordsize-64/scandirat.c: New file.
52666 * sysdeps/wordsize-64/scandirat64.c: New file.
52667 * dirent/opendir.c: Define opendirat.
52668 * dirent/scandir.c: Move code to scandirat.c. Implement scandir
52669 using scandirat.
52670 * dirent/scandir64.c: Adjust for scandir.c change.
52671 * include/dirent.h: Define scandir_cancel_struct. Declare __opendirat,
52672 __scandirat64, and __scandir_cancel_handler.
52673 * sysdeps/unix/opendir.c: Rename __opendir to __opendirat. Take
52674 additional parameter and use openat instead of open (outside of ld.so).
52675 Add new __opendir as wrapper around __opendirat.
52676 * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
52677 here without requiring old scandirat implementation.
52678
879165f2
UD
526792011-08-08 Ulrich Drepper <drepper@gmail.com>
52680
52681 * dirent/scandir.c (cancel_handler): Renamed to
52682 __scandir_cancel_handler. Do not define if SKIP_SCANDIR_CANCEL is
52683 defined. Adjust users.
52684 * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
52685 * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
52686
cb7e923b
UD
526872011-08-04 Ulrich Drepper <drepper@gmail.com>
52688
16292edd
UD
52689 * string/test-string.h (IMPL): Use __STRING to expand name and then
52690 stringify it.
52691
cb7e923b
UD
52692 * string/test-strcmp.c: Unify most of the WIDE and !WIDE code. Lots
52693 of cleanups.
52694
cff82933
LD
526952011-07-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
52696
52697 * string/Makefile: Update.
52698 (strop-tests): Append strncat.
52699 * string/test-wcscmp.c: New file.
52700 New comprehensive test for wcscmp.
52701 * string/test-strcmp.c: Update.
52702 (WIDE): New define.
52703
9be9bfcc
AS
527042011-07-22 Andreas Schwab <schwab@redhat.com>
52705
52706 * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
52707 line.
52708
2e96f1c7
AS
527092011-07-26 Andreas Schwab <schwab@redhat.com>
52710
52711 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
52712 encoding to ACE if AI_IDN.
52713
85188888
JJ
527142011-08-01 Jakub Jelinek <jakub@redhat.com>
52715
52716 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
52717 to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
52718
5fa16e9b
LD
527192011-07-22 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
52720
52721 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
52722 Fix overflow bug in strncat.
52723 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
52724
52725 * string/test-strncat.c: Update.
52726 Add new tests for checking overflow bugs.
52727
527282011-07-15 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
52729
52730 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
52731 strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
52732 * sysdeps/i386/i686/multiarch/strcat.S: New file.
52733 * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
52734 * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
52735 * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
52736 * sysdeps/i386/i686/multiarch/strncat.S: New file.
52737 * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
52738 * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
52739
52740 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
52741 (USE_AS_STRCAT): Define.
52742 Add strcat and strncat support.
52743 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
52744
8c1a459f
AS
527452011-07-25 Andreas Schwab <schwab@redhat.com>
52746
52747 * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
52748 __n bigger than INT_MAX+1.
52749 (__strncmp_g): Likewise.
52750
bba33c28
UD
527512011-07-23 Ulrich Drepper <drepper@gmail.com>
52752
798be72d
UD
52753 * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
52754 * libio/stido.h: Likewise.
52755
8accd4dc
UD
52756 * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
52757 (AF_NFC): Define.
52758 * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
52759 (AF_NFC): Define.
52760
cbff0d96
UD
52761 * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
52762 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
52763 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
52764 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
52765 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
52766
9191c04a
UD
52767 [BZ #13021]
52768 * scripts/test-installation.pl: Don't expect libnss_test1 to be
52769 installed.
52770
bba33c28
UD
52771 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
52772 typo.
52773 (_dl_x86_64_save_sse): Likewise.
52774
90f139dd
UD
527752011-07-22 Ulrich Drepper <drepper@gmail.com>
52776
1aae088a
UD
52777 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
52778 OSXSAVE.
52779 (_dl_x86_64_save_sse): Likewise.
52780
8e2045f5
UD
52781 * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
52782
90f139dd
UD
52783 * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
52784
1d002f25
AS
527852011-07-21 Andreas Schwab <schwab@redhat.com>
52786
52787 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
52788 change.
52789 (_dl_x86_64_save_sse): Use correct AVX check.
52790
21137f89
UD
527912011-07-21 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
52792
52793 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
52794 bug in strncpy/strncat.
52795 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
52796
a65c0b7a
UD
527972011-07-21 Ulrich Drepper <drepper@gmail.com>
52798
52799 * string/tester.c (test_strcat): Add tests for different alignments
52800 of source and destination.
52801 (test_strncat): Likewise.
52802
6986b98a
UD
528032011-07-20 Ulrich Drepper <drepper@gmail.com>
52804
90bb2039
UD
52805 [BZ #12852]
52806 * posix/glob.c (glob): Check passed in values before using them in
52807 expressions to avoid some overflows.
52808 (glob_in_dir): Likewise.
52809
5644ef54
UD
52810 [BZ #13007]
52811 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
52812 check for AVX enablement so that we don't crash with old kernels and
52813 new hardware.
52814 * elf/tst-audit4.c: Add same checks here.
52815 * elf/tst-audit6.c: Likewise.
52816
52817 * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
6986b98a 52818
bfc9dc9b
AS
528192011-07-09 Andreas Schwab <schwab@linux-m68k.org>
52820
52821 * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
52822
702e64bb
UD
528232011-07-20 Ulrich Drepper <drepper@gmail.com>
52824
52825 * po/cs.po: Update from translation team.
52826 * po/bg.po: Likewise.
52827
295e904f
MP
528282011-07-12 Marek Polacek <mpolacek@redhat.com>
52829
52830 * misc/sys/cdefs.h: Add support for const attribute.
52831 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
52832 to gnu_dev_{major,minor,makedev} functions.
52833
3ff94596
MP
528342011-07-20 Marek Polacek <mpolacek@redhat.com>
52835
52836 * intl/dcigettext.c (get_output_charset): Add missing bracket.
52837
28b59fca
AS
528382011-07-20 Andreas Schwab <schwab@redhat.com>
52839
52840 * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
52841 strlen results.
52842
19df733e
AK
528432011-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
52844
52845 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
52846 (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
52847 register in order to avoid conflicts with the soft frame pointer
52848 being held in r11 when necessary.
52849 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
52850 (INTERNAL_VSYSCALL_NCS): Likewise.
52851
c8835729
MP
528522011-07-14 Marek Polacek <mpolacek@redhat.com>
52853
52854 * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
52855 * elf/dl-fini.c (_dl_fini): Adjust caller.
52856 * elf/dl-close.c (_dl_close_worker): Likewise.
52857 * sysdeps/generic/ldsodefs.h: Adjust declaration.
52858
b902330c
MP
528592011-07-15 Marek Polacek <mpolacek@redhat.com>
52860
8991e135
MP
52861 * elf/cache.c (load_aux_cache): Remove unnecessary condition of
52862 "aux_cache->nlibs < 0".
52863
b902330c
MP
52864 * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
52865 in the reload-count case.
52866
99710781
LD
528672011-07-15 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
52868
52869 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
52870 strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
52871 strncat-sse2-unaligned strncat-c strlen-sse2-pminub
52872 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
52873 * sysdeps/x86_64/multiarch/strcat.S: New file.
52874 * sysdeps/x86_64/multiarch/strncat.S: New file.
52875 * sysdeps/x86_64/multiarch/strncat-c.c: New file.
52876 * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
52877 * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
52878 * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
52879 * sysdeps/x86_64/multiarch/strcpy-ssse3.S
52880 (USE_AS_STRCAT): Define.
52881 Add strcat and strncat support.
52882 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
52883 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
52884 * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
52885 * string/strncat.c: Update.
52886 (USE_AS_STRNCAT): Define.
52887 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
52888 Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
52889 and i7.
52890 * sysdeps/x86_64/multiarch/init-arch.h
52891 (bit_Prefer_PMINUB_for_stringop): New.
52892 (index_Prefer_PMINUB_for_stringop): Likewise.
52893 * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
52894 bit_Prefer_PMINUB_for_stringop.
52895
7dc6bd90
UD
528962011-07-19 Ulrich Drepper <drepper@gmail.com>
52897
52898 * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
52899 buffer64.
52900 * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
52901 of casting of buffer.
52902 * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
52903 buffer32 and buffer64.
52904 * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
52905 writes instead of casting of buffer.
52906 * crypt/md5.h (struct md5_ctx): Move buffer into union and add
52907 buffer32.
52908 * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
52909 casting of buffer.
52910
e0e72284
AS
529112011-07-19 Andreas Schwab <schwab@redhat.com>
52912
52913 * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
52914
feb1eb0b
UD
529152011-07-19 Ulrich Drepper <drepper@gmail.com>
52916
52917 * nscd/nscd.c (termination_handler): Don't do anything for a database
52918 if it has not yet been initialized.
52919
298711ff
UD
529202011-07-18 Ulrich Drepper <drepper@gmail.com>
52921
52922 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
52923
529242011-07-15 Marek Polacek <mpolacek@redhat.com>
52925
52926 * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
52927
f9d68389
UD
529282011-07-18 Ulrich Drepper <drepper@gmail.com>
52929
52930 * po/nl.po: Update from translation team.
52931 * po/sv.po: Likewise.
52932
db290cf5
RM
529332011-07-16 Roland McGrath <roland@hack.frob.com>
52934
52935 * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
52936 now disallowed by GCC.
5c550700 52937
fd5e21c7
RM
52938 * configure.in (use-default-link): Default to yes if a test -shared
52939 link meets our qualifications.
52940 * configure: Regenerated.
52941
5c550700
RM
52942 * config.make.in (output-format): New variable.
52943 * configure.in: Check for ld --print-output-format support.
52944 * configure: Regenerated.
52945 * Makerules ($(common-objpfx)format.lds)
52946 [$(output-format) != unknown]: Just use $(output-format),
52947 instead of the linker-script munging.
52948
9fa2c032
RM
529492011-07-14 Roland McGrath <roland@hack.frob.com>
52950
a6928d51
RM
52951 * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
52952 of $(common-objpfx)shlib.lds.
52953 * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
52954
661607b3
RM
52955 * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
52956 Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
52957
9fa2c032
RM
52958 * configure.in (-z relro check): Adjust test code to add a large
52959 writable data section after it.
52960 * configure: Regenerated.
52961
defe9061
RM
529622011-07-11 Roland McGrath <roland@hack.frob.com>
52963
52964 * configure.in (-z relro check): Fix test code to make the variable
52965 truly const.
52966 * configure: Regenerated.
52967
319b9ad4
UD
529682011-07-11 Ulrich Drepper <drepper@gmail.com>
52969
52970 * nscd/nscd.h (struct traced_file): Define.
52971 (struct database_dyn): Remove inotify_descr, reset_res, and filename
52972 elements. Add traced_files.
52973 (inotify_fd): Declare.
52974 (register_traced_file): Declare.
52975 * nscd/connections.c (dbs): Remove reset_res and filename initializers.
52976 (inotify_fd): Export.
52977 (resolv_conf_descr): Remove.
52978 (nscd_init): Move inotify descriptor creation to main.
52979 Don't register files for notification here.
52980 (register_traced_file): New function.
52981 (invalidate_cache): Don't use reset_res to determine whether to call
52982 res_init, go through the list of registered files.
52983 (main_loop_poll): The inotify descriptors are now stored in the
52984 structures for the traced files.
52985 (main_loop_epoll): Likewise
52986 * nscd/nscd.c (main): Create inotify socket here. Pass extra argument
52987 to __nss_disable_nscd.
52988 * nscd/cache.c (prune_cache): There is no single inotify descriptor
52989 for a database anymore. Check the records for all the registered
52990 files instead.
52991 * nss/Makefile (libnss_files-routines): Add files-init.
52992 (libnss_db-routines): Add db-init.
52993 * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
52994 [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
52995 * nss/nss_db/db-init.c: New file.
52996 * nss/nss_files/files-init.c: New file.
52997 * nss/nsswitch.c (nss_load_library): New function. Broken out of
52998 __nss_lookup_function.
52999 (__nss_lookup_function): Call nss_load_library.
53000 (nss_load_all_libraries): New function.
53001 (__nss_disable_nscd): Take parameter with callback function for files
53002 to register. Set is_nscd. Load all the DSOs for the NSS modules
53003 used for the cached services.
53004 * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
53005 * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
53006 options for features to all the files in nscd.
53007
53008 * nss/nsswitch.c (nss_parse_file): Add missing fclose.
53009
23bee3e8
RM
530102011-07-10 Roland McGrath <roland@hack.frob.com>
53011
53012 * csu/elf-init.c (__libc_csu_init): Comment typo.
53013
46a5b7f0
UD
530142011-07-09 Ulrich Drepper <drepper@gmail.com>
53015
53016 * po/pl.po: Update from translation team.
53017 * po/ja.po: Likewise.
53018 * po/ru.po: Likewise.
53019 * po/ko.po: Likewise.
53020 * po/fr.po: Likewise.
53021
d30cf5bb
RM
530222011-07-09 Roland McGrath <roland@hack.frob.com>
53023
113ddea4
RM
53024 * configure.in (.ctors/.dtors header and trailer check):
53025 Use an empirical test on a built program.
53026 * configure: Regenerated.
53027
574920b4
RM
53028 * configure.in (-z relro check): Use an empirical test on a built DSO.
53029 Detect, but do not require, on ia64.
53030 * configure: Regenerated.
53031
d30cf5bb
RM
53032 * configure.in (READELF): Find it with AC_CHECK_TOOL.
53033 Update tests that use readelf to use $READELF instead.
53034 * configure: Regenerated.
53035
8538fdb3
UD
530362011-07-08 Ulrich Drepper <drepper@gmail.com>
53037
53038 * malloc/hooks.c (memalign_check): Avoid using checked_request2size
53039 if the result is not used.
53040
04d08991
AJ
530412011-07-05 Andreas Jaeger <aj@suse.de>
53042
53043 [BZ#9696]
53044 * stdlib/tst-strtod.c: Add testcase.
53045
de283087
AD
530462011-07-07 Ulrich Drepper <drepper@gmail.com>
53047
4e5f31c8 53048 * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
46a5b7f0 53049 (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
4e5f31c8
UD
53050 The latter has a higher limit. Take additional parameter to pass to
53051 the new function.
53052 (__pathconf): Pass file to __statfs_link_max.
53053 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
53054 __statfs_link_max.
53055 * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
53056 __statfs_link_max.
53057
de283087
AD
53058 [BZ #12868]
53059 * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
53060 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
53061 Handle Lustre.
53062 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
53063 (__statfs_filesize_max): Likewise.
53064 Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
53065
c75fa153
AJ
530662011-07-05 Andreas Jaeger <aj@suse.de>
53067
53068 * resolv/res_comp.c (dn_skipname): Remove unused variable.
53069
1a544854
UD
530702011-07-06 Marek Polacek <mpolacek@redhat.com>
53071
53072 * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
53073 `status' variable.
53074 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
53075 Likewise.
53076
6f0eec67
UD
530772011-07-04 H.J. Lu <hongjiu.lu@intel.com>
53078
53079 * Makefile (strop-tests): Add strncat.
53080 * string/test-strncat.c: New file.
53081
aae30307
UD
530822011-06-30 Marek Polacek <mpolacek@redhat.com>
53083
53084 * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
53085
c0cfb5eb
UD
530862011-06-21 Andreas Jaeger <aj@suse.de>
53087
53088 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
53089 Copy rule from iconvdata/Makefile.
53090
01636b21
UD
530912011-07-06 Ulrich Drepper <drepper@gmail.com>
53092
53093 [BZ #12922]
53094 * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
53095 but no long options are defined, just return 'W'.
53096
9895c8bc
UD
530972011-06-22 Marek Polacek <mpolacek@redhat.com>
53098
53099 [BZ #9696]
53100 * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
53101
5d4cf042
UD
531022011-07-06 Ulrich Drepper <drepper@gmail.com>
53103
53104 * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
53105 netgroups to read.
960e5535 53106 (innetgr): Likewise.
5d4cf042 53107
751eb97e
RM
531082011-07-05 Roland McGrath <roland@hack.frob.com>
53109
53110 * config.make.in (install_root): Default to $(DESTDIR).
53111
f15f1e45
UD
531122011-07-05 Ulrich Drepper <drepper@gmail.com>
53113
53114 * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
53115
4e34ac6a
RM
531162011-07-02 Roland McGrath <roland@hack.frob.com>
53117
5e9b6af4
RM
53118 * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
53119
84f9ea0f
RM
53120 * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
53121 containing directory rather than embedding absolute directory names.
53122
ea5ee9f7
RM
53123 * scripts/check-local-headers.sh: Rewritten using awk.
53124 Match by word, not by line. Print error messages for matches.
53125 * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
53126
1b74661a
RM
53127 * Makerules [shlib-lds-flags empty]:
53128 ($(common-objpfx)libc_pic.opts): New target.
53129 ($(common-objpfx)libc_pic.os.clean): New target.
53130 ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
53131
53132 * config.make.in (OBJCOPY): New variable.
53133 * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
53134 * configure: Regenerated.
53135
f781ef40
RM
53136 * config.make.in (use-default-link): New variable.
53137 * configure.in (use_default_link): Grok --with-default-link to set it.
53138 * configure: Regenerated.
53139 * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
53140 (shlib-lds, shlib-lds-flags): Define to empty.
53141
2d4fa81e
RM
53142 * Makerules (shlib-lds): New variable.
53143 (shlib-lds-flags): New variable.
53144 (build-shlib, build-moduile, build-module-asneeded): Use it.
53145 ($(common-objpfx)libc.so): Use $(shlib-lds).
53146 ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
53147 * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
53148
31fffa6b
RM
53149 * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
53150 DT_FLAGS/DT_FLAGS_1 with zero flags.
53151
4e34ac6a
RM
53152 * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
53153 linker script munging.
53154
fcfc776b
UD
531552011-07-02 Ulrich Drepper <drepper@gmail.com>
53156
53157 * crypt/sha512.h (struct sha512_ctx): Add union to access total also
53158 as 128-bit value.
53159 * crypt/sha512.c (sha512_process_block): Perform total addition using
53160 128-bit if possible.
53161 (__sha512_finish_ctx): Likewise.
53162 * crypt/sha256.h (struct sha256_ctx): Add union to access total also
53163 as 64-bit value.
53164 * crypt/sha256.c (SWAP64): Define.
53165 (sha256_process_block): Perform total addition using 64-bit if
53166 possible.
53167 (__sha256_finish_ctx): Likewise.
53168
99231d9a
UD
531692011-07-01 Ulrich Drepper <drepper@gmail.com>
53170
53171 * nscd/pwdcache.c (cache_addpw): Cleanup. Add branch prediction.
53172 * nscd/initgrcache.c (addinitgroupsX): Likewise.
53173 * nscd/hstcache.c (cache_addhst): Likewise.
53174 * nscd/grpcache.c (cache_addgr): Likewise.
53175 * nscd/aicache.c (addhstaiX): Likewise
53176 * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
53177
445b4a53
TK
531782011-07-01 Thorsten Kukuk <kukuk@suse.de>
53179
53180 * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
53181 * nscd/initgrcache.c (addinitgroupsX): Likewise.
53182 * nscd/hstcache.c (cache_addhst): Likewise.
53183 * nscd/grpcache.c (cache_addgr): Likewise.
53184 * nscd/aicache.c (addhstaiX): Likewise
53185
6d4d8e8e
AS
531862011-07-01 Andreas Schwab <schwab@redhat.com>
53187
53188 * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
53189 domain only when needed.
53190
89f654c5
AS
531912011-06-30 Andreas Schwab <schwab@redhat.com>
53192
53193 * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
53194 is always restored.
53195
cf3b23ff
UD
531962011-06-29 Ulrich Drepper <drepper@gmail.com>
53197
53198 * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
53199 are re-adding the entry.
53200 * nscd/servicescache.c (cache_addserv): Likewise.
53201
751626f9
AJ
532022011-06-30 Aurelien Jarno <aurelien@aurel32.net>
53203
53204 * sysdeps/generic/dl-irel.h: fix protection against multiple
53205 inclusions.
53206 * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
53207
9113ea1f
UD
532082011-06-28 Ulrich Drepper <drepper@gmail.com>
53209
5c0b8d90
UD
53210 [BZ #12935]
53211 * malloc/memusage.sh: Fix quoting in message.
53212 * debug/xtrace.sh: Likewise.
53213
9113ea1f
UD
53214 * configure.in: Remove support for --experimental-malloc option, make
53215 it the default.
53216 * config.make.in: Likewise.
53217 * malloc/Makefile: Likewise.
53218
a4172181
AS
532192011-06-27 Andreas Schwab <schwab@redhat.com>
53220
53221 * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
53222 two-byte characters.
53223
78a7eee7
RM
532242011-06-27 Roland McGrath <roland@hack.frob.com>
53225
62bede13
RM
53226 * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
53227 AC_CACHE_CHECK invocation.
53228 * configure: Regenerated.
53229
78a7eee7
RM
53230 * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
53231
5ce33a62
UD
532322011-06-27 Ulrich Drepper <drepper@gmail.com>
53233
034807a9
UD
53234 [BZ #12350]
53235 * nscd/aicache.c (addhstaiX): Restore only RES_USE_INET6
53236 bit from old_res_options.
53237
4902da17
UD
53238 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
53239
5ce33a62
UD
53240 * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
53241 value type for setfct.
53242
c2344f56
L
532432011-06-23 H.J. Lu <hongjiu.lu@intel.com>
53244
53245 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
53246 __gettimeofday instead of gettimeofday.
53247
68468076
UD
532482011-06-26 Ulrich Drepper <drepper@gmail.com>
53249
53250 * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
53251
acb0d739
L
532522011-06-24 H.J. Lu <hongjiu.lu@intel.com>
53253
53254 * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
53255
53256 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
53257 info.
53258
8912479f
L
532592011-06-22 H.J. Lu <hongjiu.lu@intel.com>
53260
53261 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53262 strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
53263 strcpy-sse2-unaligned strncpy-sse2-unaligned
53264 stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
53265 * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
53266 * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
53267 * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
53268 * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
53269 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
53270 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
53271 * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
53272 * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
53273 * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
53274 (STRCPY): Support SSE2 and SSSE3 versions.
53275
d5495a11
UD
532762011-06-24 Ulrich Drepper <drepper@gmail.com>
53277
53278 [BZ #12874]
53279 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
53280 * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
53281 kernels which artificially limit size of requests.
53282
0b1cbaae
L
532832011-06-22 H.J. Lu <hongjiu.lu@intel.com>
53284
53285 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53286 strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
53287 strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
53288 * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
53289 * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
53290 * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
53291 * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
53292 * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
53293 * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
53294 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
53295 * sysdeps/i386/i686/multiarch/strcpy.S: New file.
53296 * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
53297 * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
53298 * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
53299 * sysdeps/i386/i686/multiarch/strncpy.S: New file.
53300 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53301 Enable unaligned load optimization for Intel Core i3, i5 and i7
53302 processors.
53303 * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
53304 Define.
53305 (index_Fast_Unaligned_Load): Define.
53306 (HAS_FAST_UNALIGNED_LOAD): Define.
53307
07f494a0
MP
533082011-06-23 Marek Polacek <mpolacek@redhat.com>
53309
53310 * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
53311
fa3fc0fe
UD
533122011-06-22 Ulrich Drepper <drepper@gmail.com>
53313
53314 [BZ #12907]
53315 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
53316 until it is clear that the information is realy needed.
53317 Patch mostly by David Hanisch <david.hanisch@nsn.com>.
53318
e12df166
AS
533192011-06-22 Andreas Schwab <schwab@redhat.com>
53320
53321 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
53322
852eb34d
UD
533232011-06-22 Ulrich Drepper <drepper@gmail.com>
53324
84e2a551
UD
53325 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
53326 /sys/devices/system/cpu/online if it is usable.
53327
852eb34d
UD
53328 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
53329 reading the information from the /proc filesystem to once a second.
53330
6e502e19
UD
533312011-06-21 Andreas Jaeger <aj@suse.de>
53332
53333 * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
53334 NULL after inclusion of kernel headers.
53335
75d39ff2
UD
533362011-06-21 Ulrich Drepper <drepper@gmail.com>
53337
51f9aa6a
UD
53338 * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
53339 calls to internal_setent.
53340
c0244a9d
UD
53341 [BZ #12885]
53342 * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
53343 addresses using gethostbyname4_r ignore IPv4 addresses.
53344
c5e3c2ae
UD
53345 * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
53346 branch using gethostbyname2 is only for AF_INET. Optimize accordingly.
53347
75d39ff2
UD
53348 * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
53349
42675c6f
DM
533502011-06-20 David S. Miller <davem@davemloft.net>
53351
53352 * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
53353 inclusions.
53354 * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
53355
53356 * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
53357 (elf_irel): Use it.
53358 * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
53359 * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
53360 * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
53361 * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
53362 * sysdeps/x86_64/dl-irel.h: Likewise.
53363
53364 * elf/dl-runtime.c: Use elf_ifunc_invoke.
53365 * elf/dl-sym.c: Likewise.
53366
57912a71
UD
533672011-06-15 Ulrich Drepper <drepper@gmail.com>
53368
53369 * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch. We
53370 need to dereference resplen2.
53371
ee22793d
AS
533722011-06-14 Andreas Schwab <schwab@redhat.com>
53373
53374 * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
53375
a9e836b0
UD
533762011-06-15 Ulrich Drepper <drepper@gmail.com>
53377
77fb9117
UD
53378 * Makeconfig: Define vardbdir and inst_vardbdir.
53379 * nss/Makefile: Add rules to install db-Makefile.
53380
40c1b22c
UD
53381 * nss/nss_db/db-XXX.c: Cleanup.
53382
9f2da732
UD
53383 * nss/Makefile (libnss_db-dbs): Add db-initgroups.
53384 * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
53385 GLIBC_PRIVATE.
53386 * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
53387 * nss/makedb.c: Implement -g option to specify that value strings
53388 are generated and should not be added to table iterated over for
53389 get*ent calls.
53390 * nss/nss_db/db-initgroups.c: New file.
53391
82e9a1f7
UD
53392 * nss/getent.c: Add support for initgroups lookups through getgrouplist
53393 interface.
53394
c41af17e
UD
53395 * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
53396 (internal_getgrouplist): Adjust to name change.
53397 Update use_initgroups_entry if this is not the first call.
53398 * nss/databases.def: Add initgroups entry.
53399
a9e836b0
UD
53400 * nss/makedb.c (compute_tables): Check result of multiple hash table
53401 sizes to minimize maximum chain length.
53402
2666d441
UD
534032011-06-14 Ulrich Drepper <drepper@gmail.com>
53404
53405 * Versions.def: Add entry for libnss_db.
53406 * shlib-versions: Likewise.
53407 * nss/Makefile: Add rules to build libnss_db.
53408 * nss/Versions: Add libnss_db information. Organize libnss_files
53409 entries better.
53410 * nss/db-Makefile: Add gshadow support. Change rules for the new
53411 makedb progra. Some minor improvements to generate smaller files.
53412 * nss/nss_db/nss_db.h: Move NSS database header data structures to
53413 here from...
53414 * nss/makedb.c: ...here.
53415 Improve database format to be smaller and require less memory at
53416 runtime.
53417 * nss/nss_db/db-XXX.x: Adjust for new database format. Don't use
53418 db anymore.
53419 * nss/nss_db/db-netgrp.c: Likewise.
53420 * nss/nss_db/db-open.c: Likewise.
53421 * nss/nss_files/flies-XXX.x: Adjust comments.
53422 * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
53423 * nss/nss_files/files-grp.c: Likewise.
53424 * nss/nss_files/files-hosts.c: Likewise.
53425 * nss/nss_files/files-network.c: Likewise.
53426 * nss/nss_files/files-proto.c: Likewise.
53427 * nss/nss_files/files-pwd.c: Likewise.
53428 * nss/nss_files/files-rpc.c: Likewise.
53429 * nss/nss_files/files-service.c: Likewise.
53430 * nss/nss_files/files-sgrp.c: Likewise.
53431 * nss/nss_files/files-spwd.c: Likewise.
53432 * nss/nss_db/db-alias.c: Removed.
53433 * nss/nss_db/dummy-db.h: Removed.
53434
9ee76b5a
UD
534352011-06-02 Ulrich Drepper <drepper@gmail.com>
53436
53437 * nss/makedb.c: Rewritten to not use database library.
53438 * nss/Makefile: Update to build new makedb program.
53439
c71ca1f8
AJ
534402011-06-14 Andreas Jaeger <aj@suse.de>
53441
53442 * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
53443 memset declaration.
53444
3154bfb8
UD
534452011-06-10 Andreas Schwab <schwab@redhat.com>
53446
53447 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
53448 tmpbuf.
53449
b350afab
RM
534502011-06-10 Roland McGrath <roland@hack.frob.com>
53451
decd4e50
RM
53452 * Makerules (shlib.lds): Fail if the linker script comes out empty.
53453 * elf/Makefile ($(objpfx)ld.so): Likewise.
53454
5615eaf2
RM
53455 * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
53456 Don't list ld.so twice in dependencies.
53457
53458 * posix/bug-regex31.c: Include <stdlib.h>.
53459
53460 * nscd/hstcache.c (cache_addhst): Remove unused variable.
53461
53462 * nis/nss_compat/compat-spwd.c
53463 (getspent_next_nss_netgr): Remove unused variable.
53464 * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
53465
53466 * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
53467 nonmembers" output to use the right array.
53468
53469 * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
53470
53471 * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
53472
53473 * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
53474 * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
53475 * catgets/gencat.c (read_input_file): Likewise.
53476 * locale/programs/locarchive.c (enlarge_archive): Likewise.
53477
53478 * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
53479 variable definition inside #if's controlling its use.
53480
53481 * inet/getnetgrent_r.c (innetgr): Remove unused variable.
53482
53483 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
53484
53485 * misc/syslog.c (__vsyslog_chk): Remove unused variable.
53486
53487 * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
53488 unreachable code.
53489
53490 * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
53491
b68e08db
RM
53492 * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
53493 * configure: Regenerated.
53494
b350afab
RM
53495 * Makerules: Revert last change.
53496 * elf/Makefile: Likewise.
53497
28368601
RM
534982011-06-09 Roland McGrath <roland@hack.frob.com>
53499
53500 * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
53501 * elf/Makefile ($(objpfx)librtld.os): Likewise.
53502 (reloc-link): Likewise.
53503
11988f8f
UD
535042011-06-09 Ulrich Drepper <drepper@gmail.com>
53505
53506 * elf/Makefile: Add rules to build pldd.
53507 * elf/pldd.c: New file.
53508 * elf/pldd-xx.c: New file.
53509
e80fab37
UD
535102011-06-07 Ulrich Drepper <drepper@gmail.com>
53511
53512 * version.h: Update for 2.15 development version.
53513
9b849836
DM
535142011-06-07 David S. Miller <davem@davemloft.net>
53515
53516 * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
53517 ifuncs.
53518 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
53519 elf_machine_lazy_rel): Likewise.
53520 * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
53521 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
53522 elf_machine_lazy_rel): Likewise.
53523 * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
53524 dl_hwcap via passed in argument.
53525 * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
53526 Likewise.
53527
5a31b283
AK
535282011-06-06 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
53529
53530 * stdlib/longlong.h: Update from GCC. Fix smul_ppmm for S/390.
53531
069e52f8
RM
535322011-06-06 Roland McGrath <roland@hack.frob.com>
53533
53534 [BZ #12849]
53535 * manual/fdl-1.1.texi: New file, verbatim from:
53536 http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
53537 * manual/lgpl-2.1.texi: New file, verbatim from:
53538 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
53539 * manual/Makefile (licenses): New variable, list those new file names.
53540 (texis): Use it.
53541 (chapters.% top-menu.%): Include $(licenses) with $(appendices).
53542
53543 * manual/fdl.texi: File removed.
53544 * manual/lesser.texi: File removed.
53545 * manual/libc.texinfo (Copying, Documentation License):
53546 Use new @include file names, put @appendix directive before @include.
53547
f16846a5
JJ
535482011-06-04 Jakub Jelinek <jakub@redhat.com>
53549
53550 [BZ #12841]
53551 * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
53552 (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
53553 (mq_open): Add __NTH.
53554
3d29045b
L
535552011-06-02 H.J. Lu <hongjiu.lu@intel.com>
53556
53557 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53558 Assume Intel Core i3/i5/i7 processor if AVX is available.
53559
8c297311
UD
535602011-05-31 Ulrich Drepper <drepper@gmail.com>
53561
53562 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
53563 typo.
53564
c8fc0c91
UD
535652011-05-31 Andreas Schwab <schwab@redhat.com>
53566
53567 * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
53568 memory. Use alloca_account. Fix memory leak when retrying.
53569
5b27a807
UD
535702011-05-31 Ulrich Drepper <drepper@gmail.com>
53571
356f8bc6
UD
53572 * version.h (RELEASE): Bump for 2.14 release.
53573 * include/features.h (__GLIBC_MINOR__): Bump to 14.
53574
5b27a807
UD
53575 * config.make.in (RANLIB): Remove entry.
53576
01f16ab0
UD
535772011-05-30 Ulrich Drepper <drepper@gmail.com>
53578
41fce8bd
UD
53579 * po/Makefile (po-sed-cmd): Add ksh to extensions.
53580 (libc.pot): Work around missing support for .ksh extension in xgettext.
53581
4769ae77
UD
53582 [BZ #12684]
53583 * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
53584 if both request failed.
53585 (send_dg): In case of server errors clear resplen or *resplen2.
53586
6b1e7d19
UD
53587 [BZ #12454]
53588 * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
53589 when there are multiple maps.
53590 * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
53591 (_dl_fini): Remove test here.
53592
01f16ab0
UD
53593 * elf/rtld.c (dl_main): Don't allow the loader to load itself.
53594
b1ebd700
UD
535952011-05-29 Ulrich Drepper <drepper@gmail.com>
53596
7ae22829
UD
53597 [BZ #12350]
53598 * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
53599 bit from old_res_options.
53600 (gaih_inet): Likewise.
53601
553149f6 53602 [BZ #11099]
18a84741 53603 * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
873ca504
UD
53604 as signed.
53605
652ffab1
UD
53606 * resolv/res_init.c (res_setoptions): Make the code more compact.
53607
16985fd0
UD
53608 [BZ #11558]
53609 * resolv/res_init.c (res_setoptions): Recognize use-vc option and
53610 set RES_USEVC.
53611
0464f746
UD
53612 [BZ #11634]
53613 * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
53614
7d17596c
UD
53615 * malloc/malloc.h: Mark malloc hook variables as deprecated.
53616
cf6bbbd7
UD
53617 [BZ #11781]
53618 * malloc/malloc.h: Declare malloc hook variables as volatile.
53619
13f1ab36
UD
53620 * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
53621 in last patch.
53622
b1ebd700
UD
53623 [BZ #11799]
53624 * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
4997db74 53625 raise in the comment.
80e2212d
UD
53626 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
53627 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
53628 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
b1ebd700 53629
ce67228d
UD
536302011-05-28 Ulrich Drepper <drepper@gmail.com>
53631
8887a920
UD
53632 [BZ #12811]
53633 * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
53634 grow the buffers more if it already has to be sufficient.
53635 (build_wcs_upper_buffer): Likewise.
53636 * posix/regexec.c (check_matching): Likewise.
53637 (clean_state_log_if_needed): Likewise.
53638 (extend_buffers): Don't enlarge buffers beyond size of the input
53639 buffer.
53640 Patches mostly by Emil Wojak <emil@wojak.eu>.
53641 * posix/bug-regex32.c: New file.
53642 * posix/Makefile (tests): Add bug-regex32.
53643
4f031072
UD
53644 * locale/findlocale.c (_nl_find_locale): Return right away if
53645 _nl_explode_name failed.
53646 * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
53647
d0478f0c
UD
53648 * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
53649
de81b246
UD
53650 * debug/xtrace.sh: Unify messages.
53651 * malloc/memusage.sh: Likewise.
53652
c738465a
UD
53653 [BZ #12813]
53654 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
53655 time symbol from vDSO. Substitute with vsyscall if not available.
53656 * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
53657 __vdso_time.
53658
f1f929d7
UD
53659 * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
53660 * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
53661 * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
53662 Add sendmmsg and internal_sendmmsg.
53663 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
53664 * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
53665 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
53666
ce67228d
UD
53667 * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
53668 * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
53669 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
53670
e57420c6
UD
536712011-05-27 Ulrich Drepper <drepper@gmail.com>
53672
a8509ca5
UD
53673 [BZ #12813]
53674 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
53675 Retrieve getcpu symbol from vDSO. Substitute with vsyscall if not
53676 available.
53677 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
53678 __vdso_getcpu.
53679
e57420c6
UD
53680 [BZ #12814]
53681 * iconvdata/Makefile (tests): Add bug-iconv9.
53682 * iconvdata/bug-iconv9.c: New file.
53683
4d07db15
AS
536842011-05-27 Andreas Schwab <schwab@redhat.com>
53685
53686 [BZ #12814]
53687 * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
53688
ea486f69
JJ
536892011-05-25 Jakub Jelinek <jakub@redhat.com>
53690
53691 * sysdeps/unix/sysv/linux/x86_64/sys/user.h
53692 (struct user_regs_struct): Change intcs field back to cs.
53693
6f038433
UD
536942011-05-25 Ulrich Drepper <drepper@gmail.com>
53695
53696 * po/ja.po: Update from translation team.
53697
67f86a25
UD
536982011-05-23 Ulrich Drepper <drepper@gmail.com>
53699
53700 [BZ #12795]
53701 * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
53702 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
53703
def7fbd6
AS
537042011-05-20 Andreas Schwab <schwab@redhat.com>
53705
53706 * stdlib/longlong.h: Update from GCC.
53707
f50ef8f1
AS
537082011-05-23 Andreas Schwab <schwab@redhat.com>
53709
53710 * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
53711 parameter name.
53712 * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
53713 Add parameter name.
53714 (__sysconf): Pass it down.
53715
de7ce8f1
UD
537162011-05-22 Ulrich Drepper <drepper@gmail.com>
53717
f2962a71
UD
53718 [BZ #12671]
53719 * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
53720 some situations.
53721 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
53722 * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
53723 add in in __libc_use_alloca calls. Adjust callers.
53724 (glob): Use malloc in some situations.
53725
de7ce8f1
UD
53726 * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
53727 and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
53728 pltexit.
53729
aec84f53
UD
537302011-05-21 Ulrich Drepper <drepper@gmail.com>
53731
05bb4a68
UD
53732 * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
53733 and CLOCK_BOOTTIME_ALARM.
53734
7ea72f99
UD
53735 [BZ #12782]
53736 * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
53737 is returned.
53738
7e4afad5
UD
53739 * string/_strerror.c (__strerror_r): Print negative errors as signed
53740 numbers.
53741
8e211fec
UD
53742 [BZ #12777]
53743 * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
53744 (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
53745 * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
53746
f7d82dc9
UD
53747 * configure.in: Fix typo in redirection and correct removal of test
53748 files in two cases.
53749
cc9e536d
UD
53750 [BZ #12788]
53751 * locale/setlocale.c (new_composite_name): Fix test to check for
53752 identical name of all categories.
53753
aec84f53
UD
53754 [BZ #12792]
53755 * libio/filedoalloc.c (local_isatty): New function.
53756 (_IO_file_doallocate): Use local_isatty.
53757 * stdio-common/perror.c (perror): In case a new stream is used
53758 forward the stream error.
53759 * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
53760 error flag.
53761
78e64fdc
RT
537622011-05-20 Ulrich Drepper <drepper@gmail.com>
53763
34a9094f
UD
53764 [BZ #11869]
53765 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
53766 alloca.
53767 * include/alloca.h (extend_alloca_account): Define.
53768
78e64fdc
RT
53769 [BZ #11857]
53770 * posix/regex.h: Fix comments with documentation of user-accessible
53771 fields after compilation and describe correct free'ing of pattern
53772 after re_compile_pattern.
53773 Patch by Reuben Thomas <rrt@sc3d.org>.
53774
457bddfc
RA
537752011-05-18 Ryan S. Arnold <rsa@us.ibm.com>
53776
53777 * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
53778 and -mno-altivec to prevent the compiler from using Altivec and/or
53779 VSX instructions when the corresponding registers are not available.
53780
a4527b51
AS
537812011-05-19 Andreas Schwab <schwab@redhat.com>
53782
53783 * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
53784
ed690b2f
UD
537852011-05-19 Ulrich Drepper <drepper@gmail.com>
53786
53787 * libio/freopen.c (freopen): Use __dup2, not dup2.
53788 * libio/freopen64.c (freopen64): Likewise.
53789
8db73634
L
537902011-05-17 H.J. Lu <hongjiu.lu@intel.com>
53791
53792 [BZ #12775]
53793 * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
53794 * math/Makefile (tests): Add test-powl.
53795 (CFLAGS-test-powl.c): Define.
53796 * math/test-powl.c: New file.
53797
0a197a9d
L
537982011-05-16 H.J. Lu <hongjiu.lu@intel.com>
53799
53800 * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
53801
ee30c380
UD
538022011-05-17 Ulrich Drepper <drepper@gmail.com>
53803
53804 [BZ #11837]
53805 * iconvdata/gb18030.c: Update to GB18020-2005.
53806
6ce75379
UD
538072011-05-16 Ulrich Drepper <drepper@gmail.com>
53808
a4b89fd8
AR
53809 * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
53810 RE_SYNTAX_POSIX_AWK): Update to match recent development.
53811 Patch by Aharon Robbins <arnold@skeeve.com>.
53812
ea389b12
UD
53813 [BZ #11892]
53814 * stdlib/putenv.c (putenv): Don't always create copy of the variable
53815 on the stack.
53816
68a3f91f
UD
53817 [BZ #11895]
53818 * misc/pselect.c (__pselect): Handle timeout value errors hidden
53819 through underflows.
53820
15cc7dd1
UD
53821 [BZ #12766]
53822 * misc/error.c (error_at_line): Ensure file_name and old_file_name
53823 point to strings before performing equality test for error_one_per_line
53824 mode.
53825
f3799213
UD
53826 [BZ #11697]
53827 * login/programs/pt_chown.c (do_pt_chown): Always call chown.
53828
d79a9c94
UD
53829 [BZ #11820]
53830 * sysdeps/unix/sysv/linux/x86_64/sys/user.h
53831 (struct user_fpregs_struct): Avoid __uint*_t types.
53832
56e5eb46
UD
53833 [BZ #6420]
53834 * malloc/mtrace.c (tr_where): Add additional parameter to point to
53835 symbol info. Use it instead of calling _dl_addr locally.
53836 (lock_and_info): New function.
53837 (tr_freehook): Call lock_and_info and pass symbol info as additional
53838 parameter to tr_where.
53839 (tr_mallochook): Likewise.
53840 (tr_reallochook): Likewise.
53841 (tr_memalignhook): Likewise.
53842
6ce75379
UD
53843 * malloc/mtrace.c: Remove support for USE_MTRACE_FILE. It is not
53844 used and couldn't be at all thread-safe.
53845
f8a3b5bf
UD
538462011-05-15 Ulrich Drepper <drepper@gmail.com>
53847
94b7cc37
UD
53848 * libio/freopen.c (freopen): Don't close old file descriptor
53849 before the new one is opened. Instead dup the new file descriptor
53850 to the old one after the new stream is created.
53851 * libio/freopen64.c (freopen64): Likewise.
53852 * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
53853 * libio/fileops.c (_IO_new_file_close_it): Handle new
53854 _IO_FLAGS2_NOCLOSE flag.
53855 (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
53856 If _IO_file_open didn't set FD_CLOEXEC do it after the call.
53857 * libio/oldfileops.c (_IO_old_file_close_it): Handle new
53858 _IO_FLAGS2_NOCLOSE flag.
53859 * include/unistd.h: Add hidden_proto for dup3.
53860 Define __have_dup3.
53861 * io/dup3.c: Define hidden symbol.
53862 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
53863
bd25564e
UD
53864 [BZ #7101]
53865 * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
53866 when an incomplete long option is used.
53867 * posix/tst-getopt_long1.c: New file.
53868 * posix/Makefile (tests): Add tst-getopt_long1.
53869
c84cfef4
UD
53870 [BZ #10138]
53871 * scripts/config.guess: Update from autoconf-2.68.
53872 * scripts/config.sub: Likewise.
53873
3b85df27
UD
53874 [BZ #10157]
53875 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
53876 tests into ...
53877 (has_cpuclock): ...this. New function.
53878 * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
53879 macro here based on has_cpuclock code.
53880
15a856b1
UD
53881 [BZ #10149]
53882 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
53883 First byte (not low byte) is now always NUL.
53884 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
53885
05f399e6
UD
53886 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
53887 Use non-cancelable interfaces.
53888
10a52685 53889 [BZ #9809]
94ecc67d
UD
53890 * locale/iso-639.def: Add entry for Sorani.
53891
f8a3b5bf
UD
53892 [BZ #11901]
53893 * include/stdlib.h: Move include protection to the right place.
53894 Define abort_msg_s. Declare __abort_msg with it.
53895 * stdlib/abort.c (__abort_msg): Adjust type.
53896 * assert/assert.c (__assert_fail_base): New function. Majority
53897 of code from __assert_fail. Allocate memory for __abort_msg with
53898 mmap.
53899 (__assert_fail): Now call __assert_fail_base.
53900 * assert/assert-perr.c: Remove bulk of implementation. Use
53901 __assert_fail_base.
53902 * include/assert.hL Declare __assert_fail_base.
53903 * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
53904 mmap.
53905 * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
53906
1af4e298
UD
539072011-05-14 Ulrich Drepper <drepper@gmail.com>
53908
f8a3b5bf 53909 [BZ #11952]
d26dfc60
MG
53910 [BZ #12453]
53911 * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
53912 until all modules are registered in the DTV.
53913 * elf/Makefile: Add rules to build and run tst-tls19.
53914 * elf/tst-tls19.c: New file.
53915 * elf/tst-tls19mod1.c: New file.
53916 * elf/tst-tls19mod2.c: New file.
53917 * elf/tst-tls19mod3.c: New file.
53918 Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
53919
2fc54d6f
UD
53920 [BZ #12083]
53921 * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
53922 correctly.
53923
98d76b46
UD
53924 [BZ #12601]
53925 * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
53926 two-byte sequence errors.
53927 * iconvdata/Makefile (tests): Add bug-iconv8.
53928 * iconvdata/bug-iconv8.c: New file.
53929
da3c19ef
UD
53930 [BZ #12626]
53931 * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
53932 buf2 definition.
53933
ca408c15
UD
53934 * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
53935
d6f67f7d
UD
53936 [BZ #12432]
53937 * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
53938 (dummy_getcfa): New function.
53939 (init): Get _Unwind_GetCFA address, use dummy if not found.
53940 (backtrace_helper): In recursion check, also check whether CFA changes.
53941 (__backtrace): Completely initialize arg.
53942
1af4e298 53943 * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
0656e90e
UD
53944 storing incomplete byte sequence in state object. Avoid testing for
53945 guaranteed too small input if we know there is enough data available.
1af4e298 53946
da62f81b
AS
539472011-05-11 Andreas Schwab <schwab@redhat.com>
53948
53949 * Makeconfig (+link-pie): Indent.
53950 * Rules (binaries-pie): Define if $(have-fpie) and
53951 $(build-shared).
53952 (binaries-shared): Also filter out $(binaries-pie).
53953 ($(addprefix $(objpfx),$(binaries-pie))): New rule.
53954 * nscd/Makefile (others-pie): Add nscd.
53955 (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
53956 ($(objpfx)nscd): Remove command override.
53957 * login/Makefile (others-pie): Add pt_chown.
53958 ($(objpfx)pt_chown): Remove command override.
53959 * elf/Makefile: Add PIE tests to tests and tests-pie variables and
53960 remove command overrides.
53961
fcabc0f8
UD
539622011-05-13 Ulrich Drepper <drepper@gmail.com>
53963
20030ae6
UD
53964 * libio/tst_putwc.c: Fix error messages.
53965
fcabc0f8
UD
53966 [BZ #12724]
53967 * libio/fileops.c (_IO_new_file_close_it): Always flush when
53968 currently writing and seek to current position when not.
53969 * libio/Makefile (tests): Add bug-fclose1.
53970 * libio/bug-fclose1.c: New file.
53971
320a5dc0
PB
539722011-05-12 Ulrich Drepper <drepper@gmail.com>
53973
53974 [BZ #12511]
53975 * elf/dl-lookup.c (enter): Don't test for copy relocation here and
53976 don't set DF_1_NODELETE here.
53977 (do_lookup_x): When entering new entry test for copy relocation
53978 and if necessary set DF_1_NODELETE flag.
53979 * elf/tst-unique4.cc: New file.
53980 * elf/tst-unique4.h: New file.
53981 * elf/tst-unique4lib.cc: New file.
53982 * elf/Makefile: Add rules to build and run tst-unique4.
53983 Patch by Piotr Bury <pbury@goahead.com>.
53984
22836f52
UD
539852011-05-11 Ulrich Drepper <drepper@gmail.com>
53986
f574184a
UD
53987 [BZ #12052]
53988 * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
53989
e1fb097f
UD
53990 [BZ #12625]
53991 * misc/mntent_r.c (addmntent): Flush the stream after the output
53992
22836f52
UD
53993 [BZ #12393]
53994 * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
53995 (is_trusted_path_normalize): Skip initial colon. Append slash
53996 to empty buffer. Duplicate is_trusted_path code but allow
53997 constructed patch to be prefix.
53998 (is_dst): Allow $ORIGIN followed by /.
53999 (_dl_dst_substitute): Correct clearing of check_for_trusted.
54000 Correct testing of result of is_trusted_path_normalize
54001 (decompose_rpath): Fix warning.
54002
7b3b0b2a
UD
540032011-05-10 Ulrich Drepper <drepper@gmail.com>
54004
54005 [BZ #11257]
54006 * grp/initgroups.c (internal_getgrouplist): When we found the service
54007 list through the initgroups entry in nsswitch.conf do not always
54008 continue on a successful lookup. Don't always use the
eac80ce2 54009 __nss_group_database value if it is set.
7b3b0b2a
UD
54010 * nss/nsswitch.conf (initgroups): Change action for successful db
54011 lookup to continue for compatibility.
54012
2a81eaa5
UD
540132011-05-09 Ulrich Drepper <drepper@gmail.com>
54014
be97a69e
UD
54015 [BZ #11532]
54016 * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
54017 and CP774 modules.
54018 * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
54019 and CP774 modules.
54020 * iconvdata/tst-tables.sh: Likewise.
54021 * iconvdata/cp770.c: New file.
54022 * iconvdata/cp771.c: New file.
54023 * iconvdata/cp772.c: New file.
54024 * iconvdata/cp773.c: New file.
54025 * iconvdata/cp774.c: New file.
54026 * iconvdata/testdata/CP770: New file.
54027 * iconvdata/testdata/CP770..UTF8: New file.
54028 * iconvdata/testdata/CP771: New file.
54029 * iconvdata/testdata/CP771..UTF8: New file.
54030 * iconvdata/testdata/CP772: New file.
54031 * iconvdata/testdata/CP772..UTF8: New file.
54032 * iconvdata/testdata/CP773: New file.
54033 * iconvdata/testdata/CP773..UTF8: New file.
54034 * iconvdata/testdata/CP774: New file.
54035 * iconvdata/testdata/CP774..UTF8: New file.
54036
54037 * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
54038 END CHARMAP line.
54039 * iconvdata/gen-8bit-gap.sh: Likewise.
54040 * iconvdata/gen-8bit.sh: Likewise.
54041
c1e9e399
UD
54042 * locale/iso-639.def: Add ary entry.
54043
24c55fb3 54044 [BZ #11258]
96b4b1b0
UD
54045 * locale/C-translit.h.in: Add U20A1 transliteration.
54046
bdc2f971
KB
54047 [BZ #12178]
54048 * locale/iso-639.def: Add wae entry.
54049 Patch by Kevin Bortis <bortis@translate-wae.ch>.
54050
2952b117
UD
54051 [BZ #12545]
54052 * locale/programs/localedef.c (construct_output_path): Use ssize_t
54053 for n.
54054
2a81eaa5
UD
54055 [BZ #12711]
54056 * locale/C-translit.h.in: Add entry for U20B9.
54057 Patch by pravin.d.s@gmail.com.
54058
28377d1b
UD
540592011-05-08 Ulrich Drepper <drepper@gmail.com>
54060
7fb90fb8
UD
54061 [BZ #12713]
54062 * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
54063 ENAMETOOLONG use generic getcwd.
6fb2dde3
UD
54064 * sysdeps/posix/getcwd.c: Add support to use openat. Make usable
54065 in rtld. Use *stat64.
7fb90fb8 54066 * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
6fb2dde3 54067 Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
7fb90fb8 54068 * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
6fb2dde3
UD
54069 * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
54070 * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
54071 * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
54072 * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
54073 __fstatat64 macros.
7fb90fb8
UD
54074 * include/dirent.h: Add libc_hidden_proto for rewinddir.
54075 * dirent/rewinddir.c: Add libc_hidden_def.
54076 * sysdeps/mach/hurd/rewinddir.c: Likewise.
6fb2dde3 54077 * sysdeps/unix/rewinddir.c: Likewise. Don't do locking outside libc.
7fb90fb8 54078
28377d1b
UD
54079 * include/dirent.h (__alloc_dir): Add flags parameter.
54080 * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
54081 * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
54082 __alloc_dir.
54083 (__alloc_dir): Take new parameter. Don't call fcntl for invocations
54084 from fdopendir if O_CLOEXEC is already set.
54085
66bdbaa4
AM
540862011-03-15 Alan Modra <amodra@gmail.com>
54087
54088 * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
54089 l_tls_firstbyte_offset non-zero. Save padding offset in
54090 l_tls_firstbyte_offset for later use.
54091 * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
54092 freeing static tls block.
54093
95721191
JN
540942011-03-05 Jonathan Nieder <jrnieder@gmail.com>
54095
54096 * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
54097 where #ifdef was intended. The intent is to prevent ARG_MAX from
54098 being defined by the kernel headers.
54099
f87dfb1f
UD
541002011-05-07 Ulrich Drepper <drepper@gmail.com>
54101
54102 [BZ #12734]
54103 * resolv/resolv.h: Define RES_NOTLDQUERY.
54104 * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
54105 no-tld-query and set RES_NOTLDQUERY.
54106 * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
54107 * resolv/res_query.c (__libc_res_nsearch): Backport changes from
54108 modern BIND to search name as TLD unless forbidden.
54109
47c3cd7a
UD
541102011-05-07 Petr Baudis <pasky@suse.cz>
54111 Ulrich Drepper <drepper@gmail.com>
54112
54113 [BZ #12393]
54114 * elf/dl-load.c (fillin_rpath): Move trusted path check...
54115 (is_trusted_path): ...to here.
c1e9ea35 54116 (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
47c3cd7a 54117 (_dl_dst_substitute): Verify expanded $ORIGIN path elements
c1e9ea35 54118 using is_trusted_path_normalize() in setuid scripts.
47c3cd7a 54119
8a35c912
PP
541202011-05-06 Paul Pluzhnikov <ppluzhnikov@google.com>
54121
54122 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
54123 __BEGIN/__END_DECLS.
54124
acd41f47
UD
541252011-05-06 Ulrich Drepper <drepper@gmail.com>
54126
54127 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
54128 NSS_STATUS_NOTFOUND if no record was found.
54129
597df647
AS
541302011-05-05 Andreas Schwab <schwab@redhat.com>
54131
54132 * sunrpc/Makefile (headers): Add rpc/netdb.h.
54133 (headers-not-in-tirpc): Remove rpc/netdb.h
54134 * resolv/netdb.h: Revert last change.
54135
b9af1301
PP
541362011-05-05 Paul Pluzhnikov <ppluzhnikov@google.com>
54137
54138 * Makeconfig (link-libc-static): Use --{start,end}-group to handle
54139 circular dependency between libgcc.a and libc.a.
54140
4e34d5f5
AS
541412011-05-05 Andreas Schwab <schwab@redhat.com>
54142
54143 * resolv/netdb.h: Don't include <rpc/netdb.h>.
54144 * nis/Makefile: Don't install rpcsvc/*.
54145 * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
54146 instead of <rpc/types.h>.
54147 (MAXHOSTNAMELEN): Define.
54148
00ee369c
AS
541492011-05-03 Andreas Schwab <schwab@redhat.com>
54150
54151 * elf/ldconfig.c (add_dir): Don't crash on empty path.
54152
0b592a30
MB
541532011-04-28 Maciej Babinski <mbabinski@google.com>
54154
54155 [BZ #12714]
54156 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
54157 gethostbyname4_r when IPv6 results are possible.
54158
6e04cbbe
UD
541592011-05-02 Ulrich Drepper <drepper@gmail.com>
54160
54161 [BZ #12723]
54162 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
54163 _PC_PIPE_BUF handling.
54164
e4ecafe0
BH
541652011-04-30 Bruno Haible <bruno@clisp.org>
54166
54167 [BZ #12717]
54168 * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
54169 * resolv/netdb.h (getnameinfo): Change type of flags parameter
54170 to 'int'.
54171 * inet/getnameinfo.c (getnameinfo): Likewise.
54172
125ee683
UD
541732011-04-29 Ulrich Drepper <drepper@gmail.com>
54174
54175 * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
54176 to groups setting in database lookup.
54177 * nss/nsswitch.conf: Add initgroups entry.
54178
b722481a
EB
541792011-04-22 Ulrich Drepper <drepper@gmail.com>
54180
54181 [BZ #12685]
54182 * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
54183 mode string.
54184 Patch by Eric Blake <eblake@redhat.com>.
54185
4df46dbd
L
541862011-04-20 H.J. Lu <hongjiu.lu@intel.com>
54187
54188 * sunrpc/Makefile (need-export-routines): Add svc_run.
54189 (routines): Remove svc_run.
54190 ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
54191 * sunrpc/clnt_perr.c (clnt_perrno): Export.
54192 * sunrpc/svc_run.c (svc_run): Likewise.
54193 * sunrpc/svc_udp.c (svcudp_create): Likewise.
54194
e84142d2
UD
541952011-04-21 Ulrich Drepper <drepper@gmail.com>
54196
54197 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
54198 problem in reallocation in last patch.
54199
877175d8
UD
542002011-04-20 Ulrich Drepper <drepper@gmail.com>
54201
54202 * sunrpc/Makefile: Move inclusion of Rules.
54203
ab8eed78
UD
542042011-04-19 Ulrich Drepper <drepper@gmail.com>
54205
54206 * nss/nss_files/files-initgroups.c: New file.
54207 * nss/Makefile (libnss_files-routines): Add files-initgroups.
54208 * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
54209 _nss_files_initgroups_dyn.
54210
e3d8f584
RS
542112011-03-31 Richard Sandiford <richard.sandiford@linaro.org>
54212
54213 * elf/elf.h (R_ARM_IRELATIVE): Define.
54214
af190f45
UD
542152011-04-19 Ulrich Drepper <drepper@gmail.com>
54216
54217 * po/ru.po: Update from translation team.
54218
53cf59ef
UD
542192011-04-17 Ulrich Drepper <drepper@gmail.com>
54220
54221 * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
54222 dependencies.
54223
4c559bcd
MF
542242011-02-06 Mike Frysinger <vapier@gentoo.org>
54225
54226 [BZ #12653]
54227 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
54228 MEMCPY_CHK with USE_AS_BCOPY ifdef check.
54229 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
54230 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
54231 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
54232
4420675c
AS
542332011-03-28 Andreas Schwab <schwab@linux-m68k.org>
54234
54235 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
54236 differing bytes.
54237 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
54238 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
54239 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
54240
75ea32ab
UD
542412011-04-17 Ulrich Drepper <drepper@gmail.com>
54242
54243 [BZ #12420]
54244 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
54245 storing it.
54246 * stdlib/bug-getcontext.c: New file.
54247 * stdlib/Makefile: Add rules to build and run bug-getcontext.
54248
27390476
AK
542492011-04-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
54250
54251 * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
54252 instructions into .machine "z9-109".
54253 * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
54254 * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
54255
10442705
AK
542562011-04-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
54257
54258 * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
54259 between environment variables and auxiliary vector.
54260
7b57bfe5
UD
542612011-04-16 Ulrich Drepper <drepper@gmail.com>
54262
54263 * Makefile: Add rules to build linkobj/libc.so.
54264 * include/libc-symbols.h: Define libc_hidden_nolink.
54265 * include/rpc/auth.h: Mark functions which are to be hidden.
54266 * include/rpc/auth_des.h: Likewise.
54267 * include/rpc/auth_unix.h: Likewise.
54268 * include/rpc/clnt.h: Likewise.
54269 * include/rpc/des_crypt.h: Likewise.
54270 * include/rpc/key_prot.h: Likewise.
54271 * include/rpc/pmap_clnt.h: Likewise.
54272 * include/rpc/pmap_prot.h: Likewise.
54273 * include/rpc/pmap_rmt.h: Likewise.
54274 * include/rpc/rpc_msg.h: Likewise.
54275 * include/rpc/svc.h: Likewise.
54276 * include/rpc/svc_auth.h: Likewise.
54277 * include/rpc/xdr.h: Likewise.
54278 * nis/Makefile: Link all DSOs against linkobj/libc.so.
54279 * nss/Makefile: Likewise.
54280 * sunrpc/Makefile: Don't install headers. Build library with normal
54281 entry points. Don't build rpcinfo. Link RPC tests appropriately.
54282 * sunrpc/auth_des.c: Hide exported symbols by default, export some
54283 for the compat linking library. Remove use of INTDEF/INTUSE.
54284 * sunrpc/auth_none.c: Likewise.
54285 * sunrpc/auth_unix.c: Likewise.
54286 * sunrpc/authdes_prot.c: Likewise.
54287 * sunrpc/authuxprot.c: Likewise.
54288 * sunrpc/clnt_gen.c: Likewise.
54289 * sunrpc/clnt_perr.c: Likewise.
54290 * sunrpc/clnt_raw.c: Likewise.
54291 * sunrpc/clnt_simp.c: Likewise.
54292 * sunrpc/clnt_tcp.c: Likewise.
54293 * sunrpc/clnt_udp.c: Likewise.
54294 * sunrpc/clnt_unix.c: Likewise.
54295 * sunrpc/des_crypt.c: Likewise.
54296 * sunrpc/des_soft.c: Likewise.
54297 * sunrpc/get_myaddr.c: Likewise.
54298 * sunrpc/key_call.c: Likewise.
54299 * sunrpc/key_prot.c: Likewise.
54300 * sunrpc/netname.c: Likewise.
54301 * sunrpc/pm_getmaps.c: Likewise.
54302 * sunrpc/pm_getport.c: Likewise.
54303 * sunrpc/pmap_clnt.c: Likewise.
54304 * sunrpc/pmap_prot.c: Likewise.
54305 * sunrpc/pmap_prot2.c: Likewise.
54306 * sunrpc/pmap_rmt.c: Likewise.
54307 * sunrpc/publickey.c: Likewise.
54308 * sunrpc/rpc_cmsg.c: Likewise.
54309 * sunrpc/rpc_common.c: Likewise.
54310 * sunrpc/rpc_dtable.c: Likewise.
54311 * sunrpc/rpc_prot.c: Likewise.
54312 * sunrpc/rpc_thread.c: Likewise.
54313 * sunrpc/rtime.c: Likewise.
54314 * sunrpc/svc.c: Likewise.
54315 * sunrpc/svc_auth.c: Likewise.
54316 * sunrpc/svc_authux.c: Likewise.
54317 * sunrpc/svc_raw.c: Likewise.
54318 * sunrpc/svc_run.c: Likewise.
54319 * sunrpc/svc_simple.c: Likewise.
54320 * sunrpc/svc_tcp.c: Likewise.
54321 * sunrpc/svc_udp.c: Likewise.
54322 * sunrpc/svc_unix.c: Likewise.
54323 * sunrpc/svcauth_des.c: Likewise.
54324 * sunrpc/xcrypt.c: Likewise.
54325 * sunrpc/xdr.c: Likewise.
54326 * sunrpc/xdr_array.c: Likewise.
54327 * sunrpc/xdr_float.c: Likewise.
54328 * sunrpc/xdr_intXX_t.c: Likewise.
54329 * sunrpc/xdr_mem.c: Likewise.
54330 * sunrpc/xdr_rec.c: Likewise.
54331 * sunrpc/xdr_ref.c: Likewise.
54332 * sunrpc/xdr_sizeof.c: Likewise.
54333 * sunrpc/xdr_stdio.c: Likewise.
54334
e6c61494
UD
543352011-04-10 Ulrich Drepper <drepper@gmail.com>
54336
54337 [BZ #12650]
54338 * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
54339 * sysdeps/ia64/dl-tls.h: Likewise.
54340 * sysdeps/powerpc/dl-tls.h: Likewise.
54341 * sysdeps/s390/dl-tls.h: Likewise.
54342 * sysdeps/sh/dl-tls.h: Likewise.
54343 * sysdeps/sparc/dl-tls.h: Likewise.
54344 * sysdeps/x86_64/dl-tls.h: Likewise.
54345 * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
54346
34fe483e
AS
543472011-03-14 Andreas Schwab <schwab@redhat.com>
54348
54349 * elf/dl-load.c (_dl_dst_substitute): When skipping the first
54350 rpath element also skip the following colon.
54351 (expand_dynamic_string_token): Add is_path parameter and pass
54352 down to DL_DST_REQUIRED and _dl_dst_substitute.
54353 (decompose_rpath): Call expand_dynamic_string_token with
54354 non-zero is_path. Ignore empty rpaths.
54355 (_dl_map_object_from_fd): Call expand_dynamic_string_token
54356 with zero is_path.
54357
f12a32e6
AS
543582011-04-08 Andreas Schwab <schwab@linux-m68k.org>
54359
54360 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
54361 Make cancelable.
54362
38a7d692
UD
543632011-04-09 Ulrich Drepper <drepper@gmail.com>
54364
54365 [BZ #12655]
54366 * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
54367 Patch by Filipe David Manana <fdmanana@apache.org>.
54368
e451d22b
AS
543692011-04-07 Andreas Schwab <schwab@redhat.com>
54370
54371 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
54372 Maintain aligned stack.
54373 (CHECK_RSP): Remove unused macro.
54374
dedc7c7b
UD
543752011-04-03 Ulrich Drepper <drepper@gmail.com>
54376
54377 * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
54378 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
54379
94521213
UD
543802011-04-02 Ulrich Drepper <drepper@gmail.com>
54381
54382 * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
54383
8cb700c0 54384 * include/features.h: Mention __USE_XOPEN2K8 in comment.
81489b2e 54385
0354e355
L
543862011-03-26 H.J. Lu <hongjiu.lu@intel.com>
54387
54388 [BZ #12518]
54389 * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
54390 * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
54391 * sysdeps/x86_64/memmove.c: New file.
54392 * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
54393 (memcpy): Renamed to ...
54394 (__new_memcpy): This.
54395 (memcpy): Provide GLIBC_2_14 memcpy.
54396 * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
54397 (memcpy): Provide GLIBC_2_2_5 memcpy.
54398
8593482f
UD
543992011-04-01 Ulrich Drepper <drepper@gmail.com>
54400
54401 [BZ #12631]
54402 * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
54403
81a5726b
AS
544042011-03-30 Andreas Schwab <schwab@redhat.com>
54405
54406 * misc/syncfs.c: New file.
54407 * misc/Makefile (routines): Add syncfs.
54408 * posix/unistd.h: Declare syncfs.
54409 * sysdeps/unix/syscalls.list: Add syncfs.
54410
00e5419f
AS
544112011-04-01 Andreas Schwab <schwab@redhat.com>
54412
54413 * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
54414 open_by_handle_at.
54415 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
54416 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54417 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54418 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54419 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54420 * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
54421 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54422
748876bf
UD
544232011-04-01 Ulrich Drepper <drepper@gmail.com>
54424
658e451d
UD
54425 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
54426 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54427 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
54428 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54429 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54430 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54431 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54432
748876bf
UD
54433 * io/Makefile: Compile fallocate.c, fallocate64.c, and
54434 sync_file_range.c with -fexceptions.
54435 * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
54436 * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
54437 * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
54438 * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
54439 * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
54440 * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
54441 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
3167dad0
UD
54442 sync_file_range as cancellation point
54443 * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file. This is
54444 now a wrapper around __call_sync_file_range with cancellation handling.
54445 * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
54446 * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this. Change
54447 function name to __call_sync_file_range.
54448 * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
54449 Add call_sync_file_range.
748876bf 54450
6e63d5e1
AS
544512011-04-01 Andreas Schwab <schwab@redhat.com>
54452
54453 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
748876bf 54454 bits/timex.h.
6e63d5e1 54455
46998f74
UD
544562011-04-01 Ulrich Drepper <drepper@gmail.com>
54457
4c1423ed
UD
54458 * iconv/iconv.h: Fix typo in comment.
54459 * io/fcntl.h: Likewise.
54460 * libio/stdio.h: Likewise.
54461 * posix/spawn.h: Likewise.
54462 * posix/unistd.h: Likewise.
54463 * stdlib/stdlib.h: Likewise.
54464 * time/time.h: Likewise.
54465 * wcsmbs/wchar.h: Likewise.
54466
158648c0
UD
54467 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
54468 open_by_handle): Add.
54469 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
54470 and MAX_HANDLE_SZ. Declare name_to_handle_at and open_by_handle.
54471 Augment a few comments.
54472 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
54473 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54474 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54475 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54476 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54477 * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
54478 open_by_handle.
54479
46998f74
UD
54480 * io/fcntl.h (AT_EMPTY_PATH): Define.
54481
83fe108b
UD
544822011-03-30 Ulrich Drepper <drepper@gmail.com>
54483
54484 * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
54485 * sysdeps/unix/sysv/linux/bits/time.h: New file.
54486 * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
54487 to...
54488 * sysdeps/unix/sysv/linux/bits/timex.h: ...here. New file.
034c4e15
UD
54489 * Versions.def: Add GLIBC_2.14.
54490 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
54491 Export.
83fe108b 54492
bb242059
UD
544932011-03-22 Ulrich Drepper <drepper@gmail.com>
54494
54495 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
54496 round counter.
54497 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
54498
c97a1282
L
544992011-03-20 H.J. Lu <hongjiu.lu@intel.com>
54500
54501 [BZ #12597]
54502 * string/test-strncmp.c (do_page_test): New function.
54503 (check2): Likewise.
54504 (test_main): Call check2.
54505 * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
54506
2a115601
UD
545072011-03-20 Ulrich Drepper <drepper@gmail.com>
54508
54509 [BZ #12587]
54510 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
54511 Handle cache information in CPU leaf 4.
54512 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
54513
8126d904
UD
545142011-03-18 Ulrich Drepper <drepper@gmail.com>
54515
042c49c6 54516 [BZ #12583]
8126d904
UD
54517 * posix/fnmatch.c (fnmatch): Check size of pattern in wide
54518 character representation.
54519 Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
54520
ccfe366e
RA
545212011-03-16 Ryan S. Arnold <rsa@us.ibm.com>
54522
54523 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
54524 END(__isnan) to END(__isnanf) to match function entry point/label
54525 EALIGN(__isnanf,...).
54526
c6e13027
JJ
545272011-03-10 Jakub Jelinek <jakub@redhat.com>
54528
54529 * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
54530
33f85a3f
UD
545312011-03-10 Ulrich Drepper <drepper@gmail.com>
54532
028478fa
UD
54533 [BZ #12510]
54534 * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
54535 copy from the symbol referenced in the relocation to initialize the
54536 used variable.
54537 Patch by Piotr Bury <pbury@goahead.com>.
54538 * elf/Makefile: Add rules to build and tst-unique3.
54539 * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
54540 * elf/tst-unique3.cc: New file.
54541 * elf/tst-unique3.h: New file.
54542 * elf/tst-unique3lib.cc: New file.
54543 * elf/tst-unique3lib2.cc: New file.
54544
33f85a3f
UD
54545 * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
54546
03592fc7
MF
545472011-03-10 Mike Frysinger <vapier@gentoo.org>
54548
54549 * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
54550 $LDFLAGS and -nostdlib -nostartfiles to linking step. Change main
54551 to _start.
03592fc7 54552
6a5ee102
UD
545532011-03-06 Ulrich Drepper <drepper@gmail.com>
54554
54555 * elf/dl-load.c (_dl_map_object): If we are looking for the first
54556 to-be-loaded object along a path to loader is ld.so.
54557
7e4ba49c
HJ
545582011-03-02 Harsha Jagasia <harsha.jagasia@amd.com>
54559 Ulrich Drepper <drepper@gmail.com>
54560
54561 * sysdeps/x86_64/memset.S: After aligning destination, code
54562 branches to different locations depending on the value of
54563 misalignment, when multiarch is enabled. Fix this.
54564
545652011-03-02 Harsha Jagasia <harsha.jagasia@amd.com>
54566
54567 * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
54568 Set _x86_64_preferred_memory_instruction for AMD processsors.
54569 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
54570 Set bit_Prefer_SSE_for_memop for AMD processors.
54571
13a804de
UD
545722011-03-04 Ulrich Drepper <drepper@gmail.com>
54573
54574 * libio/fmemopen.c (fmemopen): Optimize a bit.
54575
9d25c392
AS
545762011-03-03 Andreas Schwab <schwab@redhat.com>
54577
54578 * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
54579
a5543c6a
RM
545802011-03-03 Roland McGrath <roland@redhat.com>
54581
54582 * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
54583
012d35f7
DM
545842011-02-28 Aurelien Jarno <aurelien@aurel32.net>
54585
7e4ba49c 54586 * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
012d35f7
DM
54587 __bzero_ultra1 instead of __memset_ultra1.
54588
4bff6e01
AS
545892011-02-23 Andreas Schwab <schwab@redhat.com>
54590 Ulrich Drepper <drepper@gmail.com>
54591
54592 [BZ #12509]
54593 * include/link.h (struct link_map): Add l_orig_initfini.
54594 * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
54595 returning unsuccessfully.
54596 * elf/dl-close.c (_dl_close_worker): If this is the last explicit
54597 close of a file loaded at startup, restore the original l_initfini
54598 list.
54599 * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
54600 list, store the pointer.
54601 * elf/Makefile ($(objpfx)noload-mem): New rule.
54602 (noload-ENV): Define.
54603 (tests): Add $(objpfx)noload-mem.
54604 * elf/noload.c: Include <memcheck.h>.
54605 (main): Call mtrace. Close all opened handles.
54606
f2092faf
AS
546072011-02-17 Andreas Schwab <schwab@redhat.com>
54608
54609 [BZ #12454]
54610 * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
54611 dependencies are missing.
54612
6c8a2e88
ST
546132011-02-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
54614
f2092faf 54615 Fix __if_freereq crash: Unlike the generic version which uses free,
6c8a2e88
ST
54616 Hurd needs munmap.
54617 * sysdeps/mach/hurd/ifreq.h: New file.
54618
84a42118
PB
546192011-01-27 Petr Baudis <pasky@suse.cz>
54620 Ulrich Drepper <drepper@gmail.com>
54621
071f805e 54622 [BZ 12445]#
84a42118
PB
54623 * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
54624 to extend_alloca().
54625 * stdio-common/bug23.c: New file.
54626 * stdio-common/Makefile (tests): Add bug23.
54627
e23fe25b
AS
546282010-09-28 Andreas Schwab <schwab@redhat.com>
54629 Ulrich Drepper <drepper@gmail.com>
54630
54631 [BZ #12489]
54632 * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
54633 before performing relro protection. At old place add assertion
54634 to make sure nothing changed.
54635
d3f02e10
NS
546362011-02-17 Nathan Sidwell <nathan@codesourcery.com>
54637 Glauber de Oliveira Costa <glommer@gmail.com>
54638
54639 * elf/elf.h: Add new ARM TLS relocs.
54640
d55fd7a5
RA
546412011-02-16 Ryan S. Arnold <rsa@us.ibm.com>
54642
54643 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
54644 (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
54645 cast from r3.
54646 * sysdeps/wordsize-64/Makefile: New file. Add tst-writev to
54647 'tests' variable.
54648 * sysdeps/wordsize-64/tst-writev.c: New file.
54649
2206397e
RA
546502011-02-15 Ryan S. Arnold <rsa@us.ibm.com>
54651
54652 * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
54653 -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
54654 insns in _dl_start to prevent a TOC reference before relocs are
54655 resolved.
54656
e9433893
UD
546572011-02-15 Ulrich Drepper <drepper@gmail.com>
54658
54659 [BZ #12469]
54660 * Makeconfig: Remove RANLIB definition.
54661 * Makerules: Don't use RANLIB.
54662 * aclocal.m4: Remove ranlib test.
54663 * configure.in: No need to check for ranlib.
54664 * elf/rtld-Rules: Don't use RANLIB.
54665
f75286c6
ST
546662011-02-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
54667
8e31c82d
ST
54668 * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
54669 protection macro.
54670 * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
54671 inclusion protection macro.
54672
f75286c6
ST
54673 * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
54674 SIGRTMIN and SIGRTMAX and print information in that case only when
54675 SIGRTMIN is defined.
54676
c1d0e639
JJ
546772011-02-11 Jakub Jelinek <jakub@redhat.com>
54678
54679 * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
54680 arginfo fn returning -1.
54681
54682 * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
54683 and thousands string is zero terminated.
54684
edf9294e
AS
546852011-02-03 Andreas Schwab <schwab@redhat.com>
54686
54687 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
54688 sysdeps/unix/sysv/linux/bits/socket.h.
54689
2b7e92df
ST
546902011-01-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
54691
edf9294e
AS
54692 * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
54693 (__CPU_COUNT): Remove old macros.
54694 (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
54695 (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
54696 (__CPU_ALLOC, __CPU_FREE): Add macros.
2b7e92df
ST
54697 (__sched_cpualloc, __sched_cpufree): Add declarations.
54698
a4c7ea7b
UD
546992011-02-05 Ulrich Drepper <drepper@gmail.com>
54700
54701 * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
54702 (struct datahead): Reuse 32 bits of the alignment for a TTL field.
54703 * nscd/aicache.c (addhstaiX): Return timeout of added value.
54704 (readdhstai): Return value of addhstaiX call.
54705 * nscd/grpcache.c (cache_addgr): Return timeout of added value.
54706 (addgrbyX): Return value returned by cache_addgr.
54707 (readdgrbyname): Return value returned by addgrbyX.
54708 (readdgrbygid): Likewise.
54709 * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
54710 (addpwbyX): Return value returned by cache_addpw.
54711 (readdpwbyname): Return value returned by addhstbyX.
54712 (readdpwbyuid): Likewise.
54713 * nscd/servicescache.c (cache_addserv): Return timeout of added value.
54714 (addservbyX): Return value returned by cache_addserv.
54715 (readdservbyname): Return value returned by addservbyX:
54716 (readdservbyport): Likewise.
54717 * nscd/hstcache.c (cache_addhst): Return timeout of added value.
54718 (addhstbyX): Return value returned by cache_addhst.
54719 (readdhstbyname): Return value returned by addhstbyX.
54720 (readdhstbyaddr): Likewise.
54721 (readdhstbynamev6): Likewise.
54722 (readdhstbyaddrv6): Likewise.
54723 * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
54724 (readdinitgroups): Return value returned by addinitgroupsX.
54725 * nscd/cache.c (readdfcts): Change return value of functions to time_t.
54726 (prune_cache): Keep track of timeout value of re-added entries.
54727 * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
54728 * nscd/nscd.h: Adjust prototypes of readd* functions.
54729
a0bf67cc
RM
547302011-02-04 Roland McGrath <roland@redhat.com>
54731
54732 * nis/nis_server.c (nis_servstate): Use the right name for 0.
54733 (nis_stats): Likewise.
54734 * nis/nis_modify.c (nis_modify): Likewise.
54735 * nis/nis_remove.c (nis_remove): Likewise.
54736 * nis/nis_add.c (nis_add): Likewise.
54737
54738 * elf/dl-object.c (_dl_new_object): Remove unused variable L.
54739
54740 * posix/fnmatch_loop.c: Add some consts.
54741
54742 * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
54743
435b95eb
L
547442011-02-02 H.J. Lu <hongjiu.lu@intel.com>
54745
54746 [BZ #12460]
54747 * config.make.in (config-cflags-novzeroupper): Define.
54748 * configure.in: Substitute libc_cv_cc_novzeroupper.
54749 * elf/Makefile (AVX-CFLAGS): Define.
54750 (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
54751 (CFLAGS-tst-auditmod4a.c): Likewise.
54752 (CFLAGS-tst-auditmod4b.c): Likewise.
54753 (CFLAGS-tst-auditmod6b.c): Likewise.
54754 (CFLAGS-tst-auditmod6c.c): Likewise.
54755 (CFLAGS-tst-auditmod7b.c): Likewise.
54756 * sysdeps/i386/configure.in: Check -mno-vzeroupper.
54757
8517b15e
UD
547582011-02-02 Ulrich Drepper <drepper@gmail.com>
54759
54760 * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
54761 function to the callback.
54762 Patch partly by Jiri Olsa <jolsa@redhat.com>.
54763
10a656fe
AS
547642011-02-02 Andreas Schwab <schwab@redhat.com>
54765
54766 * shadow/sgetspent.c: Check return value of __sgetspent_r instead
54767 of errno.
54768
968dad0a
UD
547692011-01-19 Ulrich Drepper <drepper@gmail.com>
54770
9f94d2ea 54771 [BZ #11724]
968dad0a
UD
54772 * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
54773 of constructors.
54774 * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
54775 of destructors.
54776 (_dl_fini): Don't call _dl_sort_fini if there is only one object.
54777
54778 [BZ #11724]
54779 * elf/Makefile: Add rules to build and run new test.
54780 * elf/tst-initorder.c: New file.
54781 * elf/tst-initorder.exp: New file.
54782 * elf/tst-initordera1.c: New file.
54783 * elf/tst-initordera2.c: New file.
54784 * elf/tst-initordera3.c: New file.
54785 * elf/tst-initordera4.c: New file.
54786 * elf/tst-initorderb1.c: New file.
54787 * elf/tst-initorderb2.c: New file.
54788 * elf/tst-order-a1.c: New file.
54789 * elf/tst-order-a2.c: New file.
54790 * elf/tst-order-a3.c: New file.
54791 * elf/tst-order-a4.c: New file.
54792 * elf/tst-order-b1.c: New file.
54793 * elf/tst-order-b2.c: New file.
54794 * elf/tst-order-main.c: New file.
54795 New test case by George Gensure <werkt0@gmail.com>.
54796
86e92359
UD
547972010-10-01 Andreas Schwab <schwab@redhat.com>
54798
54799 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
54800 decoding ACE if AI_CANONIDN.
54801
5d5732b0
UD
548022011-01-18 Ulrich Drepper <drepper@gmail.com>
54803
54804 * elf/Makefile: Build IFUNC tests unless multi-arch = no.
54805
a77e8cbc
UD
548062011-01-17 Ulrich Drepper <drepper@gmail.com>
54807
6392473f
UD
54808 * version.h (RELEASE): Bump for 2.13 release.
54809 * include/features.h: (__GLIBC_MINOR__): Bump to 13.
54810
620a0529
UD
54811 * io/fcntl.h: Define AT_NO_AUTOMOUNT.
54812
18ba70a5
UD
54813 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
54814 MADV_NOHUGEPAGE.
32465c3e
UD
54815 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
54816 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
54817 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
54818 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
54819 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
54820 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
54821
c0dafcf1
UD
54822 * posix/getconf.c: Update copyright year.
54823 * catgets/gencat.c: Likewise.
54824 * csu/version.c: Likewise.
54825 * debug/catchsegv.sh: Likewise.
54826 * debug/xtrace.sh: Likewise.
54827 * elf/ldconfig.c: Likewise.
54828 * elf/ldd.bash.in: Likewise.
54829 * elf/sprof.c (print_version): Likewise.
54830 * iconv/iconv_prog.c: Likewise.
54831 * iconv/iconvconfig.c: Likewise.
54832 * locale/programs/locale.c: Likewise.
54833 * locale/programs/localedef.c: Likewise.
54834 * malloc/memusage.sh: Likewise.
54835 * malloc/mtrace.pl: Likewise.
54836 * nscd/nscd.c (print_version): Likewise.
54837 * nss/getent.c: Likewise.
54838
a77e8cbc
UD
54839 * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
54840 PF_CAIF, and PF_ALG.
54841 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
54842
77e8bddf
AS
548432011-01-16 Andreas Schwab <schwab@linux-m68k.org>
54844
1f20b93a
AS
54845 * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
54846 (modules-names): Use them.
54847 (ifunc-test-modules, ifunc-pie-tests): Define.
54848 (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
54849 tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
54850 (test-extras): Likewise.
54851 ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
54852 $(compile-command.c).
54853 ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
54854 (all-built-dso): Define.
54855 (check-textrel.out, check-execstack.out): Depend on it.
54856
77e8bddf
AS
54857 * configure.in: Don't override --enable-multi-arch.
54858
bc425b33
UD
548592011-01-15 Ulrich Drepper <drepper@gmail.com>
54860
54861 [BZ #6812]
54862 * nscd/hstcache.c (tryagain): Define.
54863 (cache_addhst): Return tryagain not notfound for temporary errors.
54864 (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
54865 failed.
54866
794c3ad3
UD
548672011-01-14 Ulrich Drepper <drepper@gmail.com>
54868
70181fdd
UD
54869 [BZ #10563]
54870 * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
54871 to make the syscall.
54872 * sysdeps/unix/sysv/linux/setgroups.c: New file.
54873
794c3ad3
UD
54874 [BZ #12378]
54875 * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
54876 and fall back to matching as normal character if the string ends before
54877 the matching ']' is found. This is what POSIX requires.
54878 * posix/testfnm.c: Adjust test result.
54879 * posix/globtest.sh: Adjust test result. Add new test.
54880 * posix/tst-fnmatch.input: Likewise.
54881 * posix/tst-fnmatch2.c: Add new test.
54882
68dc9497
AS
548832010-12-28 Andreas Schwab <schwab@linux-m68k.org>
54884
54885 * elf/Makefile (check-execstack): Revert last change. Depend on
54886 check-execstack.h.
54887 (check-execstack.h): New target.
54888 (generated): Add check-execstack.h.
54889 * elf/check-execstack.c: Include "check-execstack.h".
54890 (main): Revert last change.
54891 (handle_file): Return zero if GNU_STACK is absent and
54892 DEFAULT_STACK_PERMS doesn't include PF_X.
54893
451f001b
UD
548942011-01-13 Ulrich Drepper <drepper@gmail.com>
54895
cfa28e56
UD
54896 * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
54897 in child fails because the descriptor is already closed.
8cf8ce17
UD
54898 * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
54899 * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
54900 * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
cfa28e56 54901
1086d70d
UD
54902 [BZ #12397]
54903 * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
54904 syscall.
54905
451f001b
UD
54906 [BZ #10484]
54907 * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
54908 temporary buffer used to handle multi lookups locally.
a85b5cb4 54909 * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
451f001b 54910
08769175
UD
549112011-01-12 Ulrich Drepper <drepper@gmail.com>
54912
54913 * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
54914 loader is ld.so.
54915
5e49c52e
UD
549162011-01-10 Paul Pluzhnikov <ppluzhnikov@google.com>
54917
54918 * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
54919 alignment for SSE2.
54920
60522a5f
UD
549212011-01-12 Ulrich Drepper <drepper@gmail.com>
54922
54923 [BZ #12394]
54924 * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
54925 characters. When rounding increased number of integer digits recompute
54926 number of groups.
54927 * stdio-common/tst-grouping.c: New file.
54928 * stdio-common/Makefile: Add rules to build and run tst-grouping.
54929
f257bbd7
UD
549302011-01-09 Ulrich Drepper <drepper@gmail.com>
54931
54932 * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
54933 __FD_CLR, and __FS_ISSET. gcc generates better code on its own.
54934
54935 * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
54936 void.
54937 * bits/select.h: Likewise.
54938
fa9c15cb
UD
549392011-01-08 Ulrich Drepper <drepper@gmail.com>
54940
54941 * po/ja.po: Update from translation team.
54942
16c2895f
DM
549432011-01-04 David S. Miller <davem@sunset.davemloft.net>
54944
54945 [BZ #11155]
54946 * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
54947 implementation just like for lxstat, fxstatat, et al.
54948
2543fef2
JM
549492010-12-27 Jim Meyering <meyering@redhat.com>
54950
54951 [BZ #12348]
54952 * posix/regexec.c (build_trtable): Return failure indication upon
54953 calloc failure. Otherwise, re_search_internal could infloop on OOM.
54954
98727dbe
UD
549552010-12-25 Ulrich Drepper <drepper@gmail.com>
54956
5bd6dc5c
UD
54957 [BZ #12201]
54958 * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
54959 * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
54960 * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
54961 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
54962
97983464
UD
54963 [BZ #12207]
54964 * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
54965
98727dbe
UD
54966 [BZ #12204]
54967 * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
54968 * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
54969
4a531bb0
L
549702010-12-15 H.J. Lu <hongjiu.lu@intel.com>
54971
54972 * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
54973 * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
54974 script has SORT_BY_INIT_PRIORITY.
54975 * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
54976 NO_CTORS_DTORS_SECTIONS is defined.
54977 * elf/soinit.c: Likewise.
54978 * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
54979 NO_CTORS_DTORS_SECTIONS is defined.
54980 * sysdeps/mach/hurd/i386/init-first.c: Likewise.
54981 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
54982 * sysdeps/sh/init-first.c: Likewise.
54983 * sysdeps/unix/sysv/linux/init-first.c: Likewise.
54984
07eb4b71
UD
549852010-12-24 Ulrich Drepper <drepper@gmail.com>
54986
54987 * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
54988 always use the slow path.
54989
30950a5f
RA
549902010-12-15 Ryan S. Arnold <rsa@us.ibm.com>
54991
54992 * elf/Makefile: (check-execstack): Replace $(native-compile) with a
54993 similar rule which adds the sysdep directories to the header search in
54994 order to pick up the correct platform stackinfo.h.
54995 * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
54996 perform test if it is, otherwise return successfully without testing.
54997 * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
54998 DEFAULT_STACK_PERMS define in stackinfo.h.
54999 * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
55000 defined in stackinfo.h.
55001 * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
55002 DEFAULT_STACK_PERMS defined in stackinfo.h.
55003 * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
55004 * sysdeps/ia64/stackinfo.h: Likewise.
55005 * sysdeps/s390/stackinfo.h: Likewise.
55006 * sysdeps/sh/stackinfo.h: Likewise.
55007 * sysdeps/sparc/stackinfo.h: Likewise.
55008 * sysdeps/x86_64/stackinfo.h: Likewise.
55009 * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
55010 PF_X for powerpc64. Retain PF_X for powerpc32.
55011
db753e2c
UD
550122010-12-19 Ulrich Drepper <drepper@gmail.com>
55013
14b697f7
UD
55014 * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
55015 accurately.
db753e2c
UD
55016 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
55017 GETDENTS_64BIT_ALIGNED.
55018
28300719
UD
550192010-12-14 Ulrich Drepper <dreper@gmail.com>
55020
14b697f7 55021 * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
28300719 55022
4f197237
AS
550232010-12-10 Andreas Schwab <schwab@redhat.com>
55024
dbb0472f
AS
55025 * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
55026 _GNU_SOURCE.
55027
4f197237
AS
55028 * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
55029 * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
55030 Remove __restrict.
55031 (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
55032 (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
55033
fb88ac72
UD
550342010-12-09 Ulrich Drepper <drepper@gmail.com>
55035
55036 [BZ #11655]
55037 * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
55038 are initialized.
55039
42acbb92
JJ
550402010-12-09 Jakub Jelinek <jakub@redhat.com>
55041
55042 * string/bits/string3.h (memmove, bcopy): Remove __restrict.
55043
c038d98d
UD
550442010-12-03 Ulrich Drepper <drepper@gmail.com>
55045
55046 * po/it.po: Update from translation team.
55047
3a4a2499
L
550482010-12-01 H.J. Lu <hongjiu.lu@intel.com>
55049
55050 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
55051 unused codes.
55052
1e24cf6e
UD
550532010-11-30 Ulrich Drepper <drepper@gmail.com>
55054
55055 * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
55056
a7690819
AS
550572010-11-24 Andreas Schwab <schwab@redhat.com>
55058
55059 * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
55060 specially.
55061 (gaih_getanswer_slice): Likewise.
55062
3bf8d1b1
JJ
550632010-10-20 Jakub Jelinek <jakub@redhat.com>
55064
55065 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
55066
6db52fbb
PB
550672010-05-31 Petr Baudis <pasky@suse.cz>
55068
55069 [BZ #11149]
55070 * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
55071 silently even in the chroot mode.
55072
eaca7569
UD
550732010-11-22 Ulrich Drepper <drepper@gmail.com>
55074
55075 * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
55076 last patch a bit. Pretty printing
55077
3056dcdb
UD
550782010-05-31 Petr Baudis <pasky@suse.cz>
55079
55080 [BZ #10085]
55081 * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
55082 initialization of skip_initgroups_dyn.
55083
cf7c9078
UD
550842010-11-19 Ulrich Drepper <drepper@gmail.com>
55085
55086 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
55087 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
55088
a1fb5e3e
UD
550892010-11-16 Ulrich Drepper <drepper@gmail.com>
55090
55091 * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
55092
3540d66b
AS
550932010-11-11 Andreas Schwab <schwab@redhat.com>
55094
55095 * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
55096 * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
55097 (tst-fnmatch-ENV): Set MALLOC_TRACE.
55098 ($(objpfx)tst-fnmatch-mem): New rule.
55099 (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
55100 * posix/tst-fnmatch.c (main): Call mtrace.
55101
13b69574
L
551022010-11-11 H.J. Lu <hongjiu.lu@intel.com>
55103
55104 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55105 Support Intel processor model 6 and model 0x2c.
55106
da93d214
LM
551072010-11-10 Luis Machado <luisgpm@br.ibm.com>
55108
55109 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
55110 signed comparison.
55111
8ca52c6e
L
551122010-11-09 H.J. Lu <hongjiu.lu@intel.com>
55113
55114 [BZ #12205]
55115 * string/test-strncasecmp.c (check_result): New function.
55116 (do_one_test): Use it.
55117 (check1): New function.
55118 (test_main): Use it.
55119 * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
55120 Support strcasecmp and strncasecmp.
55121
69da074d
UD
551222010-11-08 Ulrich Drepper <drepper@gmail.com>
55123
55124 [BZ #12194]
55125 * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
55126 * sysdeps/x86_64/bits/byteswap.h: Likewise.
55127
ff02d528
L
551282010-11-07 H.J. Lu <hongjiu.lu@intel.com>
55129
55130 * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
55131 IFUNC support.
55132 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55133 memset-x86-64.
55134 * sysdeps/x86_64/multiarch/bzero.S: New file.
55135 * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
55136 * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
55137 * sysdeps/x86_64/multiarch/memset.S: New file.
55138 * sysdeps/x86_64/multiarch/memset_chk.S: New file.
55139 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
55140 Set bit_Prefer_SSE_for_memop for Intel processors.
55141 * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
55142 Define.
55143 (index_Prefer_SSE_for_memop): Define.
55144 (HAS_PREFER_SSE_FOR_MEMOP): Define.
55145
344d0b54
LM
551462010-11-04 Luis Machado <luisgpm@br.ibm.com>
55147
55148 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
55149 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
55150
c0dde15b
UD
551512010-11-03 H.J. Lu <hongjiu.lu@intel.com>
55152
55153 [BZ #12191]
55154 * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
55155 (__x86_64_raw_data_cache_size_half): Likewise.
55156 (__x86_64_raw_shared_cache_size): Likewise.
55157 (__x86_64_raw_shared_cache_size_half): Likewise.
55158
55159 * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
55160 (__x86_64_raw_data_cache_size_half): Likewise.
55161 (__x86_64_raw_shared_cache_size): Likewise.
55162 (__x86_64_raw_shared_cache_size_half): Likewise.
55163 (init_cacheinfo): Set __x86_64_raw_data_cache_size,
55164 __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
55165 and __x86_64_raw_shared_cache_size_half. Round
55166 __x86_64_data_cache_size_half, __x86_64_data_cache_size
55167 __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
55168 to multiple of 256 bytes.
55169
0e516e0e
MS
551702010-11-03 Ulrich Drepper <drepper@gmail.com>
55171
55172 [BZ #12167]
55173 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
55174 of inacessible symlinks. Verify result of symlink before returning it.
55175 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
55176 Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
55177
0e012e87
ER
551782010-10-28 Erich Ritz <erichritz@gmail.com>
55179
55180 * math/math.h (isinf): Fix typo in comment.
55181
de0ff7bc
UD
551822010-11-01 Ulrich Drepper <drepper@gmail.com>
55183
55184 * po/da.po: Update from translation team.
55185
fa41c84d
UD
551862010-10-26 Ulrich Drepper <drepper@gmail.com>
55187
55188 * elf/rtld.c (dl_main): Move assertion after the point where rtld map
55189 is added to the list.
55190
f0967738
AK
551912010-10-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
55192 Ulrich Drepper <drepper@gmail.com>
55193
55194 * elf/dl-object.c (_dl_new_object): Don't append the new object to
55195 the global list here. Move code to...
55196 (_dl_add_to_namespace_list): ...here. New function.
55197 * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
55198 * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
55199 * elf/dl-load.c (lose): Don't remove the element from the list.
55200 (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
55201 (_dl_map_object): Likewise.
55202
552032010-10-25 Ulrich Drepper <drepper@gmail.com>
dbf3a069
RL
55204
55205 [BZ #12159]
55206 * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
55207 into all bytes of SSE register.
55208 Patch by Richard Li <richardpku@gmail.com>.
55209
f0967738 552102010-10-24 Ulrich Drepper <drepper@gmail.com>
fdc0f374
UD
55211
55212 [BZ #12140]
55213 * malloc/malloc.c (_int_free): Fill correct number of bytes when
55214 perturbing.
55215
d0b9e94f
MB
552162010-10-20 Michael B. Brutman <brutman@us.ibm.com>
55217
55218 * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
55219 * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
55220 * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
55221 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
55222 * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
55223 submachine.
55224 * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
55225
8e9f92e9
AS
552262010-10-22 Andreas Schwab <schwab@redhat.com>
55227
55228 * include/dlfcn.h (__RTLD_SECURE): Define.
55229 * elf/dl-load.c (_dl_map_object): Remove preloaded parameter. Use
55230 mode & __RTLD_SECURE instead.
55231 (open_path): Rename preloaded parameter to secure.
55232 * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
55233 * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
55234 * elf/dl-deps.c (openaux): Likewise.
55235 * elf/rtld.c (struct map_args): Remove is_preloaded.
55236 (map_doit): Don't use it.
55237 (dl_main): Likewise.
55238 (do_preload): Use __RTLD_SECURE instead of is_preloaded.
55239 (dlmopen_doit): Add __RTLD_SECURE to mode bits.
55240
bc96fbda
AS
552412010-09-09 Andreas Schwab <schwab@redhat.com>
55242
55243 * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
55244 (sysd-rules-targets): Remove duplicates.
55245 * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
55246 rtld-%.$o dependency.
55247
22cd1c9b
AS
552482010-10-18 Andreas Schwab <schwab@redhat.com>
55249
55250 * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
55251 _dl_map_object do it.
55252
18edac48
UD
552532010-10-19 Ulrich Drepper <drepper@gmail.com>
55254
55255 * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
55256 fast fma builtins, define the macros in the C99 standard.
55257 (FP_FAST_FMAF): Likewise.
55258 (FP_FAST_FMAL): Likewise.
55259 * sysdeps/x86_64/bits/mathdef.h: Likewise.
55260
55261 * bits/mathdef.h: Update copyright year.
55262 * sysdeps/powerpc/bits/mathdef.h: Likewise.
55263
d2050124
MM
552642010-10-19 Michael Meissner <meissner@linux.vnet.ibm.com>
55265
55266 * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
55267 builtins, define the macros in the C99 standard.
55268 (FP_FAST_FMAF): Likewise.
55269 (FP_FAST_FMAL): Likewise.
55270 * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
55271 multiply/add.
55272 (FP_FAST_FMAF): Likewise.
55273
475facd1
JJ
552742010-10-15 Jakub Jelinek <jakub@redhat.com>
55275
55276 [BZ #3268]
55277 * math/libm-test.inc (fma_test): Some new testcases.
55278 * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
55279 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
55280 y and infinite z. Do multiplication by C already in long double.
55281 * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
55282 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
55283 y and infinite z. Do bitwise or of inexact bit into u.d.
55284 * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
55285 * sysdeps/i386/fpu/s_fmaf.S: Removed.
55286 * sysdeps/i386/fpu/s_fma.S: Removed.
55287 * sysdeps/i386/fpu/s_fmal.S: Removed.
55288
7c08a05c
JJ
552892010-10-16 Jakub Jelinek <jakub@redhat.com>
55290
55291 [BZ #3268]
55292 * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
55293 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
55294 computation is not scheduled after fetestexcept. Fix value
55295 of minimum denormal long double.
55296
f3f7372d
JJ
552972010-10-14 Jakub Jelinek <jakub@redhat.com>
55298
55299 [BZ #3268]
55300 * math/libm-test.inc (fma_test): Add some more tests.
55301 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
55302 correctly.
55303
14d43591
AS
553042010-10-15 Andreas Schwab <schwab@redhat.com>
55305
55306 * scripts/data/localplt-s390-linux-gnu.data: New file.
55307 * scripts/data/localplt-s390x-linux-gnu.data: New file.
55308
5e908464
JJ
553092010-10-13 Jakub Jelinek <jakub@redhat.com>
55310
55311 [BZ #3268]
55312 * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
55313 * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
55314 instead of dbl-64.
55315 * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
55316 inlines.
55317 * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
55318 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
55319 if one of x and y is very large and the other is subnormal.
55320 * sysdeps/s390/fpu/s_fmaf.c: New file.
55321 * sysdeps/s390/fpu/s_fma.c: New file.
55322 * sysdeps/powerpc/fpu/s_fmaf.S: New file.
55323 * sysdeps/powerpc/fpu/s_fma.S: New file.
55324 * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
55325 * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
55326 * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
55327
553282010-10-12 Jakub Jelinek <jakub@redhat.com>
55329
55330 [BZ #3268]
55331 * math/libm-test.inc (fma_test): Add some more fmaf tests, add
55332 fma tests.
55333 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
55334 * sysdeps/ieee754/dbl-64/s_fma.c: New file.
55335 * sysdeps/i386/i686/multiarch/s_fma.c: Include
55336 sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
55337 * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
55338 * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
55339 * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
55340
b833d51f
UD
553412010-10-12 Ulrich Drepper <drepper@redhat.com>
55342
55343 [BZ #12078]
55344 * posix/regcomp.c (parse_branch): One more memory leak plugged.
55345 * posix/bug-regex31.input: Add test case.
55346
1751705d
UD
553472010-10-11 Ulrich Drepper <drepper@gmail.com>
55348
e9b9cbf5
UD
55349 * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
55350 * posix/bug-regex31.input: New file.
55351
55352 [BZ #12078]
55353 * posix/regcomp.c (parse_branch): Free memory when allocation failed.
55354 (parse_sub_exp): Fix last change, use postorder.
55355
ef06edbe
UD
55356 * posix/bug-regex31.c: New file.
55357 * posix/Makefile: Add rules to build and run bug-regex31.
55358
a129c80d
UD
55359 * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
55360
55361 [BZ #12078]
55362 * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
55363
b76b818e
UD
55364 [BZ #12108]
55365 * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
55366 to have entries in sys_siglist.
55367
1751705d
UD
55368 [BZ #12093]
55369 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
55370 be NULL.
55371
9ff8d36f
JJ
553722010-10-07 Jakub Jelinek <jakub@redhat.com>
55373
55374 [BZ #3268]
55375 * math/libm-test.inc (fma_test): Add 2 fmaf tests.
55376 * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
55377 * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
55378 sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
55379 * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
55380 * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
55381 * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
55382 * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
55383 * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
55384 * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
55385 * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
55386 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
55387 * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
55388 * math/ftestexcept.c (fetestexcept): Likewise.
55389 * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
55390 * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
55391 * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
55392 * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
55393 * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
55394 * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
55395 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
55396
af325969
UD
553972010-10-11 Ulrich Drepper <drepper@gmail.com>
55398
c579b202 55399 [BZ #12107]
af325969
UD
55400 * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
55401 newline.
55402
67a67b95
UD
554032010-10-06 Ulrich Drepper <drepper@gmail.com>
55404
55405 * string/bug-strstr1.c: New file.
55406 * string/Makefile: Add rules to build and run bug-strstr1.
55407
5fb308bc
EB
554082010-10-05 Eric Blake <eblake@redhat.com>
55409
55410 [BZ #12092]
55411 * string/str-two-way.h (two_way_long_needle): Always clear memory
55412 when skipping input due to the shift table.
55413
45db99c7
UD
554142010-10-03 Ulrich Drepper <drepper@gmail.com>
55415
3b111893
UD
55416 [BZ #12005]
55417 * malloc/mcheck.c: Handle large requests.
55418
45db99c7
UD
55419 [BZ #12077]
55420 * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
55421 for strncmp and strncasecmp.
55422 * string/stratcliff.c: Add tests for strcmp and strncmp.
55423 * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
55424
cf7a1eb8
NI
554252010-09-28 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55426
55427 * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
55428 __set_fpscr.
55429
6484ba5e
AJ
554302010-09-30 Andreas Jaeger <aj@suse.de>
55431
55432 * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
55433 (CGROUP_SUPER_MAGIC): Define.
55434 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
55435 Handle btrfs and cgroup file systems.
55436 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
55437 Likewise.
55438
91c42559
LM
554392010-09-27 Luis Machado <luisgpm@br.ibm.com>
55440
55441 * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
55442 * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
55443
87a97932
AK
554442010-09-29 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
55445
55446 [BZ #12067]
55447 * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
55448 trying to locate the ELF header.
55449
c21cc9bc
AS
554502010-09-27 Andreas Schwab <schwab@redhat.com>
55451
55452 [BZ #11611]
55453 * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
55454 Mask out sign-bit copies when constructing f_fsid.
55455
315970f6
PB
554562010-09-24 Petr Baudis <pasky@suse.cz>
55457
55458 * debug/stack_chk_fail_local.c: Add missing licence exception.
55459 * debug/warning-nop.c: Likewise.
55460
1ac7a2c7
JM
554612010-09-15 Joseph Myers <joseph@codesourcery.com>
55462
55463 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
55464 implementing getdents64 using getdents syscall, set d_type if
55465 __ASSUME_GETDENTS32_D_TYPE.
55466
56801c50
AS
554672010-09-16 Andreas Schwab <schwab@redhat.com>
55468
55469 * elf/dl-close.c (free_slotinfo, free_mem): Move to...
55470 * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
55471
dda51327
UD
554722010-09-21 Ulrich Drepper <drepper@redhat.com>
55473
55474 [BZ #12037]
55475 * posix/unistd.h: Undo change of feature selection for ftruncate from
55476 2010-01-11.
55477
8ffcee4a
UD
554782010-09-20 Ulrich Drepper <drepper@redhat.com>
55479
a545ecd9 55480 * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
8ffcee4a
UD
55481 detection.
55482
e24f0a8b
AS
554832010-09-20 Andreas Schwab <schwab@redhat.com>
55484
55485 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
55486 fanotify_mark.
55487 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
55488
7291c56f
AS
554892010-09-14 Andreas Schwab <schwab@redhat.com>
55490
55491 * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
55492 variables after CHECK_SP call.
55493 * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
55494
bc5fb037
AS
554952010-09-13 Andreas Schwab <schwab@redhat.com>
55496 Ulrich Drepper <drepper@redhat.com>
55497
55498 * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
55499 re-relocationg ld.so.
55500 * elf/dl-support.c (_dl_non_dynamic_init): And here after the
55501 _dl_init_paths call.
55502 * elf/dl-load.c (_dl_init_paths). Don't set GLRO(dl_init_all_dirs)
55503 here anymore.
55504
e66e7419
UD
555052010-09-14 Ulrich Drepper <drepper@redhat.com>
55506
55507 * resolv/res_init.c (__res_vinit): Count the default server we added.
55508
c044aa75
CLT
555092010-09-08 Chung-Lin Tang <cltang@codesourcery.com>
55510 Ulrich Drepper <drepper@redhat.com>
55511
55512 [BZ #11968]
55513 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
55514 (____longjmp_chk): Use %ebx for saving value across system call.
55515 Add unwind info.
55516
32cf4069
AS
555172010-09-06 Andreas Schwab <schwab@redhat.com>
55518
55519 * manual/Makefile: Don't mix pattern rules with normal rules.
55520
817328ee
AS
555212010-09-05 Andreas Schwab <schwab@linux-m68k.org>
55522
55523 * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
55524 operation.
55525 * libio/iofdopen.c (_IO_new_fdopen): Likewise.
55526 * libio/iofopncook.c (_IO_cookie_init): Likewise.
55527 * libio/iovdprintf.c (_IO_vdprintf): Likewise.
55528 * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
55529 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
55530 Likewise.
55531
29fddf61
UD
555322010-09-04 Ulrich Drepper <drepper@redhat.com>
55533
55534 [BZ #11979]
55535 * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
55536 IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
55537
0959ffc9
UD
555382010-09-02 Ulrich Drepper <drepper@redhat.com>
55539
55540 * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
55541 * sysdeps/x86_64/addmul_1.S: Likewise.
55542 * sysdeps/x86_64/lshift.S: Likewise.
55543 * sysdeps/x86_64/mul_1.S: Likewise.
55544 * sysdeps/x86_64/rshift.S: Likewise.
55545 * sysdeps/x86_64/sub_n.S: Likewise.
55546 * sysdeps/x86_64/submul_1.S: Likewise.
55547
ece29840
ST
555482010-09-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
55549
0959ffc9
UD
55550 This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
55551 Define __sched_param instead of SCHED_* and sched_param when
ece29840 55552 <bits/sched.h> is included with __need_schedparam defined.
0959ffc9 55553 * bits/sched.h [__need_schedparam]
ece29840 55554 (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
0959ffc9
UD
55555 [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
55556 (__defined_schedparam): Define to 1.
ece29840
ST
55557 (__sched_param): New structure, identical to sched_param.
55558 (__need_schedparam): Undefine.
55559
e53a31fe
MF
555602010-08-31 Mike Frysinger <vapier@gentoo.org>
55561
fdc0c10d
MF
55562 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
55563 (epoll_create1): Declare.
55564
e53a31fe
MF
55565 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
55566
a726d796
AS
555672010-08-31 Andreas Schwab <schwab@redhat.com>
55568
55569 [BZ #7066]
55570 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
55571 shifting retval into place.
55572
2f3e3dc7
UD
555732010-09-01 Ulrich Drepper <drepper@redhat.com>
55574
f2933da9
UD
55575 * nis/rpcsvc/nis.h: Update copyright notice.
55576 * nis/rpcsvc/nis.x: Likewise.
55577 * nis/rpcsvc/nis_callback.h: Likewise.
55578 * nis/rpcsvc/nis_callback.x: Likewise.
55579 * nis/rpcsvc/nis_object.x: Likewise.
55580 * nis/rpcsvc/nis_tags.h: Likewise.
55581 * nis/rpcsvc/yp.h: Likewise.
55582 * nis/rpcsvc/yp.x: Likewise.
55583 * nis/rpcsvc/ypupd.h: Likewise.
55584 * nis/yp_xdr.c: Likewise.
55585 * nis/ypupdate_xdr.c: Likewise.
55586
2f3e3dc7
UD
55587 * sunrpc/pm_getport.c (__libc_rpc_getport): New function. This is
55588 mainly the body of pmap_getport. Add parameters to specify timeouts.
55589 (pmap_getport): Use __libc_rpc_getport.
55590 * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
55591 * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
55592 * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
55593
f3dcc2f9
AS
555942010-08-31 Andreas Schwab <schwab@linux-m68k.org>
55595
55596 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
55597 fanotify_mark.
55598
6d34eb5b
RM
555992010-08-27 Roland McGrath <roland@redhat.com>
55600
55601 * sysdeps/i386/i686/multiarch/Makefile
55602 (CFLAGS-varshift.c): New variable.
55603
9ea3de11
UD
556042010-08-27 Ulrich Drepper <drepper@redhat.com>
55605
c96d23fc
UD
55606 * sysdeps/i386/i686/multiarch/varshift.S: File removed.
55607 * sysdeps/i386/i686/multiarch/varshift.c: New file.
55608
9ea3de11
UD
55609 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
55610
55611 * sysdeps/x86_64/strlen.S: Minimal code improvement.
55612
623aac7f
L
556132010-08-26 H.J. Lu <hongjiu.lu@intel.com>
55614
55615 * sysdeps/x86_64/strlen.S: Unroll the loop.
55616 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
55617 strlen-sse2 strlen-sse2-bsf.
55618 * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
55619 __strlen_no_bsf if bit_Slow_BSF is set.
55620 (__strlen_sse42): Removed.
55621 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
55622 * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
55623
8b2b7715
RM
556242010-08-25 Roland McGrath <roland@redhat.com>
55625
55626 * sysdeps/x86_64/multiarch/varshift.S: File removed.
55627 * sysdeps/x86_64/multiarch/varshift.c: New file.
55628 * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
55629 * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
55630 * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
55631 * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
55632
e73015f2
L
556332010-08-25 H.J. Lu <hongjiu.lu@intel.com>
55634
55635 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
55636 strlen-sse2 strlen-sse2-bsf.
55637 * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
55638 __strlen_sse2_bsf if bit_Slow_BSF is unset.
55639 (__strlen_sse2): Removed.
55640 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
55641 * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
55642 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
55643 bit_Slow_BSF for Atom.
55644 * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
55645 (index_Slow_BSF): Define.
55646 (HAS_SLOW_BSF): Define.
55647
df24a73e
UD
556482010-08-25 Ulrich Drepper <drepper@redhat.com>
55649
55650 [BZ #10851]
55651 * resolv/res_init.c (__res_vinit): When no server address at all
55652 is given default to loopback.
55653
f2ac4868
RM
556542010-08-24 Roland McGrath <roland@redhat.com>
55655
09055553
RM
55656 * configure.in: Remove config-name.h generation.
55657 * configure: Regenerated.
55658 * config-name.in: File removed.
55659 * scripts/config-uname.sh: New file.
55660 * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
55661 ($(objdir)config-name.h): New target.
55662
f2ac4868
RM
55663 * sunrpc/rpc_parse.h: Avoid nested comment.
55664
73f27d5e
RH
556652010-08-24 Richard Henderson <rth@redhat.com>
55666 Ulrich Drepper <drepper@redhat.com>
55667 H.J. Lu <hongjiu.lu@intel.com>
55668
55669 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
55670 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
55671 * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
55672 Replace _mm_srli_si128 with __m128i_shift_right. Replace
55673 _mm_alignr_epi8 with _mm_loadu_si128.
55674 * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
55675 * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
55676 (__m128i_shift_right): Removed.
55677 * sysdeps/i386/i686/multiarch/varshift.h: New file.
55678 * sysdeps/i386/i686/multiarch/varshift.S: New file.
55679 * sysdeps/x86_64/multiarch/varshift.h: New file.
55680 * sysdeps/x86_64/multiarch/varshift.S: New file.
55681
84b9230c
MF
556822010-08-21 Mike Frysinger <vapier@gentoo.org>
55683
55684 * configure.in: Move assembler checks to before sysdep dir checking.
55685
9bbd0ddc
PB
556862010-08-20 Petr Baudis <pasky@suse.cz>
55687
55688 * LICENSES: Sync the sunrpc license.
55689
9da4bb31
UD
556902010-08-19 Ulrich Drepper <drepper@redhat.com>
55691
a7ab6ec8
UD
55692 * sunrpc/auth_des.c: Update copyright notice once again.
55693 * sunrpc/auth_none.c: Likewise.
55694 * sunrpc/auth_unix.c: Likewise.
55695 * sunrpc/authdes_prot.c: Likewise.
55696 * sunrpc/authuxprot.c: Likewise.
55697 * sunrpc/bindrsvprt.c: Likewise.
55698 * sunrpc/clnt_gen.c: Likewise.
55699 * sunrpc/clnt_perr.c: Likewise.
55700 * sunrpc/clnt_raw.c: Likewise.
55701 * sunrpc/clnt_simp.c: Likewise.
55702 * sunrpc/clnt_tcp.c: Likewise.
55703 * sunrpc/clnt_udp.c: Likewise.
55704 * sunrpc/clnt_unix.c: Likewise.
55705 * sunrpc/des_crypt.c: Likewise.
55706 * sunrpc/des_soft.c: Likewise.
55707 * sunrpc/get_myaddr.c: Likewise.
55708 * sunrpc/getrpcport.c: Likewise.
55709 * sunrpc/key_call.c: Likewise.
55710 * sunrpc/key_prot.c: Likewise.
55711 * sunrpc/openchild.c: Likewise.
55712 * sunrpc/pm_getmaps.c: Likewise.
55713 * sunrpc/pm_getport.c: Likewise.
55714 * sunrpc/pmap_clnt.c: Likewise.
55715 * sunrpc/pmap_prot.c: Likewise.
55716 * sunrpc/pmap_prot2.c: Likewise.
55717 * sunrpc/pmap_rmt.c: Likewise.
55718 * sunrpc/rpc/auth.h: Likewise.
55719 * sunrpc/rpc/auth_unix.h: Likewise.
55720 * sunrpc/rpc/clnt.h: Likewise.
55721 * sunrpc/rpc/des_crypt.h: Likewise.
55722 * sunrpc/rpc/key_prot.h: Likewise.
55723 * sunrpc/rpc/netdb.h: Likewise.
55724 * sunrpc/rpc/pmap_clnt.h: Likewise.
55725 * sunrpc/rpc/pmap_prot.h: Likewise.
55726 * sunrpc/rpc/pmap_rmt.h: Likewise.
55727 * sunrpc/rpc/rpc.h: Likewise.
55728 * sunrpc/rpc/rpc_des.h: Likewise.
55729 * sunrpc/rpc/rpc_msg.h: Likewise.
55730 * sunrpc/rpc/svc.h: Likewise.
55731 * sunrpc/rpc/svc_auth.h: Likewise.
55732 * sunrpc/rpc/types.h: Likewise.
55733 * sunrpc/rpc/xdr.h: Likewise.
55734 * sunrpc/rpc_clntout.c: Likewise.
55735 * sunrpc/rpc_cmsg.c: Likewise.
55736 * sunrpc/rpc_common.c: Likewise.
55737 * sunrpc/rpc_cout.c: Likewise.
55738 * sunrpc/rpc_dtable.c: Likewise.
55739 * sunrpc/rpc_hout.c: Likewise.
55740 * sunrpc/rpc_main.c: Likewise.
55741 * sunrpc/rpc_parse.c: Likewise.
55742 * sunrpc/rpc_parse.h: Likewise.
55743 * sunrpc/rpc_prot.c: Likewise.
55744 * sunrpc/rpc_sample.c: Likewise.
55745 * sunrpc/rpc_scan.c: Likewise.
55746 * sunrpc/rpc_scan.h: Likewise.
55747 * sunrpc/rpc_svcout.c: Likewise.
55748 * sunrpc/rpc_tblout.c: Likewise.
55749 * sunrpc/rpc_util.c: Likewise.
55750 * sunrpc/rpc_util.h: Likewise.
55751 * sunrpc/rpcinfo.c: Likewise.
55752 * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
55753 * sunrpc/rpcsvc/key_prot.x: Likewise.
55754 * sunrpc/rpcsvc/klm_prot.x: Likewise.
55755 * sunrpc/rpcsvc/mount.x: Likewise.
55756 * sunrpc/rpcsvc/nfs_prot.x: Likewise.
55757 * sunrpc/rpcsvc/nlm_prot.x: Likewise.
55758 * sunrpc/rpcsvc/rex.x: Likewise.
55759 * sunrpc/rpcsvc/rstat.x: Likewise.
55760 * sunrpc/rpcsvc/rusers.x: Likewise.
55761 * sunrpc/rpcsvc/sm_inter.x: Likewise.
55762 * sunrpc/rpcsvc/spray.x: Likewise.
55763 * sunrpc/rpcsvc/yppasswd.x: Likewise.
55764 * sunrpc/rtime.c: Likewise.
55765 * sunrpc/svc.c: Likewise.
55766 * sunrpc/svc_auth.c: Likewise.
55767 * sunrpc/svc_authux.c: Likewise.
55768 * sunrpc/svc_raw.c: Likewise.
55769 * sunrpc/svc_run.c: Likewise.
55770 * sunrpc/svc_simple.c: Likewise.
55771 * sunrpc/svc_tcp.c: Likewise.
55772 * sunrpc/svc_udp.c: Likewise.
55773 * sunrpc/svc_unix.c: Likewise.
55774 * sunrpc/svcauth_des.c: Likewise.
55775 * sunrpc/xcrypt.c: Likewise.
55776 * sunrpc/xdr.c: Likewise.
55777 * sunrpc/xdr_array.c: Likewise.
55778 * sunrpc/xdr_float.c: Likewise.
55779 * sunrpc/xdr_mem.c: Likewise.
55780 * sunrpc/xdr_rec.c: Likewise.
55781 * sunrpc/xdr_ref.c: Likewise.
55782 * sunrpc/xdr_sizeof.c: Likewise.
55783 * sunrpc/xdr_stdio.c: Likewise.
55784
9da4bb31
UD
55785 * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
55786 handling.
55787
bdaa77bc
AS
557882010-08-19 Andreas Schwab <schwab@redhat.com>
55789
55790 * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
55791
fe2f79db
LM
557922010-08-19 Luis Machado <luisgpm@br.ibm.com>
55793
55794 * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
55795 * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
55796 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
55797 * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
55798 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
55799 * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
55800 * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
55801 * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
55802 * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
55803 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
55804 * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
55805 * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
55806 * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
55807 * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
55808
b9b42ee0
AB
558092010-07-26 Anton Blanchard <anton@samba.org>
55810
55811 * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
55812 * malloc/arena.c (heap_trim): Likewise.
55813
1c06ba31
UD
558142010-08-16 Ulrich Drepper <drepper@redhat.com>
55815
55816 * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
55817 here. Not...
55818 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
55819 * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
55820
f8392f40
L
558212010-08-12 H.J. Lu <hongjiu.lu@intel.com>
55822
55823 * sysdeps/i386/elf/Makefile: New file.
55824
3162f12e
AS
558252010-08-14 Andreas Schwab <schwab@linux-m68k.org>
55826
55827 * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
55828 from fanotify_init.
55829 * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
55830 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
55831
28c90b2c
UD
558322010-08-15 Ulrich Drepper <drepper@redhat.com>
55833
55834 * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
55835 of strncasecmp_l.
1feccb6c 55836 * sysdeps/multiarch/strcmp.S: Likewise.
28c90b2c 55837
ca6bb004
UD
558382010-08-14 Ulrich Drepper <drepper@redhat.com>
55839
e9f82e0d
UD
55840 * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
55841 strncase_l-nonascii.
55842 * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
55843 Add strncase_l-ssse3.
55844 * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
55845 * sysdeps/x86_64/strcmp.S: Likewise.
55846 * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
55847 * sysdeps/x86_64/multiarch/strncase_l.S: New file.
55848 * sysdeps/x86_64/strncase.S: New file.
55849 * sysdeps/x86_64/strncase_l-nonascii.c: New file.
55850 * sysdeps/x86_64/strncase_l.S: New file.
55851 * string/Makefile (strop-tests): Add strncasecmp.
55852 * string/test-strncasecmp.c: New file.
55853
55854 * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
55855 warning.
55856
ca6bb004
UD
55857 * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
55858 * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
55859
052fa7b3
AS
558602010-08-14 Andreas Schwab <schwab@linux-m68k.org>
55861
55862 * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
55863
962dba78
UD
558642010-08-12 Ulrich Drepper <drepper@redhat.com>
55865
55866 * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
55867 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
55868 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
55869
bebff237
AM
558702010-05-01 Alan Modra <amodra@gmail.com>
55871
55872 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
55873 * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
55874 * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
55875 * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
55876 * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
55877 tidying. Don't tail-call __sigjmp_save for static lib.
55878 * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
55879 save location.
55880 (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
55881 (CALL_MCOUNT): Add eh info, and nop after bl.
55882 (TAIL_CALL_SYSCALL_ERROR): New macro.
55883 (PSEUDO_RET): Use it.
55884 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
55885 Correct save location of integer regs and cr.
55886 (_dl_profile_resolve): Correct cr save location. Delete nops
55887 after bl when SHARED. Reduce cfi size a little by better
55888 placement of cfi directives.
55889 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
55890 make a stack frame. Instead use parm save area as a temp.
55891 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
55892 make a stack frame. Use TAIL_CALL_SYSCALL_ERROR.
55893 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
55894 Don't make a stack frame for parent, use parm save area.
55895 Increase child stack frame to 112 bytes. Don't save unused reg,
55896 and adjust reg usage. Set up cfi on error recovery and
55897 epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
55898 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
55899 (__makecontext): Add dummy nop after jump to exit.
55900 * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
55901 Use correct parm save area and cr save, reduce stack frame.
55902 Correct cfi for possible PSEUDO_RET frame setup.
55903 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
55904 Branch to local label emitted by PSEUDO_RET rather than
55905 __syscall_error.
55906
02637374
AS
559072010-08-12 Andreas Schwab <schwab@redhat.com>
55908
55909 [BZ #11904]
55910 * locale/programs/locale.c (print_assignment): New function.
55911 (show_locale_vars): Use it.
55912
c3e2f19b
UD
559132010-08-11 Ulrich Drepper <drepper@redhat.com>
55914
3cdaa6ad
UD
55915 * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
55916 field.
55917 (struct statfs64): Likewise.
55918 (_STATFS_F_FLAGS): Define.
55919 * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
55920 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
55921 Don't define if __ASSUME_STATFS_F_FLAGS is defined.
55922 (ST_VALID): Define locally.
55923 (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
55924 __statvfs_getflags, use the provided value.
55925 * sysdeps/unix/sysv/linux/kernel-features.h: Define
55926 __ASSUME_STATFS_F_FLAGS.
55927
754f7da3
UD
55928 * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
55929
10b3bedc
UD
55930 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
55931 Add sys/fanotify.h.
55932 * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
55933 fanotify_mask for GLIBC_2.13.
55934 * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
55935 fanotify_init and fanotify_mark.
55936 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
55937 * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
55938
c08fb0d7
UD
55939 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
55940 Add prlimit.
55941 * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
55942 prlimit64 for GLIBC_2.13.
55943 * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
55944 prlimit64.
55945 * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
55946 syscall.
55947 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
55948 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
55949 * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
55950 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
55951 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise. Also
55952 add prlimit alias.
55953 * sysdeps/unix/sysv/linux/prlimit.c: New file.
55954
15bac72b
UD
55955 [BZ #11903]
55956 * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
55957 Patch by Evgeni Bikov <bikovevg@iitp.ru>.
55958
c3e2f19b
UD
55959 * nss/Makefile: Add rules to build and run tst-nss-test1.
55960 * shlib-versions: Add entry for libnss_test1.
55961 * nss/nss_test1.c: New file.
55962 * nss/tst-nss-test1.c: New file.
55963
55964 * nss/nsswitch.c (__nss_database_custom): Define new variable.
55965 (__nss_configure_lookup): Set appropriate entry in
55966 __nss_configure_lookup to true.
55967 * nss/nsswitch.h: Define enum with indeces of databases in
55968 databases and __nss_database_custom arrays. Declare
55969 __nss_database_custom.
55970 * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
55971 to avoid using nscd when custom rules are installed.
55972 * nss/getXXbyYY_r.c: Likewise.
55973 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
55974
55975 * nss/nss_files/files-parse.c: Whitespace fixes.
55976
f15ce4d8
UD
559772010-08-09 Ulrich Drepper <drepper@redhat.com>
55978
55979 [BZ #11883]
55980 * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
55981 * posix/fnmatch_loop.c: Likewise.
55982
d22e4cc9
AK
559832010-07-17 Andi Kleen <ak@linux.intel.com>
55984
55985 * sysdeps/i386/i386-mcount.S (__fentry__): Define.
55986 * sysdeps/x86_64/_mcount.S (__fentry__): Define.
55987 * stdlib/Versions (__fentry__): Add for GLIBC 2.13
55988 * Versions.def [GLIBC_2.13]: Add.
55989
805bc17d
UD
559902010-08-06 Ulrich Drepper <drepper@redhat.com>
55991
55992 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
55993 Also fail if tpwd after pwuid call is NULL.
55994
5a42321d
ST
559952010-07-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
55996
55997 * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
55998 when converting to ms.
55999
fd3ebeda
ST
560002010-06-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
56001
56002 * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
56003 EOPNOTSUPP errors with ENOTTY.
56004 * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
56005 EOPNOTSUPP errors with ENOTTY.
56006
73507d3a
UD
560072010-07-31 Ulrich Drepper <drepper@redhat.com>
56008
56009 * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
56010 Add strcasecmp_l-ssse3.
56011 * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
56012 strcasecmp.
56013 * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
56014 * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
56015 * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
56016
fe36dd02
UD
560172010-07-30 Ulrich Drepper <drepper@redhat.com>
56018
66f6765a
UD
56019 * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
56020
42e08a54
UD
56021 * string/Makefile (strop-tests): Add strcasecmp.
56022 * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
56023 strcasecmp_l-nonascii.
56024 (gen-as-const-headers): Add locale-defines.sym.
56025 * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
56026 * sysdeps/x86_64/strcasecmp.S: New file.
56027 * sysdeps/x86_64/strcasecmp_l.S: New file.
56028 * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
56029 * sysdeps/x86_64/locale-defines.sym: New file.
56030 * string/test-strcasecmp.c: New file.
56031
fe36dd02
UD
56032 * string/test-strcasestr.c: Test both ends of the range of characters.
56033 * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
56034
48cbc0d6
RM
560352010-07-29 Roland McGrath <roland@redhat.com>
56036
76e6d6bc 56037 [BZ #11856]
48cbc0d6
RM
56038 * manual/locale.texi (Yes-or-No Questions): Fix example code.
56039
880113d9
UD
560402010-07-27 Ulrich Drepper <drepper@redhat.com>
56041
56042 * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
56043 for ld.so.
56044
deb9cabb
AS
560452010-07-27 Andreas Schwab <schwab@redhat.com>
56046
56047 * manual/memory.texi (Malloc Tunable Parameters): Document
56048 M_PERTURB.
56049
1c7570ff
RM
560502010-07-26 Roland McGrath <roland@redhat.com>
56051
56052 [BZ #11840]
56053 * configure.in (-fgnu89-inline check): Set and substitute
56054 gnu89_inline, not libc_cv_gnu89_inline.
56055 * configure: Regenerated.
56056 * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
56057
24fb0f88
UD
560582010-07-26 Ulrich Drepper <drepper@redhat.com>
56059
56060 * string/test-strnlen.c: New file.
56061 * string/Makefile (strop-tests): Add strnlen.
56062 * string/tester.c (test_strnlen): Add a few more test cases.
56063 * string/tst-strlen.c: Better error reporting.
56064
56065 * sysdeps/x86_64/strnlen.S: New file.
56066
8e96b93a
UD
560672010-07-24 Ulrich Drepper <drepper@redhat.com>
56068
56069 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
56070 lower-latency instructions.
56071
dbc676d4
UD
560722010-07-23 Ulrich Drepper <drepper@redhat.com>
56073
56074 * string/test-strcasestr.c: New file.
56075 * string/test-strstr.c: New file.
56076 * string/Makefile (strop-tests): Add strstr and strcasestr.
56077 * string/str-two-way.h: Don't undefine MAX.
56078 * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
56079
f6a31e0e
AS
560802010-07-21 Andreas Schwab <schwab@redhat.com>
56081
56082 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
56083 strcasestr-nonascii.
56084 (CFLAGS-strcasestr-nonascii.c): Define.
56085 * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
56086 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
56087 Remove unused attribute.
56088
5dbc3b6c
RM
560892010-07-20 Roland McGrath <roland@redhat.com>
56090
56091 * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
56092 dl_hwcap_mask as well as dl_hwcap. Without this, dsocaps matching in
56093 ld.so.cache was broken. With it, there is no way to disable dsocaps
56094 like LD_HWCAP_MASK can disable hwcaps.
56095
23d101d8
EPM
560962010-06-02 Emilio Pozuelo Monfort <pochu27@gmail.com>
56097
56098 * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
56099
cc9f2e47
UD
561002010-07-16 Ulrich Drepper <drepper@redhat.com>
56101
56102 * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
56103 call in strcasestr.
56104 * sysdeps/x86_64/multiarch/strcasestr.c: Declare
56105 __strcasestr_sse42_nonascii.
56106 * sysdeps/x86_64/multiarch/Makefile: Add rules to build
56107 strcasestr-nonascii.c.
56108 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
56109
77c1b069
LM
561102010-06-15 Luis Machado <luisgpm@br.ibm.com>
56111
56112 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
56113 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
56114 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
56115 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
56116
440566c3
UD
561172010-07-09 Ulrich Drepper <drepper@redhat.com>
56118
56119 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
56120 fcntl.
56121
5be9d05d
AS
561222010-07-06 Andreas Schwab <schwab@redhat.com>
56123
c30b7ee2 56124 [BZ #11577]
5be9d05d
AS
56125 * elf/dl-version.c (match_symbol): Don't pass NULL occation to
56126 dl_signal_cerror.
56127
8a492a67
UD
561282010-07-06 Ulrich Drepper <drepper@redhat.com>
56129
56130 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
56131 _PC_PIPE_BUF using F_GETPIPE_SZ.
56132
713df3d5
RM
561332010-07-05 Roland McGrath <roland@redhat.com>
56134
56135 * manual/arith.texi (Rounding Functions): Fix rint description
56136 implicit in round description.
56137
702e8f14
UD
561382010-07-02 Ulrich Drepper <drepper@redhat.com>
56139
56140 * elf/Makefile: Fix linking for a few tests to make recent linker
56141 happy.
56142
52ed8be9
AS
561432010-06-30 Andreas Schwab <schwab@redhat.com>
56144
56145 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
56146 $(common-objpfx)libc_nonshared.a.
56147
f47c9a11
LM
561482010-06-21 Luis Machado <luisgpm@br.ibm.com>
56149
56150 * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
56151 * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
56152 * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
56153 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
56154 * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
56155 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
56156 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
56157 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
56158 * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
56159 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
56160 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
56161 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
56162 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
56163 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
56164 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
56165 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
56166 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
56167 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
56168 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
56169 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
56170 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
56171 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
56172 * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
56173 * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
56174 * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
56175 * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
56176 * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
56177 * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
56178 * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
56179 * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
56180 * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
56181 * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
56182 * sysdeps/powerpc/powerpc32/power7/Implies: New file.
56183 * sysdeps/powerpc/powerpc64/power7/Implies: New file.
56184 * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
56185 * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
56186 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
56187 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
56188 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
56189 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
56190 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
56191 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
56192 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
56193 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
56194 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
56195 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
56196 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
56197 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
56198
6fb8cbcb
L
561992010-06-25 H.J. Lu <hongjiu.lu@intel.com>
56200
56201 * debug/memmove_chk.c (__memmove_chk): Renamed to ...
56202 (MEMMOVE_CHK): ...this. Default to __memmove_chk.
56203 * string/memmove.c (memmove): Renamed to ...
56204 (MEMMOVE): ...this. Default to memmove.
56205 * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
56206 * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
56207 (END_CHK): Define.
56208 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
56209 memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
56210 mempcpy-ssse3-back memmove-ssse3-back.
56211 * sysdeps/x86_64/multiarch/bcopy.S: New file .
56212 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
56213 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
56214 * sysdeps/x86_64/multiarch/memcpy.S: New file.
56215 * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
56216 * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
56217 * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
56218 * sysdeps/x86_64/multiarch/memmove.c: New file.
56219 * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
56220 * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
56221 * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
56222 * sysdeps/x86_64/multiarch/mempcpy.S: New file.
56223 * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
56224 * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
56225 Define.
56226 (index_Fast_Copy_Backward): Define.
56227 (HAS_ARCH_FEATURE): Define.
56228 (HAS_FAST_REP_STRING): Define.
56229 (HAS_FAST_COPY_BACKWARD): Define.
56230
4e733bac 562312010-06-21 Andreas Schwab <schwab@redhat.com>
e35fcef8
AS
56232
56233 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
56234 Restore proper fallback handling.
56235
63c4ed22
UD
562362010-06-19 Ulrich Drepper <drepper@redhat.com>
56237
ac2b484c
UD
56238 [BZ #11701]
56239 * posix/group_member.c (__group_member): Correct checking loop.
56240
63c4ed22
UD
56241 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
56242 OOM in getpwuid_r correctly. Return error number when the caller
56243 should return, otherwise -1.
56244 (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
56245 call returning > 0 value.
56246 * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
56247
765ade4b
AS
562482010-06-07 Andreas Schwab <schwab@redhat.com>
56249
56250 * dlfcn/Makefile: Remove explicit dependencies on libc.so and
56251 libc_nonshared.a from targets in modules-names.
56252
80da2e09
KS
562532010-06-02 Kirill A. Shutemov <kirill@shutemov.name>
56254
56255 * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
56256 requires it.
56257
158db122
LM
562582010-06-10 Luis Machado <luisgpm@br.ibm.com>
56259
56260 * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
56261 * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
56262 * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
56263 * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
56264
caa78cf8
AS
562652010-06-02 Andreas Schwab <schwab@redhat.com>
56266
56267 * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
56268
b2ef2c01
UD
562692010-06-14 Ulrich Drepper <drepper@redhat.com>
56270
56271 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
56272 and F_GETPIPE_SZ.
56273 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
56274 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
56275 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
56276 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
56277 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
56278 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
56279
fbd643b6
RM
562802010-06-14 Roland McGrath <roland@redhat.com>
56281
56282 * manual/libc.texinfo (@copying): Change to GFDL v1.3.
56283
f32f2869
JJ
562842010-06-07 Jakub Jelinek <jakub@redhat.com>
56285
56286 * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
56287 __REDIRECT followed by __THROW.
56288 * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
56289 * posix/getopt.h (getopt): Likewise.
56290
2a50c078
EPM
562912010-06-02 Emilio Pozuelo Monfort <pochu27@gmail.com>
56292
56293 * hurd/lookup-at.c (__file_name_lookup_at): Accept
56294 AT_SYMLINK_FOLLOW in AT_FLAGS. Fail with EINVAL if both
56295 AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
56296 in AT_FLAGS.
56297 * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
56298 * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
56299
eb5ad2eb
LM
563002010-05-28 Luis Machado <luisgpm@br.ibm.com>
56301
56302 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
56303
3c88fe1e
L
563042010-05-26 H.J. Lu <hongjiu.lu@intel.com>
56305
56306 [BZ #11640]
56307 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
56308 Properly check family and model.
56309
d2f73151
TY
563102010-05-26 Takashi Yoshii <takashi.yoshii.zj@renesas.com>
56311
56312 * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
56313
ebd2e13d
LM
563142010-05-24 Luis Machado <luisgpm@br.ibm.com>
56315
56316 * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
56317
b32b8b45
UD
563182010-05-21 Ulrich Drepper <drepper@redhat.com>
56319
56320 * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
56321 symbol reference.
56322
9acbe24d
AS
563232010-05-19 Andreas Schwab <schwab@redhat.com>
56324
56325 * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
56326 symbol reference.
56327
f0ccf6ea
AS
563282010-05-21 Andreas Schwab <schwab@redhat.com>
56329
3d04ff3a
AS
56330 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
56331 and internal_recvmmsg.
56332 * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
56333 * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
56334 * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
56335 * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
56336
f0ccf6ea
AS
56337 * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
56338 * sunrpc/clnt_udp.c (clntudp_control): Likewise.
56339 * sunrpc/clnt_unix.c (clntunix_control): Likewise.
56340
5b08ac57
AS
563412010-05-20 Andreas Schwab <schwab@redhat.com>
56342
56343 * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
56344
4828935d
LM
563452010-05-17 Luis Machado <luisgpm@br.ibm.com>
56346
56347 POWER7 optimizations.
56348 * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
56349 * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
56350
373d545e
UD
563512010-05-19 Ulrich Drepper <drepper@redhat.com>
56352
56353 * version.h: Update for 2.13 development version.
56354
21a2b1ae
AS
563552010-05-12 Andrew Stubbs <ams@codesourcery.com>
56356
56357 * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
56358 exceptions. Return 0.
56359
3f7dcb2b
RM
563602010-05-07 Roland McGrath <roland@redhat.com>
56361
56362 * elf/ldconfig.c (main): Add a const.
56363
5f24d53a 563642010-05-06 Ulrich Drepper <drepper@redhat.com>
70c9476e 56365
a160f8d8
UD
56366 * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
56367 (args_options): Add no-idn option.
56368 (ahosts_keys_int): Add idn_flags to ai_flags.
56369 (parse_option): Handle 'i' option to clear idn_flags.
56370
5f24d53a
UD
56371 * malloc/malloc.c (_int_free): Possible race in the most recently
56372 added check. Only act on the data if no current modification
56373 happened.
265bb1ce
UD
56374
56375See ChangeLog.17 for earlier changes.