]> sourceware.org Git - glibc.git/blob - ChangeLog
Update.
[glibc.git] / ChangeLog
1 2004-09-11 Ulrich Drepper <drepper@redhat.com>
2
3 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Use __NTH for __cmsg_nxthdr.
4
5 2004-09-10 Ulrich Drepper <drepper@redhat.com>
6
7 * nscd/nscd.c (pagesize_m1): New variable.
8 (main): Initialize it.
9 * nscd/nscd.h: Declare pagesize_m1.
10 * nscd/hstcache.c: Pass correctly aligned address to msync.
11 * nscd/grpcache.c: Likewise.
12 * nscd/pwdcache.c: Likewise.
13
14 2004-09-10 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15
16 * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Decrement
17 __nwaiters. If pthread_cond_destroy has been called and this is
18 the last waiter, signal pthread_cond_destroy caller and avoid
19 using the pthread_cond_t structure after unlock.
20 * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
21
22 2004-09-10 Ulrich Drepper <drepper@redhat.com>
23
24 * sysdeps/unix/sysv/linux/kernel-features.h: Don't define
25 __ASSUME_CLONE_STOPPED.
26
27 2004-09-10 Jakub Jelinek <jakub@redhat.com>
28
29 * misc/sys/cdefs.h (__REDIRECT_NTH): Change order of __THROW and
30 __asm__ for C++. [BZ #377]
31
32 2004-09-10 Ulrich Drepper <drepper@redhat.com>
33
34 * nscd/nscd_stat.c: Improve output by also printing .shared and
35 .persistent.
36
37 * nscd/connections.c: Allow cache sharing to be really disabled.
38
39 2004-09-10 Jakub Jelinek <jakub@redhat.com>
40
41 * malloc/malloc.c (_int_free): Only do arena boundary check for
42 contiguous arenas.
43
44 2004-09-10 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
45
46 * stdlib/longlong.h [__M32R__] (add_ssaaaa, sub_ddmmss): Fix broken
47 instruct operands.
48 * elf/elf.h: Add R_M32R_* relocs.
49
50 2004-09-09 Ulrich Drepper <drepper@redhat.com>
51
52 * misc/sys/cdefs.h: Despite what the gcc manual says, gcc 3.2
53 seems not to support the nothrow attribute. Use it only for gcc
54 3.3 and higher.
55
56 * malloc/hooks.c (top_check): Print top chunk corruption as normal
57 error message.
58
59 * malloc/malloc.c (malloc_printerr): Don't make informational
60 message look like error message.
61
62 2004-09-09 Andreas Jaeger <aj@suse.de>
63
64 * nscd/Makefile (CFLAGS-nscd_setup_thread.c): Set to -fpie.
65
66 2004-09-08 Ulrich Drepper <drepper@redhat.com>
67
68 * sysdeps/unix/sysv/linux/bits/socket.h (__SCM_CONNECT): Removed.
69
70 * malloc/malloc.c (_int_free): Add inexpensive double free and
71 memory corruption tests.
72 (malloc_printf_nc): Renamed to malloc_printerr. Second parameter
73 is no format string anymore. Don't use stdio. Adjust all callers.
74 * malloc/hooks.c: Adjust malloc_printf_nc callers.
75
76 2004-09-08 Roland McGrath <roland@redhat.com>
77
78 * malloc/mcheck.c: Don't use __P.
79 Use prototypes definitions for static functions.
80
81 2004-09-08 Ulrich Drepper <drepper@redhat.com>
82
83 * sysdeps/ia64/fpu/bits/mathinline.h: Use __NTH instead of __THROW.
84
85 2004-09-08 Ulrich Drepper <drepper@redhat.com>
86 Jakub Jelinek <jakub@redhat.com>
87
88 * nscd/nscd-client.h: Add a few #includes.
89
90 * nscd/Makefile (nscd-modules): Add nscd_setup_thread.
91 * nscd/connections.c (nscd_run): Call setup_thread for maintenance
92 threads.
93 * nscd/nscd-client.h (struct database_pers_head): Add
94 nscd_certainly_running field.
95 * nscd/nscd.h: Declare setup_thread.
96 * nscd/nscd_helper.c (__nscd_get_map_ref): Avoid the time test if
97 nscd_certainly_running is nonzero.
98 * sysdeps/generic/nscd_setup_thread.c: New file.
99 * sysdeps/unix/sysv/linux/nscd_setup_thread.c: New file.
100
101 2004-09-08 Ulrich Drepper <drepper@redhat.com>
102
103 * nscd/connections.c: Implement r/o sharing of nscd's cache with client
104 processes via shared memory.
105 * nscd/nscd-client.h: Likewise.
106 * nscd/nscd.h: Likewise.
107 * nscd/nscd_conf.c: Likewise.
108 * nscd/nscd_getgr_r.c: Likewise.
109 * nscd/nscd_getpw_r.c: Likewise.
110 * nscd/nscd_gethst_r.c: Likewise.
111 * nscd/nscd.conf: Add new config parameters.
112 * nscd/Makefile (aux): Add nscd_helper.
113 * nscd/nscd_helper.c: New file.
114 * nscd/mem.c (gc): Indicate beginning and end of the gc cycle.
115
116 * nscd/hstcache.c: Simplify a lot. We cache only the request itself,
117 no derived information.
118 * connections.c (nscd_init): Fix bug in testing size of the persistent.
119
120 * nis/Makefile (aux): Add nis_hash.
121 * nis/nis_hash.c: New file. Split out from nis_util.c.
122 * nis/nis_util.c: Move __nis_hash code in separate file.
123
124 * csu/tst-atomic.c: Improve atomic_increment_val test which would
125 not have found a ppc bug.
126
127 * sysdeps/s390/fpu/bits/mathinline.h: Remove unnecessary includes.
128
129 * malloc/arena.c: Remove __MALLOC_P uses.
130 * malloc/malloc.c: Likewise.
131
132 * malloc/mtrace.c: Remove __P uses.
133 * malloc/mcheck-init.c: Likewise.
134
135 2004-09-07 Jakub Jelinek <jakub@redhat.com>
136
137 * sysdeps/powerpc/powerpc64/configure.in: New file.
138 * config.h.in (USE_PPC64_OVERLAPPING_OPD): Add.
139 * configure.in (HAVE_ASM_GLOBAL_DOT_NAME): Remove.
140 * sysdeps/powerpc/powerpc64/sysdep.h: Formatting.
141 (OPD_ENT, BODY_LABEL, ENTRY_1, ENTRY_2, END_2, DOT_PREFIX,
142 BODY_PREFIX): Define.
143 (ENTRY, DOT_LABEL, END, TRACEBACK, END_GEN_TB, EALIGN): Support
144 HAVE_ASM_GLOBAL_DOT_NAME or no dot symbols,
145 USE_PPC64_OVERLAPPING_OPD or never overlapping .opd entries.
146 * sysdeps/powerpc/powerpc64/dl-machine.h: Include sysdep.h.
147 (TRAMPOLINE_TEMPLATE, RTLD_START): Use the new sysdep.h macros.
148
149 2004-09-07 Ulrich Drepper <drepper@redhat.com>
150
151 * malloc/malloc.h: Don't define __THROW if it is already defined.
152
153 * sysdeps/powerpc/bits/atomic.h (atomic_increment): Define.
154 (atomic_decrement): Define.
155
156 * sysdeps/powerpc/bits/atomic.h: Implement atomic_increment_val and
157 atomic_decrement_val.
158 * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
159 * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
160
161 * csu/tst-atomic.c (do_test): Add tests of atomic_increment_val
162 and atomic_decrement_val.
163
164 * include/atomic.h: Define atomic_increment_val, atomic_decrement_val,
165 and atomic_delay is not already defined.
166 * sysdeps/i386/i486/bits/atomic.h: Define atomic_delay.
167 * sysdeps/x86_64/bits/atomic.h: Likewise.
168
169 * miscd/sys/cdefs.h (__NTH): New macro.
170 (__THROW): Define using nothrow attribute for C code and gcc >= 3.2.
171 (__REDIRECT_NTH): New macro.
172 * argp/argp.h: Use __NTH and __REDIRECT_NTH where necessary.
173 * ctype/ctype.h: Likewise.
174 * dirent/dirent.h: Likewise.
175 * io/fcntl.h: Likewise.
176 * io/sys/sendfile.h: Likewise.
177 * io/sys/stat.h: Likewise.
178 * io/sys/statfs.h: Likewise.
179 * io/sys/statvfs.h: Likewise.
180 * libio/bits/stdio.h: Likewise.
181 * misc/sys/mman.h: Likewise.
182 * posix/unistd.h: Likewise.
183 * resource/sys/resource.h: Likewise.
184 * rt/aio.h: Likewise.
185 * signal/signal.h: Likewise.
186 * stdlib/stdlib.h: Likewise.
187 * string/argz.h: Likewise.
188 * string/string.h: Likewise.
189 * sysdeps/generic/inttypes.h: Likewise.
190 * sysdeps/i386/fpu/bits/mathinline.h: Likewise.
191 * sysdeps/powerpc/fpu/bits/mathinline.h: Likewise.
192 * sysdeps/s390/fpu/bits/mathinline.h: Likewise.
193 * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
194 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
195 * sysdeps/unix/sysv/linux/bits/sys/sysmacros.h: Likewise.
196 * wcsmbs/wchar.h: Likewise.
197
198 * sysdeps/generic/glob.c: Use __PMT isntead of __P where appropriate.
199
200 * resolv/gethnamaddr.c (getanswer): Remove __P use in variable
201 definition.
202
203 * io/sys/poll.h: Remove __THROW from poll prototype, it's a
204 cancellation point.
205
206 * io/fts.c (fts_open): Remove uses of __P.
207
208 * include/stdlib.h: No need to use __THROW in this header.
209
210 2004-09-06 Roland McGrath <roland@frob.com>
211
212 * sysdeps/mach/hurd/dl-sysdep.c (__writev): Does use assert on FD
213 validity, since __assert_fail gets to here anyway. Just fail.
214
215 2004-09-06 Ulrich Drepper <drepper@redhat.com>
216
217 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix problem with
218 AF_UNSPEC lookup with AI_CANONNAME of name which has only IPv6
219 addresses.
220
221 2004-09-05 Richard Henderson <rth@redhat.com>
222
223 * sysdeps/alpha/fpu/fraiseexcpt.c: Remove file.
224 * sysdeps/unix/sysv/linux/kernel-features.h
225 (__ASSUME_IEEE_RAISE_EXCEPTION): New.
226 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.c: New file.
227 * sysdeps/unix/sysv/linux/alpha/kernel_sysinfo.h: New file.
228 * sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Use it.
229 * sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
230
231 2004-09-05 Richard Henderson <rth@redhat.com>
232
233 * sysdeps/alpha/div.S: Save and restore FPCR around fp operations.
234 * sysdeps/alpha/divl.S, sysdeps/alpha/divq.S, sysdeps/alpha/divqu.S,
235 sysdeps/alpha/ldiv.S, sysdeps/alpha/reml.S, sysdeps/alpha/remq.S,
236 sysdeps/alpha/remqu.S: Likewise.
237 * sysdeps/alpha/div_libc.h (FRAME): Increase to 64.
238
239 2004-09-05 Ulrich Drepper <drepper@redhat.com>
240
241 * nscd/cache.c (cache_add): Correctly log GETHOSTBYADDR and
242 GETHOSTBYADDRv6 requests.
243
244 2004-09-04 Ulrich Drepper <drepper@redhat.com>
245
246 * nscd/pwdcache.c (cache_addpw): Use correct key length in
247 cache_add calls.
248 * nscd/grpcache.c (cache_addgr): Likewise.
249
250 2004-09-03 Alfred M. Szmidt <ams@kemisten.nu>
251
252 * sysdeps/mach/hurd/i386/tls.h (THREAD_DTV): Changed type of _DTV
253 to `dtv_t *'.
254
255 2004-09-03 Ulrich Drepper <drepper@redhat.com>
256
257 * nscd/nscd.c (parse_opt): Use writev instead of two write for
258 invalidate command.
259
260 2004-09-02 Ulrich Drepper <drepper@redhat.com>
261
262 * nscd/connections.c (nscd_run): Check early for invalid request types.
263
264 2004-09-02 Roland McGrath <roland@frob.com>
265
266 * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): New macro.
267 (INSTALL_NEW_DTV, THREAD_DTV): Rewritten to fetch the right word.
268 (THREAD_SELF): New macro.
269
270 2004-09-02 Steven Munroe <sjmunroe@us.ibm.com>
271
272 [BZ #357]
273 * stdlib/tst-setcontext.c (test_stack): Added test for stack clobber.
274 (main): Call test_stack.
275 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
276 (__getcontext): Push stack frame then save parms in local frame.
277 Improve instruction scheduling.
278 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
279 (__swapcontext): Likewise.
280
281 2004-09-01 Andreas Schwab <schwab@suse.de>
282
283 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h [g++ >= 3.5]: Use
284 __builtin_offsetof.
285
286 2004-09-01 Jakub Jelinek <jakub@redhat.com>
287
288 [BZ #361]
289 * posix/fnmatch_loop.c (FCT): For backslash between brackets, branch
290 to normal_bracket after fetching the next character.
291 * posix/tst-fnmatch.input: Add 25 new tests.
292 Reported by Markus Oberhumer <markus@oberhumer.com>.
293
294 2004-09-01 Ulrich Drepper <drepper@redhat.com>
295
296 * elf/rtld.c (dl_main): First check existence of ld.so.preload
297 with access.
298
299 2004-09-01 Roland McGrath <roland@redhat.com>
300
301 * sysdeps/unix/sysv/linux/bits/waitflags.h
302 (WSTOPPED, WEXITED, WCONTINUED, WNOWAIT): New macros.
303 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_WAITID_SYSCALL):
304 New macro.
305 * sysdeps/unix/sysv/linux/waitid.c: New file. Use new syscall when
306 available, or fall back to the waitpid-based generic code.
307
308 2004-08-14 Alfred M. Szmidt <ams@kemisten.nu>
309
310 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Let gcc
311 clobber the `ebp' register.
312 * sysdeps/mach/hurd/i386/Makefile (CFLAGS-init-first.c): Removed.
313 Reverts change from 2004-05-07 by Jeroen Dekkers.
314
315 * sysdeps/mach/hurd/i386/init-first.c (init): Changed the type of
316 NEWSP from `void *' to `int *'. Changed all casts accordingly.
317
318 2004-08-31 Jakub Jelinek <jakub@redhat.com>
319
320 * wcsmbs/wcsmbsload.c (__wcsmbs_getfct): Move attribute_hidden
321 before return type.
322 * locale/localename.c (__current_locale_name): Likewise.
323
324 2004-08-30 Roland McGrath <roland@frob.com>
325
326 * scripts/extract-abilist.awk: If `lastversion' variable defined, omit
327 later sets from output.
328 * Makerules (check-abi): Pass option to set that with value of
329 LIB-abi-frozen variable if one is set.
330
331 * abilist/libcidn.abilist: New file (empty).
332
333 2004-08-30 Jakub Jelinek <jakub@redhat.com>
334
335 * posix/bits/posix1_lim.h (_POSIX_CHILD_MAX, _POSIX_OPEN_MAX): If
336 not __USE_XOPEN2K, use the Unix98 mandated values.
337
338 2004-08-27 Roland McGrath <roland@redhat.com>
339
340 * configure.in (usetls): Default to yes.
341 * configure: Regenerated.
342
343 2004-08-26 Roland McGrath <roland@redhat.com>
344
345 * configure.in (add_ons_automatic): New variable, set to yes or no
346 indicating --enable-add-ons with no explicit list.
347 (running add-on fragments): Allow a fragment to modify $libc_add_on
348 and have that affect its place in the list of add-ons to use.
349 * configure: Regenerated.
350
351 2004-08-26 Ulrich Drepper <drepper@redhat.com>
352
353 * nscd/cache.c: Major rewrite. The data is now optionally kept in
354 a mmaped memory region which is automatically mirrored on disk.
355 This implements persistent data storage. The Memory handled
356 needed to be completely revamped, it now uses a garbage collection
357 mechanism instead of malloc.
358 * nscd/connections.c: Likewise.
359 * nscd/nscd.c: Likewise.
360 * nscd/nscd.h: Likewise.
361 * nscd/nscd_conf.c: Likewise.
362 * nscd/nscd_stat.c: Likewise.
363 * nscd/grpcache.c: Likewise.
364 * nscd/hstcache.c:: Likewise.
365 * nscd/pwdcache.c:: Likewise.
366 * nscd/Makefile: Add rules to build mem.c.
367 * nscd/mem.c: New file.
368 * nscd/nscd.conf: Describe new configuration options.
369
370 2004-08-26 Kaz Kojima <kkojima@rr.iij4u.or.jp>
371
372 * sysdeps/unix/sysv/linux/mips/pread.c: Include sgidefs.h only if
373 NO_SGIDEFS_H isn't defined.
374 * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
375 * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
376
377 * sysdeps/unix/sysv/linux/sh/pread.c: Define NO_SGIDEFS_H and
378 _MIPS_SIM.
379 * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
380 * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
381 * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
382
383 2004-08-26 Ulrich Drepper <drepper@redhat.com>
384
385 * nscd/connections.c (nscd_run): atomic_increment was not missing.
386
387 * sysdeps/gnu/Makefile (libdl-sysdep_routines): Don't add eval.
388 Patch by Greg Schafer.
389
390 2004-08-25 Richard Henderson <rth@redhat.com>
391
392 * sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind
393 instead of $31. Zero $15.
394 * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
395
396 2004-08-25 Ulrich Drepper <drepper@redhat.com>
397
398 * sysdeps/powerpc/powerpc64/bits/atomic.h
399 (__arch_compare_and_exchange_bool_32_acq): Fix case where oldval
400 is negative.
401 (__arch_compare_and_exchange_bool_32_rel): Likewise.
402
403 * nscd/connections.c: Make socket nonblocking so that threads
404 don't get stuck on accept. Fix locking.
405
406 * nscd/grpcache.c (cache_addgr): Use copy of original key in hash
407 entry with alternative key.
408 * nscd/pwdcache.c (cache_addpw): Likewise.
409
410 2004-08-25 Richard Sandiford <rsandifo@redhat.com>
411
412 * sysdeps/mips/dl-machine.h (_dl_start_user): Don't set
413 __libc_stack_end.
414
415 2004-08-23 Ulrich Drepper <drepper@redhat.com>
416
417 * sysdeps/gnu/netinet/udp.h: Cosmetic changes. Remove unnecessary
418 __BEGIN_DECLS/__END_DECLS.
419
420 2004-08-23 Andreas Jaeger <aj@suse.de>
421
422 [BZ #341]
423 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_NOATIME): Define.
424 * sysdeps/unix/sysv/linux/arm/bits/fcntl.h (O_NOATIME): Likewise.
425 * sysdeps/unix/sysv/linux/cris/bits/fcntl.h (O_NOATIME): Likewise.
426 * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (O_NOATIME): Likewise.
427 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (O_NOATIME): Likewise.
428 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_NOATIME): Likewise.
429 * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h (O_NOATIME): Likewise.
430 * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (O_NOATIME): Likewise.
431 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (O_NOATIME): Likewise.
432 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_NOATIME): Likewise.
433 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (O_NOATIME): Likewise.
434 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_NOATIME): Likewise.
435 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (O_NOATIME): Likewise.
436
437 2004-08-21 Ulrich Drepper <drepper@redhat.com>
438
439 * malloc/hooks.c (DEFAULT_CHECK_ACTION): Moved to malloc.c.
440 (check_action): Likewise.
441 When printing error messages, use malloc_printf_nc now instead of
442 fiddling with the streams cancellation flag in every place.
443 * malloc/malloc.c (DEFAULT_CHECK_ACTION): New definition. Change
444 default to 3.
445 (check_action): New variable.
446 (unlink): Print error message and eventually terminate in case list
447 is corrupted.
448 (malloc_printf_nc): New function. Use it in _int_free.
449 Change proposed by Arjan van de Ven.
450
451 * dlfcn/Makefile: Don't build eval.c anymore.
452
453 2004-08-20 Roland McGrath <roland@frob.com>
454
455 * csu/Makefile ($(objpfx)version-info.h): Use printf in place
456 of echo -e for POSIX.2 portability.
457 Reported by Paul Jarc <prj@po.cwru.edu>.
458
459 2004-08-19 Ulrich Drepper <drepper@redhat.com>
460
461 * sysdeps/posix/getaddrinfo.c (gaih_inet): Minor optimizations in
462 list generation.
463
464 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use
465 getcanonname_r function if AI_CANONNAME flag is not set in
466 request.
467
468 * nis/nss_compat/compat-initgroups.c (getgrent_next_nss):
469 Initialize mysize with limits only if latter is >= 0. Use mysize
470 in malloc call.
471
472 2004-08-19 Jakub Jelinek <jakub@redhat.com>
473
474 * sysdeps/posix/getaddrinfo.c (gaih_inet): Cast canon to (char *)
475 to avoid warning.
476
477 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Initialize
478 status to NSS_STATUS_UNAVAIL.
479
480 2004-08-19 Ulrich Drepper <drepper@redhat.com>
481
482 * sysdeps/posix/getaddrinfo.c (gaih_inet): Use h->h_name in the
483 cannoname lookup since it has the FQDN even if the original NAME
484 value has not.
485
486 2004-08-18 Ulrich Drepper <drepper@redhat.com>
487
488 * sysdeps/posix/getaddrinfo.c (gaih_inet): Store NAME parameter
489 pointer in new variable ORIG_NAME and use this pointer when
490 determination of canonical name failed, not the possibly IDN
491 translated value of NAME.
492
493 2004-08-17 Ulrich Drepper <drepper@redhat.com>
494
495 * resolv/resolv.h (RES_DEFAULT): Add RES_NOIP6DOTINT.
496 * resolv/res_init.c (res_setoptions): Recognize ip6-dotint option.
497 Reset RES_NOIP6DOTINT flag in this case..
498
499 * sysdeps/posix/getaddrinfo.c: Fix memory handling of
500 ai_canonname.
501
502 2004-08-16 Ulrich Drepper <drepper@redhat.com>
503
504 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Don't use
505 CNAME records, we better follow the chain of CNAME records which
506 can be accomplished with A/AAAA lookups.
507
508 2004-08-15 Roland McGrath <roland@redhat.com>
509
510 * sysdeps/unix/sysv/linux/bits/resource.h (enum __rusage_who):
511 Remove __RUSAGE_BOTH constant and RUSAGE_BOTH macro.
512 * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
513 * sysdeps/unix/sysv/linux/mips/bits/resource.h: Likewise.
514 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
515
516 2004-08-15 Roland McGrath <roland@frob.com>
517
518 * sysdeps/i386/i686/Makefile (elide-routines.os): Append hp-timing to
519 this, not ...
520 (static-only-routines): ... this.
521 * sysdeps/ia64/Makefile: Likewise.
522 * sysdeps/sparc/sparc32/sparcv9/Makefile: Likewise.
523 * sysdeps/sparc/sparc64/Makefile: Likewise.
524 * sysdeps/x86_64/Makefile: Likewise.
525 * sysdeps/i386/i686/hp-timing.c: Revert copyright terms change.
526 * sysdeps/ia64/hp-timing.c: Likewise.
527 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
528 * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
529
530 * csu/elf-init.c: Update copyright terms including special exception
531 for these trivial files, which are statically linked into executables
532 that use dynamic linking for the significant library code.
533 * io/fstat.c: Likewise.
534 * io/fstat64.c: Likewise.
535 * io/lstat.c: Likewise.
536 * io/lstat64.c: Likewise.
537 * io/stat.c: Likewise.
538 * io/stat64.c: Likewise.
539 * stdlib/atexit.c: Likewise.
540 * sysdeps/alpha/elf/initfini.c: Likewise.
541 * sysdeps/alpha/elf/start.S: Likewise.
542 * sysdeps/arm/elf/start.S: Likewise.
543 * sysdeps/cris/elf/start.S: Likewise.
544 * sysdeps/generic/initfini.c: Likewise.
545 * sysdeps/generic/mknod.c: Likewise.
546 * sysdeps/hppa/elf/initfini.c: Likewise.
547 * sysdeps/hppa/elf/start.S: Likewise.
548 * sysdeps/i386/elf/start.S: Likewise.
549 * sysdeps/i386/i686/hp-timing.c: Likewise.
550 * sysdeps/ia64/elf/initfini.c: Likewise.
551 * sysdeps/ia64/elf/start.S: Likewise.
552 * sysdeps/ia64/hp-timing.c: Likewise.
553 * sysdeps/m68k/elf/start.S: Likewise.
554 * sysdeps/mach/start.c: Likewise.
555 * sysdeps/mips/elf/start.S: Likewise.
556 * sysdeps/powerpc/powerpc32/elf/start.S: Likewise.
557 * sysdeps/powerpc/powerpc64/elf/start.S: Likewise.
558 * sysdeps/s390/s390-32/elf/start.S: Likewise.
559 * sysdeps/s390/s390-32/initfini.c: Likewise.
560 * sysdeps/s390/s390-64/elf/start.S: Likewise.
561 * sysdeps/s390/s390-64/initfini.c: Likewise.
562 * sysdeps/sh/elf/initfini.c: Likewise.
563 * sysdeps/sh/elf/start.S: Likewise.
564 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
565 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Likewise.
566 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
567 * sysdeps/sparc/sparc64/hp-timing.c: Likewise.
568 * sysdeps/standalone/i386/start.S: Likewise.
569 * sysdeps/standalone/i960/start.S: Likewise.
570 * sysdeps/standalone/m68k/m68020/start.S: Likewise.
571 * sysdeps/unix/arm/start.c: Likewise.
572 * sysdeps/unix/bsd/osf/alpha/start.S: Likewise.
573 * sysdeps/unix/bsd/ultrix4/mips/start.S: Likewise.
574 * sysdeps/unix/sparc/start.c: Likewise.
575 * sysdeps/unix/start.c: Likewise.
576 * sysdeps/unix/sysv/aix/start.s: Likewise.
577 * sysdeps/unix/sysv/irix4/start.c: Likewise.
578 * sysdeps/x86_64/elf/initfini.c: Likewise.
579 * sysdeps/x86_64/elf/start.S: Likewise.
580
581 2004-08-15 Roland McGrath <roland@redhat.com>
582
583 [BZ #227]
584 * sysdeps/unix/sysv/linux/kernel-features.h
585 (__ASSUME_BRK_PAGE_ROUNDED): New macro.
586 * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
587 [! __ASSUME_BRK_PAGE_ROUNDED]: Adjust the break up if it falls within
588 the partial page after the dynamic linker's own data segment.
589
590 2004-08-15 Ulrich Drepper <drepper@redhat.com>
591
592 * sysdeps/posix/getaddrinfo.c (gaih_inet): Optimize generation of
593 v4-mapped addresses a bit.
594 (gethosts): Move alloca out of macro, so that it is done only once.
595
596 * sysdeps/posix/getaddrinfo.c (gaih_addrtuple): Change type of
597 addr to avoid casts.
598 (gethosts): Removed.
599 (gethosts2): Renamed to gethosts. Make it usable for family !=
600 AF_UNSPEC. Fix AI_V4MAPPED.
601 (gaih_inet): Remove use of old gethosts. Always use what used to be
602 gethosts2. If entry is found, try to use the same NSS module's
603 getcanonname_r function. Use gethostbyaddr for AI_CANONNAME only
604 if getcanonname_r was not available. Fix filtering of AI_V4MAPPED
605 addresses. Numerous cleanups.
606 * resolv/nss_dns/dns-canon.c: New file.
607 * resolv/Makefile (libnss_dns-routines): Add dns-canon.
608 * resolv/Versions (libnss_dns): Add _nss_dns_getcanonname_r.
609
610 * elf/Makefile: Add rules to build and run tst-dlopenrpath.
611 * elf/tst-dlopenrpath.c: New file.
612 * elf/tst-dlopenrpathmod.c: New file.
613
614 * intl/tst-gettext.sh: Adjust for change of de.po file to UTF-8.
615 * intl/tst-gettext.c: Likewise.
616
617 * nss/getent.c (ahosts_keys_int): Correctly print IPv6 addresses.
618
619 * nss/getent.c: Allow queries for getaddrinfo with AF_INET and
620 AF_INET6.
621
622 2004-08-14 Ulrich Drepper <drepper@redhat.com>
623
624 * po/de.po: Update from translation team.
625
626 2004-08-14 Roland McGrath <roland@frob.com>
627
628 * sysdeps/mach/configure: Regenerated.
629 * sysdeps/mach/hurd/configure: Regenerated.
630
631 2004-08-14 Ulrich Drepper <drepper@redhat.com>
632
633 * sysdeps/posix/getaddrinfo.c (getaddrinfo): If RFC3484 sorting is
634 performed, make sure it is still the first entry after sorting
635 that has the ai_canonname information.
636
637 * sysdeps/posix/getaddrinfo.c (gaih_inet): Really set ai_canonname
638 only in one entry.
639
640 2004-08-13 Daniel Jacobowitz <dan@debian.org>
641
642 * scripts/output-format.sed: Handle default case of three-argument
643 OUTPUT_FORMAT.
644
645 * sysdeps/arm/machine-gmon.h (mcount_internal): Mark as
646 __attribute_used__.
647
648 2004-08-13 Ulrich Drepper <drepper@redhat.com>
649
650 * nss/getent.c (ahosts_keys): ai_canonname is NULL for all but the
651 first returned entry. Print name only if not NULL.
652
653 * nis/nss_nis/nis-netgrp.c: Remove locking by using data in struct
654 __netgrent object passed in instead of global variables.
655 Optimize.
656 * nis/nss_nisplus/nisplus-netgrp.c: Remove locking by using data
657 in struct __netgrent object passed in instead of global variables.
658 * inet/netgroup.h (struct __netgrent): Add service_user field.
659 Move cursor in anonymous union, add new field location to that
660 union.
661 * inet/getnetgrent_r.c: Extensive rewrite to really enable
662 concurrent uset of set/get/endnetgrent and innetgr.
663 Reported by Chuck Simmons.
664
665 * inet/netgroup.h (struct name_list): Replace name pointer with
666 zero-sized array.
667 * inet/getnetgrent_r.c: Adjust code for change in name_list
668 layout. Numerous strdup and free calls removed.
669
670 * elf/sprof.c (read_symbols): When comparing aliases, prefer
671 non-hidden over hidden symbols and strong over weak symbols
672 if both don't start with '_'.
673
674 * malloc/malloc.c: Use strong_alias instead of weak_alias wherever
675 possible.
676
677 2004-08-12 Jakub Jelinek <jakub@redhat.com>
678
679 * sysdeps/unix/sysv/linux/bits/resource.h: Define non-standard
680 RUSAGE_ enums as __RUSAGE_ and adjust macros accordingly.
681 * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
682 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
683 * sysdeps/unix/sysv/linux/mips/bits/resource.h: Likewise.
684 Define non-standard RLIMIT_ enums as __RLIMIT_ and adjust macros
685 accordingly.
686
687 2004-08-11 Andreas Schwab <schwab@suse.de>
688
689 * resolv/res_libc.c: Move definition of __res_initstamp ...
690 * resolv/res_init.c: ... here.
691
692 2004-08-10 GOTO Masanori <gotom@debian.or.jp>
693
694 * locale/C-time.c: Change default ERA value from NULL to "".
695 * locale/tst-C-locale.c: Add test case for ERA keywords.
696
697 2004-08-12 Ulrich Drepper <drepper@redhat.com>
698
699 * sysdeps/unix/sysv/linux/bits/resource.h: Define non-standard
700 RLIMIT__ enums as __RLIMIT_ and adjust macros accordingly.
701 * sysdeps/unix/sysv/linux/alpha/bits/resource.h: Likewise.
702 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
703
704 2004-08-12 Jakub Jelinek <jakub@redhat.com>
705
706 * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_SIGPENDING,
707 RLIMIT_MSGQUEUE): Add.
708 (RLIMIT_NLIMITS, RLIM_NLIMITS): Adjust.
709 * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_SIGPENDING,
710 RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
711 (RLIM_NLIMITS): Adjust.
712 * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIMIT_SIGPENDING,
713 RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
714 (RLIM_NLIMITS): Adjust.
715 * sysdeps/unix/sysv/linux/mips/bits/resource.h (RLIMIT_SIGPENDING,
716 RLIMIT_MSGQUEUE, RLIMIT_NLIMITS): Add.
717 (RLIM_NLIMITS): Adjust.
718
719 2004-08-12 Jakub Jelinek <jakub@redhat.com>
720
721 * resolv/res_query.c (__libc_res_nsearch): Protect the debugging
722 printf with #ifdef DEBUG and RES_DEBUG check.
723
724 * sysdeps/unix/sysv/linux/bits/shm.h: Move __END_DECLS after
725 __USE_MISC #endif.
726 * sysdeps/generic/bits/shm.h: Add __BEGIN_DECLS for __getpagesize
727 declaration.
728 * sysdeps/gnu/bits/shm.h: Likewise.
729 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
730 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
731 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
732 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
733 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Likewise.
734
735 2004-08-12 Ulrich Drepper <drepper@redhat.com>
736
737 * po/ca.po: Update from translation team.
738
739 2004-08-11 Ulrich Drepper <drepper@redhat.com>
740
741 * sysdeps/unix/sysv/linux/bits/shm.h: Add __BEGIN_DECLS for
742 __getpagesize declaration.
743
744 2004-08-11 Roland McGrath <roland@redhat.com>
745
746 * configure.in (libc_cv_cpp_asm_debuginfo): Add missing braces around
747 commands inside &&.
748 Reported by Andreas Schwab <schwab@suse.de>.
749 * configure: Regenerated.
750
751 * posix/tst-waitid.c (do_test): Ignore SIGCHLD before cleanup SIGKILL.
752
753 2004-08-11 Ulrich Drepper <drepper@redhat.com>
754
755 * time/tzset.c (tzset_internal): Add new parameter which is
756 nonzero if called through tzset. Use TZDEFAULT name including
757 name comparison if the new parameter is zero. This means implicit
758 tzset calls will not cause files to be opened and read by tzfile.c
759 all the time.
760
761 2004-08-11 Jakub Jelinek <jakub@redhat.com>
762
763 * rt/tst-timer2.c (do_test): If timer_create fails, just continue.
764 * rt/tst-timer4.c (do_test): If one of the timer_create calls fails,
765 return 1 immediately.
766
767 * time/tzfile.c (__tzfile_read): Free transitions only if it will
768 not be reused.
769
770 * sysdeps/ieee754/dbl-64/mpa.c: Include <sys/param.h>.
771 * sysdeps/ieee754/dbl-64/mpa.h (MAX, MIN): Macros removed.
772
773 * stdio-common/tst-popen.c: Include <string.h>.
774
775 * resolv/res_send.c (__libc_res_nsend): Only define TMPBUF #if DEBUG.
776
777 * sysdeps/pthread/aio_misc.c (handle_fildes_io): Remove noreturn
778 attribute. Return NULL instead of calling pthread_exit at the end.
779
780 2004-08-11 Roland McGrath <roland@redhat.com>
781
782 * iconvdata/testdata/ISO-2022-JP-3: Regenerated.
783
784 2004-08-10 Alfred M. Szmidt <ams@kemisten.nu>
785
786 * sysdeps/generic/bits/in.h (struct ip_mreq): Remove definition.
787
788 2004-08-10 Jakub Jelinek <jakub@redhat.com>
789
790 * libio/bits/stdio.h (fread_unlocked): Cast 0 to (size_t).
791 (fwrite_unlocked): When checking if size * n is <= 8, cast each
792 argument to size_t individually. Cast n to (void) instead of
793 (size_t), surround with (), return (size_t) 0 if one of n or size
794 is 0. [BZ #316]
795 * stdio-common/Makefile (tests): Add tst-unlockedio.
796 * stdio-common/tst-unlockedio.c: New test.
797
798 2004-08-09 Roland McGrath <roland@frob.com>
799
800 * manual/install.texi (Supported Configurations): Replace bug-glibc
801 mention with web URL.
802 * INSTALL: Regenerated.
803 * locale/iso-3166.def: Likewise, in comment.
804 * locale/iso-4217.def: Likewise.
805 * locale/iso-639.def: Likewise.
806 * posix/cpio.h: Remove bug reporting comment.
807
808 2004-08-09 Ulrich Drepper <drepper@redhat.com>
809
810 * libio/bits/stdio.h (fread_unlocked): Add a couple of (size_t)
811 casts to handle funny calls with floating point argument values
812 and signed values correctly and without warning.
813 (fwrite_unlocked): Likewise. [BZ #309]
814
815 * malloc/memusage.c (me): Use creat64, not creat.
816 * malloc/memusagestat.c: Fix handling of very large sizes. [BZ #285]
817 Patch by Guy Maor <guymaor@yahoo.com>.
818
819 * elf/ldconfig.c (options): Mark parameter option names as
820 translatable. [BZ #253] Patch by Jakub Bogusz <qboosh@pld-linux.org>.
821
822 * iconv/gconv_charset.h (strip): Also allow comma which is what is
823 used to separate options. [BZ #194]
824
825 2004-08-09 Roland McGrath <roland@redhat.com>
826
827 * FAQ.in: Refer to web pages instead of bug-glibc.
828 * FAQ: Regenerated.
829
830 * time/strptime_l.c: #include <stdbool.h>, `bool' used in last change.
831
832 2004-08-09 Ulrich Drepper <drepper@redhat.com>
833
834 * time/tzset.c (tzset_internal): If TZ is not set do not compare
835 old and new tz value since it might be /etc/localtime in both
836 cases although the file changed. [BZ #154]
837 Patch by Christian Franke <franke@computer.org>.
838
839 * time/tzfile.c (__tzfile_read): Determine dev/ino of file.
840 Compare with values of previously opened file. Don't do anything
841 is they match.
842
843 2004-08-08 Ulrich Drepper <drepper@redhat.com>
844
845 * elf/dl-load.c (_dl_map_object): If __RTLD_CALLMAP flag is set,
846 reset loader before the actual loading.
847 * elf/dl-open.c (dl_open_worker): If file name contains no path
848 element determine map of caller. Pass caller map in this case to
849 _dl_map_object. Set __RTLD_CALLMAP in mode.
850 * include/dlfcn.h (__RTLD_CALLMAP): Define. [BZ #116]
851 Patch by Greg Wolodkin <greg@mathworks.com>.
852
853 * misc/syslog.c (openlog_internal): Always try both UDP and TCP.
854 [BZ #108] Patch mainly by Bjorn Andersson <bjorn@iki.fi>.
855
856 * configure.in: Also recognize i786. [BZ #106]
857 Patch by <pluto@pld-linux.org>.
858
859 * resolv/res_query.c (__libc_res_nsearch): Correctly test whether
860 name contains any dots. [BZ #95]
861
862 * resolv/res_send.c: Compiling with DEBUG defined works again.
863 * resolv/gethnamaddr.c (dprintf): Renamed to Dprintf. Adjust all
864 callers.
865
866 * resolv/tst-leaks.c (TIMEOUT): Define so that if no server is
867 available the process is not killed. [BZ #41]
868
869 * intl/tst-gettext.c (main): Improve some messages. [BZ #33]
870
871 * time/strptime_l.c (__strptime_internal): Fix handling of %Ey.
872 [BZ #28]
873
874 * po/sv.po: Update from translation team.
875
876 2004-08-07 Ulrich Drepper <drepper@redhat.com>
877
878 * inet/netinet/in.h: Add more const to the setipv4soucefilter,
879 getsourcefilter, and setsourcefilter parameter list.
880 * sysdeps/generic/setipv4sourcefilter.c: Likewise.
881 * sysdeps/generic/getsourcefilter.c: Likewise.
882 * sysdeps/generic/setsourcefilter.c: Likewise.
883 * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
884 * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
885 * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
886
887 * po/tr.po: Update from translation team.
888
889 2004-08-06 Ulrich Drepper <drepper@redhat.com>
890
891 * iconvdata/jisx0213.h (jisx0213_added_in_2004_p): Fix typo.
892 Reported by Paolo Bonzini.
893
894 2004-08-06 Jakub Jelinek <jakub@redhat.com>
895
896 * sysdeps/ia64/dl-machine.h (elf_machine_fixup_plt): Add
897 always_inline.
898 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_runtime_setup,
899 elf_machine_fixup_plt, elf_machine_plt_conflict): Likewise.
900
901 * sysdeps/unix/sysv/linux/netatalk/at.h: Include bits/sockaddr.h
902 before including linux/atalk.h.
903
904 * resolv/res_libc.c: Include atomic.h.
905
906 * intl/finddomain.c (free_mem): Rename to...
907 (_nl_finddomain_subfreeres): ... this. Add
908 __libc_freeres_fn_section.
909 * intl/loadmsgcat.c (_nl_unload_domain): Add
910 __libc_freeres_fn_section.
911 * intl/gettextP.h (_nl_unload_domain): Move into #ifdef _LIBC.
912 Add attribute_hidden.
913 (_nl_findomain_subfreeres): New prototype.
914 * iconv/gconv_db.c (free_mem): Call _nl_findomain_subfreeres.
915
916 2004-07-30 Guido Guenther <agx@sigxcpu.org>
917
918 * nss/getent.c (passwd_keys): Use strtoul instead of isdigit to
919 test if the key is numeric or not.
920 (group_keys): Likewise.
921
922 2004-08-05 Ulrich Drepper <drepper@redhat.com>
923
924 * inet/netinet/in.h: Define struct ip_msfilter, IP_MSFILTER_SIZE,
925 struct group_filter, and GROUP_FILTER_SIZE.
926 * include/sys/socket.h: Declare __getsockopt.
927 * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: New file.
928 * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: New file.
929 * sysdeps/unix/sysv/linux/setsourcefilter.c: New file.
930 * sysdeps/unix/sysv/linux/getsourcefilter.c: New file. [BZ #211]
931
932 * po/ko.po: Update from translation team.
933
934 2004-08-04 Jakub Jelinek <jakub@redhat.com>
935
936 * hesiod/hesiod.c (__hesiod_res_get): Use calloc instead of malloc +
937 memset.
938 (__hesiod_res_set): Free nsaddrs.
939
940 * include/resolv.h (__res_maybe_init): Add prototype.
941 * resolv/resolv.h (struct __res_state): Add _u._ext.initstamp field.
942 * resolv/Versions (libc): Add __res_maybe_init@@GLIBC_PRIVATE.
943 * resolv/res_libc.c (__res_initstamp, lock): New variables.
944 (res_init): Increase __res_initstamp.
945 (__res_maybe_init): New function.
946 * resolv/res_init.c (__res_vinit): Initialize _u._ext.initstamp.
947 * hesiod/hesiod.c (__hesiod_res_get): Use __res_maybe_init instead
948 of RES_INIT check and {res_ninit,__res_ninit,res_init} call.
949 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
950 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname2_r,
951 _nss_dns_gethostbyaddr_r): Likewise.
952 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r,
953 _nss_dns_getnetbyaddr_r): Likewise.
954 * resolv/gethnamaddr.c (gethostbyname, gethostbyname2,
955 gethostbyaddr): Likewise.
956 * resolv/res_data.c (fp_nquery, res_mkquery, res_mkupdate,
957 res_isourserver, res_sendsigned, res_update, res_search,
958 res_querydomain): Likewise.
959 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Likewise.
960 * nss/digits_dots.c (__nss_hostname_digits_dots): Likewise.
961 * nss/getnssent_r.c (__nss_setent, __nss_endent, __nss_getent_r):
962 Likewise.
963
964 2004-08-05 Ulrich Drepper <drepper@redhat.com>
965
966 * sysdeps/posix/getaddrinfo.c (gaih_inet): Set ai_family for
967 V4-mapped IPv6 addresses and req->ai_family==AF_INET.
968 Reported by A. Guru <a.guru@sympatico.ca>.
969
970 * po/sv.po: Update from translation team.
971 * po/sk.po: Likewise.
972 * po/pl.po: Likewise.
973
974 2004-08-04 Jakub Jelinek <jakub@redhat.com>
975 Ulrich Drepper <drepper@redhat.com>
976
977 * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Don't read more input
978 characters than necessary.
979
980 2004-08-05 Ulrich Drepper <drepper@redhat.com>
981
982 * wcsmbs/Makefile (tests): Add tst-mbsrtowcs.
983 * wcsmbs/tst-mbsrtowcs.c: New file.
984
985 * po/fr.po: Update from translation team.
986
987 2004-08-04 Jakub Jelinek <jakub@redhat.com>
988
989 * resolv/inet_pton.c (inet_pton4): Disallow octal numbers. Reported
990 by A. Guru <a.guru@sympatico.ca>. [BZ #295]
991
992 2004-08-05 Ulrich Drepper <drepper@redhat.com>
993
994 * po/nl.po: Update from translation team.
995
996 * sysdeps/posix/getaddrinfo.c (gaih_inet): Recognize all the IPv4
997 numeric address formats inet_addr knows.
998 (getaddrinfo): Allow AI_NUMERICSERV flag.
999 If neither IPv4 nor IPv6 interface is present we cannot make any
1000 decision for AI_ADDRCONFIG. Fail if AI_NUMERICSERV is set and the
1001 string is not just a number. Remove useless freeaddrinfo call.
1002 * resolv/netdb.h (AI_NUMERICSERV): Define.
1003 Based on a patch by a.guru@sympatico.ca.
1004
1005 2004-08-04 Jakub Jelinek <jakub@redhat.com>
1006
1007 * stdlib/strfmon_l.c (__vstrfmon_l): Memset whole info structure
1008 instead of trying to initialize some, but not all, fields one by
1009 one.
1010 * stdio-common/printf_size.c (printf_size): Initialize fb_info
1011 structure with *info instead of trying to initialize some, but not
1012 all, fields from it.
1013
1014 * nscd/connections.c (handle_request): Check if req->type is in
1015 LASTDBREQ .. LASTREQ range instead of req.
1016
1017 * locale/programs/linereader.c (lr_create): Initialize
1018 lr->return_widestr to 0.
1019
1020 * elf/dl-close.c (free_slotinfo): Add __libc_freeres_fn_section.
1021 (free_mem): Call free_slotinfo just once.
1022
1023 * stdio-common/tst-fmemopen.c (main): Check for MAP_FAILED instead
1024 of NULL.
1025
1026 * locale/localeinfo.h (_nl_locale_subfreeres): New prototype.
1027 * locale/setlocale.c (free_category): Add __libc_freeres_fn_section.
1028 (free_mem): Rename to _nl_locale_subfreeres.
1029 * iconv/gconv_db.c: Include locale/localeinfo.h.
1030 (free_derivation, free_modules_db): Add __libc_freeres_fn_section.
1031 (free_mem): Call _nl_locale_subfreeres.
1032 * iconv/gconv_dl.c (do_release_all): Add __libc_freeres_fn_section.
1033
1034 2004-08-04 Roland McGrath <roland@frob.com>
1035
1036 * Makeconfig ($(common-objpfx)config.status):
1037 Fix typo: $(add_ons) -> $(add-ons).
1038 (Makeconfig-add-on): New variable. When doing $(sysdep-makeconfigs)
1039 include, use black magic to get it set to an add-on's name during the
1040 include of the add-on's Makeconfig.
1041
1042 * configure.in: Use variable name `libc_add_on' when sourcing add-on
1043 configure fragments, so they can refer to this.
1044 * configure: Regenerated.
1045
1046 2004-08-04 Roland McGrath <roland@redhat.com>
1047
1048 * posix/tst-waitid.c (test_child): Sleep a second before stopping.
1049 (do_test): Bump sleep to three seconds.
1050 (sigchld, check_sigchld): New functions.
1051 (do_test): Handle SIGCHLD and check for getting the right details.
1052
1053 * posix/tst-waitid.c (do_test): Kill the child process when bailing
1054 out early on some failure.
1055 [WCONTINUED]: Test WCONTINUED functionality.
1056
1057 2004-08-03 Ulrich Drepper <drepper@redhat.com>
1058
1059 * nscd/connections.c (handle_request): Print more descriptive
1060 message for invalid request types.
1061
1062 2004-08-02 Jakub Jelinek <jakub@redhat.com>
1063
1064 * iconvdata/ibm932.c (BODY): Avoid binary search for ch >= 0xffff.
1065 Always treat high as highest number in range + 1.
1066 * iconvdata/ibm943.c (BODY): Likewise.
1067
1068 2004-07-31 Bruno Haible <bruno@clisp.org>
1069
1070 * iconvdata/JISX0213.TXT: Updated to JISX0213 plane 1 version 2004.
1071 * iconvdata/jisx0213.c (__jisx0213_to_ucs_main,
1072 __jisx0213_to_ucs_pagestart, __jisx0213_from_ucs_level1,
1073 __jisx0213_from_ucs_level2): Regenerated.
1074 * iconvdata/jisx0213.h (jisx0213_added_in_2004_p): New function.
1075 * iconvdata/iso-2022-jp-3.c (JISX0213_1_2000_set): Renamed from
1076 JISX0213_1_set.
1077 (JISX0213_1_2004_set): New enum value.
1078 (BODY for FROM_LOOP): Treat ESC $ ( Q like ESC $ ( O.
1079 (BODY for TO_LOOP): For JISX 0213 plane 1 characters, emit ESC $ ( O
1080 when possible, ESC $ ( Q when needed.
1081 * iconvdata/testdata/EUC-JISX0213: Add the 10 new characters.
1082 * iconvdata/testdata/EUC-JISX0213..UTF8: Update.
1083 * iconvdata/testdata/SHIFT_JISX0213: Add the 10 new characters.
1084 * iconvdata/testdata/SHIFT_JISX0213..UTF8: Update.
1085 * iconvdata/testdata/ISO-2022-JP-3: Add the 10 new JISX0213 characters.
1086 * iconvdata/testdata/ISO-2022-JP-3..UTF8: Update.
1087
1088 2004-07-22 Bruno Haible <bruno@clisp.org>
1089
1090 * iconvdata/gconv-modules (ISO-8859-7): Add alias ISO_8859-7:2003.
1091
1092 2004-07-29 David S. Miller <davem@redhat.com>
1093
1094 * sysdeps/sparc/sparc64/sparcv9b/memcpy.S (memcpy): Optimize
1095 better for smaller than 256 byte copies. Also, use only one
1096 unrolled loop instead of two for the large copy case.
1097
1098 2004-07-30 Richard Henderson <rth@redhat.com>
1099
1100 * sysdeps/alpha/divq.S: Save t3 before it gets clobbered.
1101 * sysdeps/alpha/remq.S: Likewise.
1102 * sysdeps/alpha/div.S, sysdeps/alpha/ldiv.S: Rewrite with the
1103 new division algorithms in divl.S and divq.S respectively.
1104
1105 2004-07-28 GOTO Masanori <gotom@debian.or.jp>
1106
1107 * timezone/asia: Update from tzdata2004b.
1108 * timezone/backward: Likewise.
1109 * timezone/europe: Likewise.
1110 * timezone/iso3166.tab: Likewise.
1111 * timezone/leapseconds: Likewise.
1112 * timezone/northamerica: Likewise.
1113 * timezone/southamerica: Likewise.
1114 * timezone/zone.tab: Likewise.
1115
1116 * timezone/private.h: Update from tzcode2004b.
1117 * timezone/zic.c: Likewise.
1118
1119 2004-07-27 Ulrich Drepper <drepper@redhat.com>
1120
1121 * nscd/grpcache.c (cache_addgr): If necessary, add entry also
1122 under the name the user provided.
1123 * nscd/pwdcache.c (cache_addpw): Likewise.
1124
1125 2004-07-26 Roland McGrath <roland@redhat.com>
1126
1127 * sysdeps/posix/waitid.c [WEXITED]: Clear WEXITED bit in OPTIONS for
1128 call to __waitpid.
1129
1130 2004-07-26 Ulrich Drepper <drepper@redhat.com>
1131
1132 * nscd/hstcache.c (cache_addhst): Fix two scenarios which lead to
1133 memory leaks.
1134
1135 * sysdeps/unix/sysv/linux/ifreq.c (__ifreq): Assign pointer for
1136 new buffer at the right time.
1137 Reported by Jakub Bogusz <qboosh@pld-linux.org>.
1138
1139 2004-07-25 Ulrich Drepper <drepper@redhat.com>
1140
1141 * inet/Versions [libc, GLIBC_2.3.4]: Add getipv4sourcefilter,
1142 getsourcefilter, setipv4sourcefilter, and setsourcefilter.
1143 * inet/Makefile (routines): Likewise.
1144 * inet/netinet/in.h: Add prototypes for getipv4sourcefilter,
1145 getsourcefilter, setipv4sourcefilter, and setsourcefilter.
1146 * sysdeps/generic/getipv4sourcefilter.c: New file.
1147 * sysdeps/generic/setipv4sourcefilter.c: New file.
1148 * sysdeps/generic/getsourcefilter.c: New file.
1149 * sysdeps/generic/setsourcefilter.c: New file.
1150
1151 2004-07-17 Steven Munroe <sjmunroe@us.ibm.com>
1152
1153 * sysdeps/powerpc/powerpc64/memcpy.S: Improve instruction scheduling
1154 for POWER4 machines.
1155
1156 2004-07-21 Jakub Jelinek <jakub@redhat.com>
1157
1158 [BZ #274]
1159 * stdlib/strtod_l.c (INTERNAL (__STRTOF)): Fix used >=
1160 BITS_PER_MP_LIMB shifting up.
1161 * stdlib/tst-strtod.c (main): Add new tests.
1162
1163 2004-07-23 Jakub Jelinek <jakub@redhat.com>
1164
1165 [BZ #282]
1166 * libio/iopopen.c (_IO_new_popen): Use _IO_init instead of
1167 _IO_no_init. Remove wd from struct locked_FILE.
1168 (_IO_wproc_jumps): Remove.
1169 Reported by Andrew Josey <a.josey@opengroup.org>.
1170 * stdio-common/Makefile (tests): Add tst-popen.
1171 * stdio-common/tst-popen.c: New test.
1172
1173 2004-07-23 Ulrich Drepper <drepper@redhat.com>
1174
1175 * posix/bits/posix1_lim.h: Fix values for _POSIX_CHILD_MAX and
1176 _POSIX_OPEN_MAX. Add _POSIX_HOST_NAME_MAX, _POSIX_SYMLINK_MAX,
1177 _POSIX_SYMLOOP_MAX, and _POSIX_RE_DUP_MAX.
1178 Reported by Andrew Josey.
1179
1180 * include/features.h: Document _POSIX_C_SOURCE == 200112L.
1181
1182 * grp/grp.h: Define gid_t if __USE_XOPEN2K is defined.
1183 * pwd/pwd.h: Define uid_t and gid_t if __USE_XOPEN2K is defined.
1184 * io/sys/stat.h: Define dev_t, gid_t, ino_t, mode_t, nlink_t,
1185 off_t, time_t, and uid_t if __USE_XOPEN2K is defined.
1186 * signal/signal.h: Define pid_t if __USE_XOPEN2K is defined.
1187 * posix/unistd.h: Define gid_t, off_t, pid_t, uid_t, and
1188 useconds_t if __USE_XOPEN2K is defined.
1189 * io/utime.h: Define time_t if __USE_XOPEN2K is defined.
1190 * libio/stdio.h: Declare fseeko and ftello if __USE_XOPEN2K is defined.
1191
1192 2004-07-19 Thorsten Kukuk <kukuk@suse.de>
1193
1194 * nis/nss_compat/compat-initgroups.c (getgrent_next_nss): Don't
1195 allocate memory for large temporary variables with alloca.
1196
1197 2004-07-22 Ulrich Drepper <drepper@redhat.com>
1198
1199 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Compatibility
1200 code must have version GLIBC_2.0. Patch by Dwayne McConnell.
1201
1202 * nscd/nscd_getgr_r.c (nscd_getgr_r): Avoid read call with NULL
1203 pointer and zero length.
1204
1205 2004-07-21 Ulrich Drepper <drepper@redhat.com>
1206
1207 * nscd/cache.c (prune_cache): Print correct list when debugging.
1208
1209 2004-07-21 Jakub Jelinek <jakub@redhat.com>
1210
1211 * resolv/res_libc.c (res_init): If RES_INIT is set and
1212 _res.nscount > 0, call __res_nclose and free nsaddrs.
1213 * resolv/Makefile: Add rules to build and run tst-leaks2.
1214 * resolv/tst-leaks2.c: New test.
1215
1216 2004-07-21 Ulrich Drepper <drepper@redhat.com>
1217
1218 * intl/libintl.h: Don't define macros for C++.
1219 Patch by Goto Masanori.
1220
1221 2004-07-22 GOTO Masanori <gotom@debian.or.jp>
1222
1223 [BZ #276]
1224 * include/arpa/inet.h: Change inet_aton type from in_addr_t to int.
1225 * inet/arpa/inet.h: Likewise.
1226 * resolv/inet_addr.c: Likewise.
1227
1228 2004-07-21 Alexandre Oliva <aoliva@redhat.com>
1229
1230 * sysdeps/unix/sysv/linux/mips/mips64/syscalls.list: Add semtimedop.
1231
1232 2004-07-20 Roland McGrath <roland@redhat.com>
1233
1234 * configure.in (add_ons): Substitute this. Move $add_ons handling
1235 after AC_CANONICAL_HOST and default setting of $machine et al.
1236 Don't set $subdirs from $add_ons.
1237 Instead, source add-on/configure fragments early on.
1238 (base_machine): If it's already set, don't set it based on $machine.
1239 (libc_config_ok): New variable, set to no. If an add-on fragment sets
1240 it to yes, skip the tuple sanity check as if --enable-hacker-mode.
1241 (sysnames): Try appending add-on names after machine as well.
1242 * config.make.in (add-ons): Set from @add_ons@ instead of @subdirs@.
1243 * Makeconfig ($(common-objpfx)config.status): Also depend on configure
1244 files in $(add_ons) dirs.
1245
1246 * sysdeps/unix/sysv/linux/bits/in.h (struct ip_mreq): Remove
1247 definition, now in netinet/in.h proper.
1248
1249 2004-07-20 Alexandre Oliva <aoliva@redhat.com>
1250
1251 * sysdeps/unix/sysv/linux/mips/Makefile ($(objpfx)syscall-%.h):
1252 Sort by syscalls. Make sure we get headers such as sgidefs.h from
1253 the build tree before just-installed ones.
1254
1255 * sysdeps/mips/atomicity.h: Use standard names for ABI macros,
1256 include sgidefs.h where appropriate.
1257 * sysdeps/mips/dl-machine.h: Likewise.
1258 * sysdeps/mips/machine-gmon.h: Likewise.
1259 * sysdeps/mips/bits/setjmp.h: Likewise.
1260 * sysdeps/mips/fpu/bits/mathdef.h: Likewise.
1261 * sysdeps/mips/mips64/__longjmp.c: Likewise.
1262 * sysdeps/mips/mips64/setjmp_aux.c: Likewise.
1263 * sysdeps/unix/sysv/linux/mips/kernel_stat.h: Likewise.
1264 * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
1265 * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
1266 * sysdeps/unix/sysv/linux/mips/ptrace.c: Likewise.
1267 * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
1268 * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
1269 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
1270 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h: Likewise.
1271 * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
1272 * sysdeps/unix/sysv/linux/mips/bits/sigcontext.h: Likewise.
1273 * sysdeps/unix/sysv/linux/mips/bits/stat.h: Likewise.
1274 * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
1275 * sysdeps/unix/sysv/linux/mips/sys/ptrace.h: Likewise.
1276 * sysdeps/unix/sysv/linux/mips/sys/tas.h: Likewise.
1277 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Likewise.
1278 * sysdeps/unix/sysv/linux/mips/sys/user.h: Likewise.
1279 * sysdeps/unix/sysv/linux/mips/Makefile ($(objpfx)syscall-%.h):
1280 Likewise.
1281 * sysdeps/unix/sysv/linux/mips/configure.in (asm-unistd.h):
1282 Likewise.
1283
1284 * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Update to use
1285 _dl_lookup_symbol_x.
1286 (elf_machine_runtime_link_map): Don't INTUSE _dl_signal_error.
1287
1288 2004-07-20 Ulrich Drepper <drepper@redhat.com>
1289
1290 * inet/netinet/in.h: Define struct ip_mreq and struct
1291 ip_mreq_source.
1292 Define struct group_req and struct group_source_req.
1293 * sysdeps/unix/sysv/linux/bits/in.h: Define IP_UNBLOCK_SOURCE,
1294 IP_BLOCK_SOURCE, IP_ADD_SOURCE_MEMBERSHIP,
1295 IP_DROP_SOURCE_MEMBERSHIP, IP_MSFILTER, MCAST_JOIN_GROUP,
1296 MCAST_BLOCK_SOURCE, MCAST_UNBLOCK_SOURCE, MCAST_LEAVE_GROUP,
1297 MCAST_JOIN_SOURCE_GROUP, MCAST_LEAVE_SOURCE_GROUP, and
1298 MCAST_MSFILTER.
1299 Define MCAST_INCLUDE and MCAST_EXCLUDE.
1300
1301 * iconvdata/gconv-modules: Add alias for IBM874 [BZ #244].
1302
1303 2004-07-19 Jakub Jelinek <jakub@redhat.com>
1304
1305 [BZ #258]
1306 * math/libm-test.inc (max_value, min_value): New variables.
1307 (initialize): Initialize them.
1308 (pow_test): Add a couple of new tests.
1309 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Don't generate invalid
1310 exception if |y| >= 1U<<31.
1311 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Don't generate invalid
1312 exception if |y| >= 1L<<63.
1313 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
1314 If y*log2(x) overflows to +-inf, return still +inf/+0 instead of NaN.
1315 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
1316
1317 2004-07-18 Ulrich Drepper <drepper@redhat.com>
1318
1319 * nscd/pwdcache.c (cache_addpw): Optimize case of unsuccessful
1320 lookup a bit.
1321 * nscd/grpcache.c (cache_addgr): Likewise.
1322 * nscd/hstcache.c (cache_addhst): Likewise.
1323
1324 2004-07-10 GOTO Masanori <gotom@debian.or.jp>
1325
1326 * sysdeps/s390/s390-32/elf/start.S: Remove symbol _fp_hw.
1327 * sysdeps/s390/s390-64/elf/start.S: Likewise.
1328
1329 2004-04-16 Andreas Schwab <schwab@suse.de>
1330
1331 * sysdeps/ia64/bits/atomic.h: Cast first argument of
1332 __sync_bool_compare_and_swap_si correct to void*.
1333
1334 2004-07-17 Ulrich Drepper <drepper@redhat.com>
1335
1336 * iconv/iconv_prog.c (print_known_names): Make machine-readable
1337 output even less cluttered.
1338
1339 2004-07-16 Steven Munroe <sjmunroe@us.ibm.com>
1340
1341 [BZ #269]
1342 * setjmp/Makefile (tests): Add bug269-setjmp.
1343 * setjmp/bug269-setjmp.c: New file.
1344 * sysdeps/powerpc/powerpc64/__longjmp-common.S [SHARED && !IS_IN_rtld]:
1345 Store R2 from jmpbuf in callers TOC save area.
1346 * sysdeps/powerpc/powerpc64/bsd-_setjmp.S [SHARED && !IS_IN_rtld]:
1347 Store R2 in TOC save area.
1348 * sysdeps/powerpc/powerpc64/setjmp-common.S [SHARED && !IS_IN_rtld]:
1349 Copy TOC save area from previous frame as R2 (TOC) in jmpbuf.
1350
1351 2004-07-16 Jakub Jelinek <jakub@redhat.com>
1352
1353 * locale/newlocale.c: Include bits/libc-lock.h.
1354 (__libc_setlocale_lock): Extern decl.
1355 (__newlocale): Use it.
1356 Reported by Ulrich Weigand <Ulrich.Weigand@de.ibm.com>.
1357
1358 2004-07-15 Jakub Jelinek <jakub@redhat.com>
1359
1360 * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Remove
1361 static inline __attribute ((always_inline)). Don't define if
1362 NO_CANCELLATION.
1363 (__libc_fcntl): Use INLINE_SYSCALL directly instead of
1364 __fcntl_nocancel.
1365 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c (__fcntl_nocancel):
1366 Remove static inline __attribute ((always_inline)). Don't define
1367 if NO_CANCELLATION.
1368 (__libc_fcntl): Use INLINE_SYSCALL directly instead of
1369 __fcntl_nocancel.
1370 * sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Define to
1371 __libc_fcntl if NO_CANCELLATION and __ASSUME_FCNTL64 == 0.
1372 Don't define at all if NO_CANCELLATION and __ASSUME_FCNTL64 > 0.
1373 (__libc_fcntl): Don't define if __fcntl_nocancel is a macro.
1374
1375 [BZ #262]
1376 * sysdeps/i386/elf/start.S (_start): Use @GOT instead of @GOTOFF
1377 for main.
1378 * elf/Makefile: Add rules to build and run tst-pie1.
1379 * elf/tst-pie1.c: New test.
1380 * elf/tst-piemod1.c: New file.
1381
1382 2004-07-14 Jakub Jelinek <jakub@redhat.com>
1383
1384 [BZ #266]
1385 * manual/string.texi (l64a): Note that the static buffer is 7 bytes
1386 long. Rewrite example code so that it takes into account l64a output
1387 shorter than 6 characters.
1388 Reported by Julian Graham <julian.graham@aya.yale.edu>.
1389
1390 2004-07-14 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1391
1392 * sysdeps/sh/dl-machine.h: Don't reset _dl_starting_up here.
1393 (elf_machine_rela_relative): Remove unused valiable.
1394
1395 2004-07-12 Paul Eggert <eggert@cs.ucla.edu>
1396
1397 [BZ #263]
1398 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Don't store
1399 outside the buffer if the read returns 0. __strtod_l can't set
1400 endp to NULL, so remove a test for that case.
1401
1402 2004-07-12 Roland McGrath <roland@redhat.com>
1403
1404 * manual/signal.texi (Interrupted Primitives): Make clear that
1405 TEMP_FAILURE_RETRY evaluates its expression as long int and compares
1406 it to -1 to define "failure".
1407
1408 2004-07-10 Ulrich Drepper <drepper@redhat.com>
1409
1410 * elf/ldconfig.c: Define PROCINFO_CLASS as static before including
1411 ldsodefs.h.
1412 * sysdeps/generic/ldsodefs.h: Only define PROCINFO_CLASS if it is not
1413 already defined.
1414 * sysdeps/i386/dl-procinfo.c: Define PROCINFO_CALLS only if not
1415 already defined.
1416
1417 * elf/rtld.c (print_statistics): Mark with noinline attribute.
1418 * sysdeps/i386/dl-machine.h (elf_machine_rel): Mark with always_inline
1419 attribute.
1420 (elf_machine_rel_relative): Likewise.
1421
1422 * include/string.h: Add libc_hidden_proto for __strtok_r and
1423 __strsep_g.
1424 * sysdeps/generic/strsep.c: Add libc_hidden_def.
1425 * sysdeps/generic/strtok_r.c: Likewise.
1426 * sysdeps/i386/strtok_r.S: Add alias for internal symbol.
1427 * sysdeps/i386/i686/strtok_r.S: Likewise.
1428 * sysdeps/x86_64/strtok_r.S: Likewise.
1429
1430 2004-07-09 Alexandre Oliva <aoliva@redhat.com>
1431
1432 * inet/getnetgrent_r.c (internal_setnetgrent): Make it hidden
1433 instead of internal-linkage, such that we can alias to it.
1434 (internal_endnetgrent, internal_getnetgrent_r): Likewise.
1435
1436 2004-07-09 Ulrich Drepper <drepper@redhat.com>
1437
1438 * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Move attribute
1439 to the front for gcc 3.5+.
1440 * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
1441 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Likewise.
1442 * include/fcntl.h: Don't declare __fcntl_nocancel here if
1443 NO_CANCELLATION is defined.
1444
1445 2004-07-07 Jakub Jelinek <jakub@redhat.com>
1446
1447 * elf/dl-fini.c (_dl_fini): Add nloaded variable, load
1448 GL(dl_nloaded) into it while still in critical section.
1449
1450 2004-07-06 Thorsten Kukuk <kukuk@suse.de>
1451
1452 * nss/getent.c (print_group, print_passwd): Use %lu format for
1453 `unsigned long int' values.
1454
1455 * sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Fix syntax
1456 error typos in goto statements.
1457
1458 2004-07-07 Roland McGrath <roland@frob.com>
1459
1460 * Makefile (dist-separate): New variable.
1461 (glibc-%.tar rule): Make separate tar files for add-ons listed there.
1462 Depend on their configure files.
1463 (dist-do-separate-dirs): New canned sequence to do that.
1464 (dist-separate-libidn, dist-separate-linuxthreads): New variables.
1465 (dist): Depend on add-on tar files based on $(dist-separate).
1466 (dist-version): New variable, default to $(version).
1467 (tag-for-dist, dist): Use that in place of $(version) in deps.
1468
1469 2004-07-07 Ulrich Drepper <drepper@redhat.com>
1470
1471 * elf/dl-fini.c (_dl_fini): Move the unlock of the ld.so lock
1472 before the loop running the destructors.
1473
1474 2004-05-18 Andreas Schwab <schwab@suse.de>
1475
1476 * elf/dl-load.c (_dl_map_object_from_fd): Use the end address of
1477 the first segment for mprotect, not l_text_end.
1478
1479 2004-07-05 Ulrich Drepper <drepper@redhat.com>
1480
1481 * elf/dl-profile.c (_dl_start_profile): Compact error handling.
1482 Remove hashfraction variable. Make kcount and kcountsize local
1483 variables.
1484
1485 * elf/dl-init.c: Don't define and use _dl_starting_up if
1486 HAVE_INLINED_SYSCALLS is defined and the variable is not used.
1487 * elf/dl-support.c: Likewise.
1488 * elf/rtld.c: Likewise.
1489 * elf/dl-misc.c (_dl_debug_vdprintf): Use writev syscall directly
1490 if HAVE_INLINED_SYSCALLS is defined.
1491 * sysdeps/powerpc/powerpc64/dl-machine.h: Don't reset _dl_starting_up
1492 here.
1493 * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
1494 * sysdeps/unix/sysv/linux/configure.in: Define HAVE_INLINED_SYSCALLS.
1495 * config.h.in: Add entry for HAVE_INLINED_SYSCALLS.
1496
1497 * sysdeps/posix/profil.c: If compiled for ld.so, omit code which
1498 is needed to stop profiling.
1499 * elf/dl-open.c (dl_open_worker): If a newly opened object is to be
1500 profile make sure it cannot be unloaded.
1501
1502 * sysdeps/unix/sysv/linux/dl-origin.c: Inline readlink syscall.
1503
1504 * sysdeps/unix/sysv/linux/fcntl.c: If compiled without cancellation
1505 support, make sure the helper function is inlined.
1506 * sysdeps/unix/sysv/linux/pread.c: Likewise.
1507 * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
1508 * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise.
1509 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Likewise.
1510
1511 2004-07-05 Jakub Jelinek <jakub@redhat.com>
1512
1513 * include/string.h (ffs): Add libc_hidden_builtin_proto.
1514 * sysdeps/rs6000/ffs.c (ffs): Add libc_hidden_builtin_def.
1515 * sysdeps/alpha/alphaev67/ffs.S (ffs): Likewise.
1516 * sysdeps/alpha/ffs.S (ffs): Likewise.
1517 * sysdeps/s390/ffs.c (ffs): Likewise.
1518 * sysdeps/powerpc/ffs.c (ffs): Likewise.
1519 * sysdeps/i386/ffs.c (ffs): Likewise.
1520 * sysdeps/i386/i686/ffs.c (ffs): Likewise.
1521 * sysdeps/m68k/ffs.c (ffs): Likewise.
1522 * sysdeps/generic/ffs.c (ffs): Likewise.
1523 * sysdeps/m88k/ffs.c (ffs): Likewise.
1524 * sysdeps/am29k/ffs.c (ffs): Likewise.
1525 * sysdeps/i960/ffs.c (ffs): Likewise.
1526 * sysdeps/x86_64/ffs.c (ffs): Likewise.
1527
1528 * Makerules (check-abi): Use diff -p -U 0 instead of diff -pu0.
1529
1530 * sysdeps/powerpc/novmx-longjmp.c (__libc_longjmp,
1531 __libc_siglongjmp): Remove symbol_version.
1532 * sysdeps/powerpc/longjmp.c (__libc_longjmp, __libc_siglongjmp):
1533 Export @@GLIBC_PRIVATE, not @@GLIBC_2.3.4.
1534 * sysdeps/powerpc/sigjmp.c (__sigjmp_save): Use strong_alias
1535 unconditionally.
1536 * sysdeps/powerpc/novmx-sigjmp.c (__sigjmp_save): Remove.
1537 * sysdeps/powerpc/powerpc32/__longjmp.S (__longjmp): Use
1538 strong_alias instead of default_symbol_version, remove
1539 symbol_version.
1540 * sysdeps/powerpc/powerpc64/__longjmp.S (__longjmp): Likewise.
1541 * sysdeps/powerpc/powerpc32/bsd-setjmp.S (__novmx__setjmp): Change
1542 into strong_alias to __novmxsetjmp.
1543 (__vmx__setjmp): Similarly with __vmxsetjmp.
1544 (__setjmp): Make it strong_alias to __vmx__setjmp, remove
1545 default_symbol_version and symbol_version.
1546 * sysdeps/powerpc/powerpc64/bsd-setjmp.S (__novmx__setjmp): Change
1547 into strong_alias to __novmxsetjmp.
1548 (__vmx__setjmp): Similarly with __vmxsetjmp.
1549 (__setjmp): Make it strong_alias to __vmx__setjmp, remove
1550 default_symbol_version and symbol_version.
1551
1552 * nscd/nscd_getgr_r.c: Include stdio-common/_itoa.h.
1553
1554 2004-07-05 Ulrich Drepper <drepper@redhat.com>
1555
1556 * elf/rtld.c (dl_main): Mark dyn_temp with attribute_relro.
1557
1558 2004-07-04 Matthew Reppert <arashi@kai.vm.bytemark.co.uk>
1559
1560 * sysdeps/unix/sysv/linux/i386/glob64.c (glob64): Use libc_hidden_ver
1561 instead of libc_hidden_def.
1562
1563 2004-07-01 Roland McGrath <roland@redhat.com>
1564
1565 * aclocal.m4: Add provide for AC_CONFIG_AUX_DIR_DEFAULT.
1566
1567 * Makeconfig ($(common-objpfx)shlib-versions.v.i): Move top-level
1568 $(..)shlib-versions file to last in deps list. This lets add-ons give
1569 more-specific matches that override defaults in the top-level file.
1570
1571 * sysdeps/unix/sysv/linux/configure.in: If arch_minimum_kernel was
1572 already set, don't set it or libc_cv_gcc_unwind_find_fde.
1573 * sysdeps/unix/sysv/linux/configure: Regenerated.
1574
1575 2004-07-01 Martin Schwidefsky <schwidefsky@de.ibm.com>
1576
1577 * sysdeps/s390/fpu/bits/mathinline.h [__LIBC_INTERNAL_MATH_INLINES]
1578 (__ieee754_sqrt): Define as __MATH_INLINE using sqdbr instruction.
1579 (__ieee754_sqrtf): Define as __MATH_INLINE using sqebr instruction.
1580 * sysdeps/s390/fpu/e_sqrt.c: New file.
1581 * sysdeps/s390/fpu/e_sqrtf.c: New file.
1582 * sysdeps/s390/Implies: New file.
1583 * sysdeps/s390/s390-32/Implies: Remove ieee754, move
1584 ieee754/dbl-64 and ieee754/flt-32 to s390/Implies.
1585 * sysdeps/s390/s390-64/Implies: Likewise.
1586
1587 2004-06-30 Jakub Jelinek <jakub@redhat.com>
1588
1589 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Include tls.h.
1590 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1591
1592 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S (thread_start):
1593 DO_CALL (exit, 1) instead of branching to _exit.
1594 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S (thread_start):
1595 Likewise.
1596
1597 * sysdeps/s390/fpu/bits/mathinline.h: New file.
1598
1599 * include/glob.h (glob64): Add libc_hidden_proto.
1600 * sysdeps/generic/glob64.c (glob64): Add libc_hidden_def.
1601 * sysdeps/gnu/glob64.c (glob64): Likewise.
1602 * sysdeps/unix/sysv/linux/i386/glob64.c (glob64): Likewise.
1603
1604 2004-06-11 Jakub Jelinek <jakub@redhat.com>
1605
1606 * sysdeps/i386/fpu/libm-test-ulps: Update for GCC 3.4.
1607 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
1608
1609 2004-06-11 Dwayne Grant McConnell <dgm69@us.ibm.com>
1610
1611 * sysdeps/powerpc/fpu/s_lround.c: Removed.
1612 * sysdeps/powerpc/fpu/s_lroundf.c: Removed.
1613 * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: New file.
1614 * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: New file.
1615 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: New file.
1616 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: New file.
1617 * sysdeps/powerpc/powerpc32/fpu/s_lrint.c: Removed.
1618 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: New file.
1619 * sysdeps/powerpc/powerpc32/fpu/s_lroundf.S: New file.
1620 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: New file.
1621 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: New file.
1622 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: New file.
1623 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: New file.
1624 * sysdeps/powerpc/powerpc32/fpu/s_round.S: New file.
1625 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: New file.
1626 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: New file.
1627
1628 2004-06-30 Ulrich Drepper <drepper@redhat.com>
1629
1630 * include/net/if.h: Handle if_nameindex and if_freenameindex with
1631 libc_proto_hidden.
1632 * sysdeps/unix/sysv/linux/netlinkaccess.h: New file.
1633 * sysdeps/unix/sysv/linux/ifaddrs.c: Export netlink handling functions.
1634 * sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Implement using
1635 netlink if possible. Fall back on ioctl method if necessary.
1636 * sysdeps/unix/sysv/linux/Dist: Add netlinkaccess.h.
1637
1638 * include/unistd.h: Declare __truncate.
1639 * sysdeps/generic/truncate.c: Also define __truncate.
1640 * sysdeps/mach/hurd/truncate.c: Likewise.
1641 * sysdeps/unix/common/syscalls.list: Likewise.
1642 * sysdeps/unix/sysv/linux/truncate64.c: Use __truncate, not truncate.
1643
1644 2004-06-29 Ulrich Drepper <drepper@redhat.com>
1645
1646 * stdio-common/printf-parsemb.c (__parse_one_specmb): Initialize
1647 info.extra. Patch by Marcus Meissner.
1648
1649 2004-06-29 Kaz Kojima <kkojima@rr.iij4u.or.jp>
1650
1651 * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
1652 Fix branch offset for a PLT entry.
1653
1654 2004-06-20 Jim Meyering <jim@meyering.net>
1655
1656 * malloc/obstack.h (obstack_base): Cast to `void *', to align with
1657 documentation.
1658
1659 2004-06-28 Ulrich Drepper <drepper@redhat.com>
1660
1661 * inet/bug-if1.c (do_test): Simply use 0 as invalid index.
1662 Workaround for [BZ #232].
1663
1664 * sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Use extend_alloca.
1665
1666 2004-06-28 GOTO Masanori <gotom@debian.or.jp>
1667
1668 * iconv/gconv_simple.c: Use get16/put16 for user given buffer
1669 in ucs2/ucs2reverse when unaligned memory access is attempted.
1670 * iconv/tst-iconv5.c: New file.
1671 * iconv/Makefile (tests): Add tst-iconv5.
1672
1673 2004-06-28 Jakub Jelinek <jakub@redhat.com>
1674
1675 * inet/bug-if1.c: Include <string.h>.
1676
1677 2004-06-19 Roland McGrath <roland@redhat.com>
1678
1679 * sysdeps/posix/waitid.c (do_waitid) [DO_WAITID]: Define function
1680 under this macro name instead.
1681 [NO_DO_WAITID]: Don't define it at all.
1682 (do_waitid) [WNOWAIT, WEXITED]: If these POSIX.1 waitid flag bits are
1683 defined, then return ENOTSUP for combinations of selection bits other
1684 than WEXITED and WEXITED|WSTOPPED, which this version cannot support.
1685
1686 * posix/tst-waitid.c: New file.
1687 * posix/Makefile (tests): Add it.
1688
1689 2004-06-28 Jakub Jelinek <jakub@redhat.com>
1690
1691 * sysdeps/unix/alpha/sysdep.h (inline_syscall6): Fix a typo.
1692
1693 [BZ #231]
1694 * sysdeps/unix/alpha/sysdep.S (__syscall_error): Avoid !samegp
1695 relocation in librt.so.
1696
1697 [BZ #230]
1698 * sysdeps/alpha/dl-machine.h (_dl_start_user): Use ldah/ldl to load
1699 _dl_skip_args. Patch by Jakub Bogusz <qboosh@pld-linux.org>.
1700
1701 2004-06-27 Ulrich Drepper <drepper@redhat.com>
1702
1703 * elf/ldconfig.c (add_dir): Take chroot into account.
1704 Based on changes by HJ Lu and Hideki Iwamoto.
1705
1706 * nscd/connections.c (invalidate_cache): If the host cache has to
1707 be invalidated, re-read resolv.conf.
1708
1709 * resolv/resolv.h (RES_NOIP6DOTINT): Define.
1710 * resolv/res_init.c (res_setoptions): Handle no-ip6-dotint option.
1711 * resolv/gethnamaddr.c (gethostbyaddr): Don't lookup with .ip6.int
1712 if RES_NOIP6DOTINT flag is set.
1713 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr_r): Likewise.
1714
1715 2004-06-25 Jakub Jelinek <jakub@redhat.com>
1716
1717 * sysdeps/unix/sysv/linux/powerpc/fcntl.c: Move to...
1718 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fcntl.c: ... here.
1719 * sysdeps/unix/sysv/linux/powerpc/lockf64.c: Move to...
1720 * sysdeps/unix/sysv/linux/powerpc/powerpc32/lockf64.c: ... here.
1721 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: New file.
1722
1723 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (F_GETLK, F_SETLK,
1724 F_SETLKW): Fix values for -m32 -D_FILE_OFFSET_BITS=64.
1725
1726 2004-06-21 Jakub Jelinek <jakub@redhat.com>
1727
1728 [BZ #231]
1729 * sysdeps/unix/alpha/Makefile: New file.
1730 * sysdeps/unix/alpha/rt-sysdep.S: New file.
1731 Reported by Jakub Bogusz <qboosh@pld-linux.org>.
1732
1733 2004-06-18 Ulrich Drepper <drepper@redhat.com>
1734
1735 * sysdeps/posix/getaddrinfo.c (gaih_inet): For AI_CANONNAME,
1736 determine the canonical name only for the first returned entry.
1737
1738 * inet/bug-if1.c: New file.
1739 * inet/Makefile (tests): Add bug-if1.
1740
1741 2004-06-18 Roland McGrath <roland@frob.com>
1742
1743 * Makerules (compile-mkdep-flags): Add -MT $@.
1744
1745 * Makefile (dist, tag-for-dist): New targets.
1746 (files-for-dist, tag-of-stem): New variables.
1747 (glibc-%.tar glibc-linuxthreads-%.tar): New pattern rule.
1748 Make tar files using cvs export.
1749 (%.bz2, %.gz, tag-%): New pattern rules.
1750 (distribute): Variable removed.
1751 (+subdir_targets): Remove distinfo targets.
1752 (echo_subdirs, echo-distinfo, parent_echo-distinfo): Targets removed.
1753 (rpm/%): Pattern rule removed.
1754 * rpm/Makefile, rpm/rpmrc, rpm/template: Ancient cruft files removed.
1755 * Rules (subdir_echo-headers, subdir_echo-distinfo, subdir_dist):
1756 Targets removed.
1757 * Makerules (dist, subdir_distinfo): Targets removed.
1758 ($(objpfx)distinfo): Depend on $(distribute).
1759 * Make-dist: File removed.
1760
1761 * NEWS: Fix a typo. Update bug-reporting instructions.
1762
1763 2004-06-17 Thorsten Kukuk <kukuk@suse.de>
1764
1765 * sysdeps/unix/sysv/linux/sched_setaffinity.c
1766 (__sched_setaffinity_new): Set errno to EINVAL and return -1 if
1767 cpuset is wrongly set.
1768
1769 2004-06-15 Steven Munroe <sjmunroe@us.ibm.com>
1770
1771 * sysdeps/powerpc/powerpc64/memcpy.S: Improve instruction scheduling
1772 for POWER4 machines.
1773
1774 2004-06-14 Jakub Jelinek <jakub@redhat.com>
1775
1776 [BZ #218]
1777 * sunrpc/pmap_prot2.c (xdr_pmaplist): When freeing, remember pml_next
1778 in a local variable, point rp to that local variable afterwards.
1779
1780 2004-06-11 Jakub Jelinek <jakub@redhat.com>
1781
1782 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Handle special
1783 cases properly.
1784
1785 2004-06-17 Ulrich Drepper <drepper@redhat.com>
1786
1787 * sysdeps/unix/sysv/linux/if_index.c (if_indextoname): Correct
1788 error value for unknown interface. [BZ #198]
1789
1790 2004-06-13 Jakub Jelinek <jakub@redhat.com>
1791
1792 * sysdeps/i386/bits/string.h (memcpy): Add () around arguments.
1793 (memchr, __memrchr, strlen, strcmp, strncmp, __strchr_g, __strchr_c,
1794 __strchrnul_g, __strchrnul_c, strspn, strcspn, strpbrk): Add memory
1795 the asm uses as its input, either of size __n where __n is known or
1796 0xfffffff.
1797 (strstr): Add "memory" clobber.
1798
1799 2004-06-14 Jakub Jelinek <jakub@redhat.com>
1800
1801 [BZ #219]
1802 * nss/nsswitch.c (free_mem): Don't try to close a library handle
1803 if the handle is invalid. Patch by David Kimdon <kimdon@esrf.fr>.
1804
1805 2004-06-11 Dmitry V. Levin <ldv@altlinux.org>
1806
1807 [BZ #217]
1808 * debug/xtrace.sh: Fix typo in error diagnostics.
1809
1810 2004-06-14 Andreas Schwab <schwab@suse.de>
1811
1812 * stdio-common/psignal.c (psignal): Don't use BUF when asprintf
1813 failed.
1814
1815 2004-06-15 Steven Munroe <sjmunroe@us.ibm.com>
1816
1817 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix pasto
1818 that clobbers r19. Fix pasto that overflowed sigcontext.v_reserve.
1819 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Fix pasto
1820 that clobbers r19.
1821 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Fix pasto
1822 that clobbers r19. Fix pasto that overflowed sigcontext.v_reserve.
1823 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S:
1824 Fix setting of sigcontext.v_regs. Fix pasto that clobbers r19.
1825 Fix pasto that overflowed sigcontext.v_reserve.
1826 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S:
1827 Fix pasto that clobbers r19.
1828 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Fix setting
1829 of sigcontext.v_regs. Fix pasto that clobbers r19. Fix pasto that
1830 overflowed sigcontext.v_reserve.
1831
1832 2004-05-04 H.J. Lu <hongjiu.lu@intel.com>
1833
1834 [BZ #150]
1835 * sysdeps/generic/strtol_l.c (DEF): Use ".gnu.linkonce.r."
1836 instead of ".gnu.linkonce.ro." as the prefix for linkonce
1837 read-only section name.
1838
1839 2004-06-14 Richard Henderson <rth@redhat.com>
1840
1841 * sysdeps/alpha/div_libc.h (_ITOFS): Use "sp" not "$sp".
1842 (_ITOFT, _FTOIT, _ITOFT2): Likewise.
1843
1844 2004-06-08 Jakub Jelinek <jakub@redhat.com>
1845
1846 * sysdeps/s390/s390-32/backtrace.c (init): Guard with #ifdef SHARED.
1847 (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
1848 (__backtrace): Don't call init #ifndef SHARED.
1849 * sysdeps/s390/s390-64/backtrace.c (init): Guard with #ifdef SHARED.
1850 (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
1851 (__backtrace): Don't call init #ifndef SHARED.
1852 * sysdeps/ia64/backtrace.c (init): Guard with #ifdef SHARED.
1853 (unwind_backtrace, unwind_getip): Define #ifndef SHARED.
1854 (__backtrace): Don't call init #ifndef SHARED.
1855
1856 2004-06-11 Roland McGrath <roland@redhat.com>
1857
1858 * sysdeps/arm/strlen.S [__ARMEB__]: Compute correctly for big-endian.
1859 From Krzysztof Halasa <khc@pm.waw.pl>.
1860
1861 2004-06-10 Jakub Jelinek <jakub@redhat.com>
1862
1863 * elf/tls-macros.h [__s390x__] (TLS_LD, TLS_GD): Clobber also r14.
1864
1865 2004-06-08 Jakub Jelinek <jakub@redhat.com>
1866
1867 [BZ #199]
1868 * crypt/md5-crypt.c (__md5_crypt): Only update buflen if realloc
1869 succeeds. Reported by Miles Ohlrich <miles@cray.com>.
1870
1871 * elf/chroot_canon.c (chroot_canon): Avoid segfault if first malloc
1872 fails. Avoid memory leak if realloc fails.
1873
1874 2004-06-09 Jakub Jelinek <jakub@redhat.com>
1875
1876 * sysdeps/generic/setenv.c (setenv): Return -1/EINVAL if name is
1877 NULL, "" or contains '=' character in it. Reported by
1878 Michael T Kerrisk <mtk-lists@gmx.net>.
1879 * stdlib/tst-environ.c: Include errno.h.
1880 (main): Add tests for these arguments to setenv/unsetenv.
1881
1882 2004-06-07 Roland McGrath <roland@frob.com>
1883
1884 * NEWS: Update bug reporting instructions. Fix some typos.
1885
1886 2004-06-05 Ulrich Drepper <drepper@redhat.com>
1887
1888 * stdio-common/_itoa.h: Don't expand _itoa inline for libc.
1889 * stdio-common/_itoa.c: Add _itoa implementation.
1890
1891 * nscd/nscd_gethst_r.c (__nscd_open_socket): Change implementation
1892 to also send request. Add parameter to allow this.
1893 Change callers.
1894 * nscd/nscd_getgr_r.c: Change __nscd_open_socket caller.
1895 * nscd/nscd_getpw_r.c: Likewise.
1896 * nscd/nscd-client.h: Change __nscd_open_socket prototype.
1897
1898 2004-06-05 Andreas Jaeger <aj@suse.de>
1899
1900 * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
1901 Handle more than 6 args correctly. Based on a patch by Masahide
1902 Washizawa <washi@jp.ibm.com>.
1903
1904 2004-06-04 Ulrich Drepper <drepper@redhat.com>
1905
1906 * nscd/nscd_gethst_r.c (nscd_gethst_r): Use __nss_not_use_nscd_hosts
1907 in all places, not __nss_not_use_nscd_group.
1908 Reported by Philippe Gregoire.
1909
1910 2004-06-03 Ulrich Drepper <drepper@redhat.com>
1911
1912 * sysdeps/i386/i486/bits/atomic.h: Optimize a bit.
1913
1914 2004-05-07 Dmitry V. Levin <ldv@altlinux.org>
1915
1916 * argp/argp-help.c (__argp_error, __argp_failure): Check result
1917 of __asprintf call and don't use string if it failed.
1918 * stdio-common/psignal.c (psignal): Likewise.
1919 * locale/programs/localedef.c (more_help): Likewise.
1920 * resolv/res_hconf.c (arg_service_list, arg_trimdomain_list,
1921 arg_bool, parse_line): Check result of __asprintf calls and
1922 don't use string if they failed.
1923 * sunrpc/svc_simple.c (registerrpc, universal): Likewise.
1924 * elf/ldconfig.c (parse_conf_include): Check result of __asprintf
1925 call and exit if it failed.
1926
1927 2004-05-10 Jakub Jelinek <jakub@redhat.com>
1928
1929 * sysdeps/posix/sysconf.c (__sysconf) <cases _SC_REALTIME_SIGNALS,
1930 _SC_PRIORITY_SCHEDULING, _SC_TIMERS, _SC_ASYNCHRONOUS_IO,
1931 _SC_PRIORITIZED_IO, _SC_SYNCHRONIZED_IO, _SC_FSYNC, _SC_MAPPED_FILES,
1932 _SC_MEMLOCK, _SC_MEMLOCK_RANGE, _SC_MEMORY_PROTECTION,
1933 _SC_MESSAGE_PASSING, _SC_SEMAPHORES, _SC_SHARED_MEMORY_OBJECTS,
1934 _SC_THREADS, _SC_THREAD_SAFE_FUNCTIONS, _SC_THREAD_ATTR_STACKADDR,
1935 _SC_THREAD_ATTR_STACKSIZE, _SC_THREAD_PRIORITY_SCHEDULING,
1936 _SC_THREAD_PRIO_INHERIT, _SC_THREAD_PRIO_PROTECT,
1937 _SC_THREAD_PROCESS_SHARED>: Return _POSIX_* value instead of 1.
1938 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
1939 <case _SC_MONOTONIC_CLOCK>: Return _POSIX_VERSION instead of 1.
1940
1941 2004-05-07 Jeroen Dekkers <jeroen@dekkers.cx>
1942
1943 * sysdeps/mach/hurd/i386/Makefile (CFLAGS-init-first.c): Add
1944 -momit-leaf-frame-pointer.
1945
1946 * inet/test-ifaddrs.c (addr_string): Surround AF_PACKET case with
1947 #ifdef AF_PACKET.
1948
1949 * sysdeps/mach/hurd/getcwd.c
1950 (_hurd_canonicalize_directory_name_intern): Only realloc when
1951 size is <= 0.
1952
1953 * sysdeps/mach/hurd/mmap.c (__mmap): Fail when addr or offset
1954 isn't page aligned.
1955
1956 * sysdeps/mach/hurd/spawni.c (EXPAND_DTABLE): Set dtablesize to
1957 new size.
1958
1959 * sysdeps/mach/hurd/Versions (GLIBC_PRIVATE): Add __libc_read,
1960 __libc_write and __libc_lseek64.
1961
1962 2004-05-29 Roland McGrath <roland@redhat.com>
1963
1964 * elf/Makefile (shared-only-routines): Add dl-caller.
1965
1966 2004-05-28 Ulrich Drepper <drepper@redhat.com>
1967
1968 * sysdeps/powerpc/configure.in: New file.
1969
1970 2004-05-28 Steven Munroe <sjmunroe@us.ibm.com>
1971
1972 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Add .machine
1973 "altivec" to enable VMX instructions.
1974 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
1975 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
1976 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
1977 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
1978 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
1979 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
1980 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
1981 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
1982 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
1983
1984 2004-05-27 Jakub Jelinek <jakub@redhat.com>
1985
1986 * sysdeps/i386/fpu/bits/mathinline.h (__expm1_code): Define using
1987 __builtin_expm1l for GCC 3.5+.
1988 (__expl): Define using __builtin_expl for GCC 3.4+.
1989 (exp, expf, expl): Don't define for GCC 3.4+.
1990 (tan, tanf, tanl): Don't define for GCC 3.5+.
1991 (__atan2l): Define using __builtin_atan2l for GCC 3.4+.
1992 (atan2, atan2f, atan2l): Don't define for GCC 3.4+ or !__FAST_MATH__.
1993 (fmod, fmodf, fmodl): Don't define for GCC 3.5+ or !__FAST_MATH__.
1994 (fabsf, fabsl): Only provide if __USE_MISC or __USE_ISOC99.
1995 (sin, sinf, sinl, cos, cosf, cosl, log, logf, logl): Don't define
1996 for GCC 3.4+.
1997 (log10, log10f, log10l, asin, asinf, asinl, acos, acosf, acosl):
1998 Don't define for GCC 3.5+.
1999 (atan, atanf, atanl): Don't define for GCC 3.4+ or !__FAST_MATH__.
2000 (log1p, log1pf, log1pl, logb, logbf, logbl, log2, log2f, log2l): Don't
2001 define for GCC 3.5+.
2002 (drem, dremf, dreml): Don't define for GCC 3.5+ or !__FAST_MATH__.
2003 * sysdeps/sparc/fpu/bits/mathinline.h (sqrt, sqrtf, sqrtl): Don't
2004 define for GCC 3.2+.
2005
2006 2004-05-27 Jakub Jelinek <jakub@redhat.com>
2007
2008 * string/bits/string2.h (__bzero): Define even for GCC 3.0+.
2009 * sysdeps/alpha/stpcpy.S (stpcpy): Add libc_hidden_builtin_def.
2010 * sysdeps/alpha/alphaev67/stpcpy.S (stpcpy): Likewise.
2011 * sysdeps/powerpc/powerpc32/stpcpy.S (stpcpy): Likewise.
2012 * sysdeps/powerpc/powerpc64/stpcpy.S (stpcpy): Likewise.
2013 * sysdeps/sparc/sparc32/stpcpy.S (stpcpy): Likewise.
2014 * sysdeps/sparc/sparc64/stpcpy.S (stpcpy): Likewise.
2015 * sysdeps/i386/stpcpy.S (stpcpy): Likewise.
2016 * sysdeps/i386/i586/stpcpy.S (stpcpy): Likewise.
2017 * sysdeps/generic/stpcpy.c (stpcpy): Likewise.
2018 * sysdeps/x86_64/stpcpy.S (stpcpy): Likewise.
2019 * sysdeps/i386/i586/memcpy.S (memcpy): Remove
2020 libc_hidden_builtin_def if MEMPCPY_P.
2021 * sysdeps/x86_64/memcpy.S (memcpy): Likewise.
2022 * sysdeps/i386/i686/mempcpy.S (mempcpy): Add libc_hidden_builtin_def.
2023 * sysdeps/i386/i586/mempcpy.S (mempcpy): Likewise.
2024 * sysdeps/generic/mempcpy.c (mempcpy): Likewise.
2025 * sysdeps/x86_64/mempcpy.S (mempcpy): Likewise.
2026
2027 2004-05-26 Roland McGrath <roland@frob.com>
2028
2029 * sysdeps/generic/bits/in.h
2030 (IMPLINK_IP, IMPLINK_LOWEXPER, IMPLINK_HIGHEXPER): Macros removed.
2031 These are long obsolete in BSD systems where they originated.
2032 * conform/data/netinet/in.h-data: Remove `allow IMPLINK_*'
2033
2034 2004-05-26 Jakub Jelinek <jakub@redhat.com>
2035
2036 * include/string.h (mempcpy, stpcpy): Add libc_hidden_builtin_proto.
2037 * string/bits/string2.h (memset): Disable macro for GCC 3.0+.
2038 (__mempcpy): Use __builtin_mempcpy for GCC 3.4+.
2039 (strchr): For GCC 3.2+, only use __rawmemchr if second argument is
2040 constant '\0' and first argument is not constant.
2041 (__stpcpy): Use __builtin_stpcpy for GCC 3.4+.
2042 (strncpy): Remove #ifdef _USE_STRING_ARCH_mempcpy variant.
2043 For GCC 3.2+ use __builtin_strncpy.
2044 (strncat): For GCC 3.2+ use __builtin_strncat.
2045 (strcmp): For GCC 3.2+ use __builtin_strcmp if both arguments are
2046 constant.
2047 (strcspn, strspn, strpbrk): For GCC 3.2+, use builtin function
2048 if both arguments are constant.
2049
2050 2004-05-26 Ulrich Drepper <drepper@redhat.com>
2051
2052 * nss/nss_files/files-hosts.c: Fix condition for looking up IPv4
2053 mapped addresses in gethostbyaddr.
2054
2055 2004-05-25 Ulrich Drepper <drepper@redhat.com>
2056
2057 * nss/digits_dots.c (__nss_hostname_digits_dots): Remove typep and
2058 flags parameter, convert afp to simple int parameter. Adjust code.
2059 typep was never != NULL and flags therefore also unused. *afp is
2060 never modified.
2061 * nss/nsswitch.h: Adjust __nss_hostname_digits_dots prototype.
2062 * nss/getXXbyYY.c: Remove HAVE_TYPE handling. Adjust af parameter
2063 handling for __nss_hostname_digits_dots calls.
2064 * nss/getXXbyYY_r.c: Likewise.
2065
2066 * elf/dl-load.c (_dl_map_object_from_fd): Map DSOs with MAP_DENYWRITE.
2067
2068 2004-05-25 Steven Munroe <sjmunroe@us.ibm.com>
2069
2070 * sysdeps/powerpc/fpu/Makefile: Make ld.so a dependency of libm.so.
2071 * sysdeps/powerpc/fpu/bits/mathinline.h [__LIBC_INERNAL_MATH_INLINES]
2072 (__ieee754_sqrt): Define as __MATH_INLINE using fsqrt instruction.
2073 (__ieee754_sqrtf): Define as __MATH_INLINE using fsqrts instruction.
2074 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Moved
2075 implementation from w_sqrt.c.
2076 * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Moved
2077 implementation from w_sqrtf.c.
2078 * sysdeps/powerpc/fpu/w_sqrt.c (__sqrt): Wrapper implementation
2079 using inline __ieee754_sqrt().
2080 * sysdeps/powerpc/fpu/w_sqrtf.c (__sqrtf): Wrapper implementation
2081 using inline __ieee754_sqrtf().
2082 * sysdeps/powerpc/powerpc32/sysdep.h [__ASSEMBLER__]: Include
2083 <sysdeps/powerpc/sysdep.h> independent of __ASSEMBLER__.
2084 * sysdeps/powerpc/sysdep.h [__ASSEMBLER__] (PPC_FEATURE_*): Define
2085 PPC_FEATURE_* independent of __ASSEMBLER__.
2086
2087 2004-05-25 Jakub Jelinek <jakub@redhat.com>
2088
2089 * sysdeps/pthread/aio_notify.c: Use <> instead of "" for aio_misc.h
2090 include.
2091 (aio_start_notify_thread): Define if not defined.
2092 (notify_func_wrapper): Use it.
2093 * sysdeps/pthread/aio_misc.c: Use <> instead of "" for aio_misc.h
2094 include.
2095 (aio_create_helper_thread): Define if not defined.
2096 (__aio_create_helper_thread): New function.
2097 (__aio_enqueue_request): Use aio_create_helper_thread.
2098
2099 * nis/ypclnt.c (ypall_data, ypall_foreach): Remove.
2100 (struct ypresp_all_data): New type.
2101 (__xdr_ypresp_all): Change second argument to
2102 struct ypresp_all_data *. Replace ypall_foreach and
2103 ypall_data with objp->foreach and objp->data.
2104 (yp_all): Remove status variable, add data. Replace
2105 all uses of status with data.status. Initialize data.foreach
2106 and data.data instead of ypall_foreach and ypall_data.
2107
2108 2004-05-24 Jakub Jelinek <jakub@redhat.com>
2109
2110 * elf/dl-lookup.c (add_dependency): Set DF_1_NODELETE bit
2111 in l_flags_1, not in l_flags.
2112
2113 2004-04-10 Robert Millan <robertmh@gnu.org>
2114
2115 * sysdeps/unix/sysv/linux/bits/in.h: Cosmetic fixes to get in sync
2116 with sysdeps/generic/bits/in.h.
2117
2118 2004-05-25 Roland McGrath <roland@frob.com>
2119
2120 * sysdeps/generic/unwind-dw2-fde-glibc.c: Change copyright terms from
2121 GCC GPL to standard glibc LGPL.
2122
2123 2004-05-24 Ulrich Drepper <drepper@redhat.com>
2124
2125 * manual/string.texi (Copying and Concatenation): Fixed second
2126 concat example.
2127 Reported by Fabian Pietsch <fabian@zzznowman.dyndns.org>.
2128
2129 2004-05-23 Ulrich Drepper <drepper@redhat.com>
2130
2131 * malloc/obstack.c: Don't allow linking with _obstack.
2132
2133 2004-05-23 Andreas Schwab <schwab@suse.de>
2134
2135 * sysdeps/m68k/m68020/bits/atomic.h: Use "+m" constraint instead
2136 of separate "m" constraints.
2137
2138 2004-05-15 Chris Demetriou <cgd@broadcom.com>
2139
2140 * sysdeps/mips/dl-machine.h (ELF_DL_FRAME_SIZE)
2141 (ELF_DL_SAVE_ARG_REGS, ELF_DL_RESTORE_ARG_REGS): For the N32
2142 and 64 ABIs, save and restore regs $10 and $11 (a6 and a7).
2143
2144 2004-05-20 Paul Eggert <eggert@cs.ucla.edu>
2145
2146 * malloc/obstack.c (_obstack) [!defined _LIBC]: Remove; not used.
2147 Add comment explaining why libc still defines it.
2148
2149 2004-05-19 Paul Eggert <eggert@cs.ucla.edu>
2150
2151 * malloc/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
2152 obstack_alignment_mask, obstack_alloc, obstack_base,
2153 obstack_blank, obstack_blank_fast, obstack_chunk_size,
2154 obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
2155 obstack_grow0, obstack_init, obstack_int_grow,
2156 obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
2157 obstack_next_free, obstack_object_size, obstack_ptr_grow,
2158 obstack_ptr_grow_fast, obstack_room): Remove declarations of
2159 nonexistent functions.
2160
2161 2004-05-18 Steven Munroe <sjmunroe@us.ibm.com>
2162
2163 * sysdeps/powerpc/powerpc64/sysdep.h [__ASSEMBLER__]: Include
2164 <sysdeps/powerpc/sysdep.h> independent of __ASSEMBLER__.
2165 [PIC]: Redundent for powerpc64, removed.
2166 (ENTRY): Generate size and alignment for opd entry.
2167 (EALIGN): Generate size and alignment for opd entry.
2168 (END): Use DOT_LABEL in ASM_SIZE_DIRECTIVE.
2169 (END_GEN_TB): Use DOT_LABEL in ASM_SIZE_DIRECTIVE.
2170
2171 2004-05-19 Ulrich Drepper <drepper@redhat.com>
2172
2173 * misc/regexp.h: Say the functions have been withdrawn.
2174
2175 * wcsmbs/tst-wcpncpy.c: Add more tests.
2176
2177 2004-05-18 Roland McGrath <roland@frob.com>
2178
2179 * sysdeps/generic/unwind.h: Change copyright terms from GCC GPL to
2180 standard glibc LGPL.
2181 * sysdeps/generic/unwind-dw2.c: Likewise.
2182 * sysdeps/generic/unwind-dw2-fde.c: Likewise.
2183 * sysdeps/generic/unwind-dw2-fde.h: Likewise.
2184 * sysdeps/generic/unwind-pe.h: Likewise.
2185
2186 2004-05-15 Petter Reinholdtsen <pere@hungry.com>
2187
2188 * locale/iso-3166.def: Remove YUGOSLAVIA and insert "SERBIA AND
2189 MONTENEGRO" which have taken over the code 819. Patch from
2190 Danilo Segan. [BZ #40]
2191
2192 2004-05-15 Jakub Jelinek <jakub@redhat.com>
2193
2194 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
2195 (SYSCALL_ERROR_HANDLER): Rename __sparc.get_pic.l7 to
2196 __sparc_get_pic_l7.
2197
2198 2004-05-15 Joseph S. Myers <jsm@polyomino.org.uk>
2199
2200 * catgets/gencat.c: Update bug reporting instructions.
2201 * csu/version.c: Likewise.
2202 * debug/catchsegv.sh: Likewise.
2203 * debug/pcprofiledump.c: Likewise.
2204 * debug/xtrace.sh: Likewise.
2205 * elf/ldd.bash.in: Likewise.
2206 * iconv/iconv_prog.c: Likewise.
2207 * iconv/iconvconfig.c: Likewise.
2208 * locale/programs/locale.c: Likewise.
2209 * locale/programs/localedef.c: Likewise.
2210 * login/programs/pt_chown.c: Likewise.
2211 * malloc/memusage.sh: Likewise.
2212 * malloc/memusagestat.c: Likewise.
2213 * malloc/mtrace.pl: Likewise.
2214 * manual/crypt.texi: Likewise.
2215 * manual/install.texi: Likewise.
2216 * nss/makedb.c: Likewise.
2217
2218 2004-05-14 Jakub Jelinek <jakub@redhat.com>
2219
2220 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Only
2221 CHECK_STATIC_TLS if sym != NULL.
2222 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
2223 * sysdeps/i386/dl-machine.h (elf_machine_rela): Likewise.
2224
2225 2004-05-12 Andreas Schwab <schwab@suse.de>
2226
2227 * posix/regex_internal.c (build_wcs_buffer): Also set pstr->mbs
2228 when translating.
2229
2230 2004-05-13 H.J. Lu <hongjiu.lu@intel.com>
2231
2232 * Rules (xtests): Depend on tests.
2233
2234 2004-05-13 Jakub Jelinek <jakub@redhat.com>
2235
2236 * libio/genops.c (_IO_default_xsputn): Avoid one overflow per char if
2237 count is negative, yet write_ptr < write_end.
2238 (_IO_default_xsgetn): Avoid one underflow per char if count is
2239 negative, yet read_ptr < read_end.
2240
2241 2004-05-12 Steven Munroe <sjmunroe@us.ibm.com>
2242
2243 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (XTABS): Define XTABS
2244 equal to TAB3.
2245
2246 2004-05-12 Ulrich Drepper <drepper@redhat.com>
2247
2248 * elf/dl-lookup.c (_dl_lookup_symbol_x): Correct _dl_signal_cerror
2249 call.
2250
2251 2004-05-10 Roland McGrath <roland@frob.com>
2252
2253 * hurd/hurdlookup.c (__hurd_file_name_split): Return ENOENT for "".
2254 (__hurd_directory_name_split): Likewise.
2255
2256 2004-05-10 Ulrich Drepper <drepper@redhat.com>
2257
2258 * po/fr.po: Update from translation team.
2259
2260 2004-05-10 Andreas Jaeger <aj@suse.de>
2261
2262 * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
2263 Correctly compute alignment.
2264 Patch by Michael Matz <matz@suse.de>.
2265
2266 2004-05-09 Ulrich Drepper <drepper@redhat.com>
2267
2268 * sysdeps/generic/sigpause.c: Prevent sigpause prototype.
2269 * sysdeps/posix/sigpause.c: Likewise.
2270 * signal/signal.h: Don't define sigpause macro unless needed.
2271
2272 2004-05-08 Jakub Jelinek <jakub@redhat.com>
2273
2274 * configure.in (libc_cv_libgcc_s_suffix): New check.
2275 (libc_cv_as_needed): Use -lgcc_s$libc_cv_libgcc_s_suffix.
2276 * config.make.in (libgcc_s_suffix): Set.
2277 * Makeconfig (libgcc_eh): Use -lgcc_s$(libgcc_s_suffix).
2278
2279 2004-05-08 Ulrich Drepper <drepper@redhat.com>
2280
2281 * signal/signal.h: Use BSD sigpause only if BSD behavior is preferred.
2282
2283 2004-04-29 Steven Munroe <sjmunroe@us.ibm.com>
2284
2285 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (LOADARGS_1,
2286 LOADARGS_2, LOADARGS_3, LOADARGS_4, LOADARGS_5, LOADARGS_6):
2287 Load argument values into temporary variables.
2288 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (LOADARGS_1,
2289 LOADARGS_2, LOADARGS_3, LOADARGS_4, LOADARGS_5, LOADARGS_6):
2290 Likewise.
2291
2292 2004-05-07 Ulrich Drepper <drepper@redhat.com>
2293
2294 * sysdeps/unix/sysv/linux/Makefile: mq_send.c and mq_receive.c
2295 need to be compiled with exceptions.
2296
2297 2004-05-06 Ulrich Drepper <drepper@redhat.com>
2298
2299 * sysdeps/unix/sysv/linux/ifreq.c (__ifreq): Fix memory handling.
2300 * sysdeps/generic/ifreq.c (__ifreq): Fix memory handling.
2301
2302 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Make clear that
2303 realloc cannot fail.
2304
2305 * nss/nss_files/files-netgrp.c (EXPAND): Free buffer which cannot
2306 be expanded.
2307
2308 * nis/nis_table.c: Clean up memory handling.
2309 * nis/nis_subr.c (nis_getnames): Clean up memory handling.
2310 * nis/nis_removemember.c (nis_removemember): Add comment
2311 explaining use of realloc.
2312
2313 * math/tgmath.h (fabs): Use __TGMATH_UNARY_REAL_IMAG_RET_REAL.
2314 (carg): Likewise.
2315 Patch by Lev S Bishop <lev.bishop@yale.edu>.
2316
2317 * math/bug-tgmath1.c (main): Test fabs and carg as well.
2318
2319 2004-05-06 Richard Henderson <rth@redhat.com>
2320
2321 * elf/elf.h (AT_L1I_CACHESHAPE, AT_L1D_CACHESHAPE,
2322 AT_L2_CACHESHAPE, AT_L3_CACHESHAPE): New.
2323 * sysdeps/unix/sysv/linux/alpha/Versions: Export
2324 __libc_alpha_cache_shape as a private symbol.
2325 * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c: New file.
2326 * sysdeps/unix/sysv/linux/alpha/sysconf.c: New file.
2327
2328 2004-05-06 Richard Henderson <rth@redhat.com>
2329
2330 * sysdeps/alpha/div_libc.h (_ITOFS, _ITOFT, _FTOIT, _ITOFT2): New.
2331 * sysdeps/alpha/divl.S: Use them.
2332 * sysdeps/alpha/divq.S: Likewise.
2333 * sysdeps/alpha/divqu.S: Likewise.
2334 * sysdeps/alpha/reml.S: Likewise.
2335 * sysdeps/alpha/remq.S: Likewise.
2336 * sysdeps/alpha/remqu.S: Likewise.
2337
2338 2004-05-06 Ulrich Drepper <drepper@redhat.com>
2339
2340 * math/tgmath.h (__TGMATH_UNARY_REAL_IMAG_RET_REAL):Define.
2341 (cimag): Use it.
2342 (creal): Likewise.
2343 * math/Makefile (tests): Add bug-tgmath1.
2344 * math/bug-tgmath1.c: New file.
2345
2346 2004-05-05 Jakub Jelinek <jakub@redhat.com>
2347
2348 * sysdeps/alpha/atomicity.h: Remove.
2349 * sysdeps/generic/atomicity.h: Remove.
2350
2351 2004-05-05 H.J. Lu <hongjiu.lu@intel.com>
2352
2353 * sysdeps/i386/i486/bits/string.h (strpbrk): Cast return to
2354 char *.
2355
2356 2004-04-22 David Mosberger <davidm@hpl.hp.com>
2357
2358 * sysdeps/unix/sysv/linux/ia64/Makefile (librt-routines): Mention
2359 rt-sysdep.
2360 * sysdeps/unix/sysv/linux/ia64/rt-sysdep.S: New file.
2361
2362 * sysdeps/ia64/strcat.c: New file.
2363 * sysdeps/ia64/strcat.S: Delete.
2364
2365 2004-05-04 Jakub Jelinek <jakub@redhat.com>
2366
2367 * sysdeps/unix/sysv/linux/ia64/sysdep.S (USE___THREAD): Remove
2368 defined.
2369
2370 2004-04-23 Jakub Jelinek <jakub@redhat.com>
2371
2372 * sysdeps/ia64/fpu/libm_support.h (__libm_error_support): Add
2373 libc_hidden_proto. Define to __GI___libm_error_support for
2374 assembly going into libc.so.
2375 * sysdeps/ia64/fpu/libc_libm_error.c (__libm_error_support): Add
2376 libc_hidden_def.
2377
2378 * include/libc-symbols.h (HIDDEN_BUILTIN_JUMPTARGET): Define.
2379 * sysdeps/ia64/bcopy.S (bcopy): Use it for jump to memmove.
2380
2381 * sysdeps/unix/sysv/linux/ia64/sysdep.S (__syscall_error): Access
2382 gprel errno if RTLD_PRIVATE_ERRNO or __thread __libc_errno/errno
2383 if USE___THREAD.
2384
2385 2004-05-03 Jakub Jelinek <jakub@redhat.com>
2386
2387 * sysdeps/unix/bsd/bits/fcntl.h (F_SETOWN, F_GETOWN): Define if
2388 __USE_BSD or __USE_UNIX98.
2389 * sysdeps/unix/bsd/ultrix4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2390 * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2391 * sysdeps/unix/bsd/sun/sunos4/bits/fcntl.h (F_SETOWN, F_GETOWN):
2392 Likewise.
2393 * sysdeps/unix/common/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2394 * sysdeps/unix/sysv/aix/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2395 * sysdeps/unix/sysv/irix4/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2396 * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETOWN, F_GETOWN):
2397 Likewise.
2398 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_SETOWN, F_GETOWN):
2399 Likewise.
2400 * sysdeps/unix/sysv/linux/cris/bits/fcntl.h (F_SETOWN, F_GETOWN):
2401 Likewise.
2402 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (F_SETOWN, F_GETOWN):
2403 Likewise.
2404 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_SETOWN, F_GETOWN):
2405 Likewise.
2406 * sysdeps/unix/sysv/linux/mips/bits/fcntl.h (F_SETOWN, F_GETOWN):
2407 Likewise.
2408 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (F_SETOWN, F_GETOWN):
2409 Likewise.
2410 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (F_SETOWN, F_GETOWN):
2411 Likewise.
2412 * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h (F_SETOWN, F_GETOWN):
2413 Likewise.
2414 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (F_SETOWN, F_GETOWN):
2415 Likewise.
2416 * sysdeps/unix/sysv/linux/arm/bits/fcntl.h (F_SETOWN, F_GETOWN):
2417 Likewise.
2418 * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (F_SETOWN, F_GETOWN):
2419 Likewise.
2420 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (F_SETOWN, F_GETOWN):
2421 Likewise.
2422 * sysdeps/generic/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2423 * sysdeps/mach/hurd/bits/fcntl.h (F_SETOWN, F_GETOWN): Likewise.
2424 * io/sys/stat.h (S_ISSOCK, S_IFSOCK): Likewise.
2425
2426 2004-05-01 Jakub Jelinek <jakub@redhat.com>
2427
2428 * posix/Versions (libc): Remove __libc_wait, __libc_waitpid,
2429 __libc_pause, __libc_nanosleep, __libc_pread, __libc_pread64,
2430 __libc_pwrite64, __waitid and __pselect @@GLIBC_PRIVATE.
2431 * stdlib/Versions (libc): Remove __on_exit@@GLIBC_PRIVATE.
2432 * sysdeps/unix/sysv/linux/Versions (libc): Remove
2433 __libc_sigaction@@GLIBC_PRIVATE.
2434 * sysdeps/unix/sysv/linux/x86_64/Versions (libc): Remove
2435 __modify_ldt@@GLIBC_PRIVATE.
2436 * socket/Versions (libc): Remove __libc_accept, __libc_send,
2437 __libc_recvfrom, __libc_recvmsg, __libc_sendmsg, __libc_recv,
2438 __libc_sendto and __libc_connect @@GLIBC_PRIVATE.
2439 * stdio-common/Versions (libc): Remove
2440 _itoa_upper_digits@@GLIBC_PRIVATE.
2441 * resolv/Versions (libresolv): Remove __ns_samename@@GLIBC_PRIVATE.
2442 * misc/Versions (libc): Remove __libc_fsync, __libc_msync,
2443 __libc_readv and __libc_writev @@GLIBC_PRIVATE.
2444 * termios/Versions (libc): Remove __libc_tcdrain@@GLIBC_PRIVATE.
2445 * io/Versions (libc): Remove __libc_open, __libc_close, __libc_read,
2446 __libc_write, __libc_lseek, __libc_fcntl, __libc_open64 and
2447 __libc_lseek64 @@GLIBC_PRIVATE.
2448
2449 2004-04-30 Jakub Jelinek <jakub@redhat.com>
2450
2451 * elf/dl-load.c (open_verify): Move e_phentsize check after e_type
2452 check.
2453
2454 2004-04-29 Steven Munroe <sjmunroe@us.ibm.com>
2455
2456 * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: New file.
2457 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: New file.
2458 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: New file.
2459 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: New file.
2460 * sysdeps/powerpc/powerpc64/fpu/s_llrint.c: Removed.
2461 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: New file.
2462 * sysdeps/powerpc/powerpc64/fpu/s_llrintf.c: Removed.
2463 * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: New file.
2464 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: New file.
2465 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: New file.
2466 * sysdeps/powerpc/powerpc64/fpu/s_lround.S: New file.
2467 * sysdeps/powerpc/powerpc64/fpu/s_lroundf.S: New file.
2468 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: New file.
2469 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: New file.
2470 * sysdeps/powerpc/powerpc64/fpu/s_round.S: New file.
2471 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: New file.
2472 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: New file.
2473 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: New file.
2474
2475 * math/test-misc.c [LDBL_MANT_DIG == 106](main): Correct LDBL_MAX
2476 mantissa for AIX long double format.
2477 * misc/qefgcvt.c [LDBL_MANT_DIG == 106] (NDIGIT_MAX): Define for AIX
2478 long double format.
2479 * misc/qefgcvt_r.c [LDBL_MANT_DIG == 106] (NDIGIT_MAX): Likewise.
2480 * stdlib/fpioconst.c [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__>1024]
2481 (_fpioconst_pow10): AIX long double format has same exponent range as
2482 double.
2483 * stdlib/fpioconst.h [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__>1024]
2484 (LDBL_MAX_10_EXP_LOG): AIX long double format has same exponent range
2485 as double.
2486
2487 2004-04-23 Art Haas <ahaas@airmail.net>
2488
2489 * sysdeps/unix/sysv/linux/kernel-features.h: Add 'defined'.
2490
2491 2004-04-28 Carlos O'Donell <carlos@baldric.uwo.ca>
2492
2493 * sysdeps/unix/sysv/linux/mq_getattr.c: Include <stddef.h>.
2494 * sysdeps/unix/sysv/linux/mq_notify.c: Likewise.
2495 * sysdeps/unix/sysv/linux/mq_open.c: Likewise.
2496 * sysdeps/unix/sysv/linux/mq_receive.c: Likewise.
2497 * sysdeps/unix/sysv/linux/mq_send.c: Likewise.
2498
2499 2004-04-29 Philip Blundell <pb@nexus.co.uk>
2500
2501 * sysdeps/arm/dl-machine.h (RTLD_START): Avoid unnecessary GOT
2502 entries.
2503
2504 2004-04-29 Jakub Jelinek <jakub@redhat.com>
2505
2506 * manual/resource.texi (sched_setaffinity, sched_getaffinity): Fix
2507 prototypes and description [BZ #131].
2508
2509 * string/bits/string2.h (strpbrk): Cast NULL to char * [BZ #130].
2510 Patch by Ed Catmur <ed@catmur.co.uk>.
2511 * string/tst-inlcall.c (main): Add test for strpbrk.
2512
2513 [BZ #140]
2514 * sysdeps/unix/sysv/linux/sys/sysctl.h: Remove linux/compiler.h
2515 include.
2516 (_LINUX_KERNEL_H, _LINUX_TYPES_H, _LINUX_LIST_H): Only define if not
2517 yet defined, #undef back after including linux/sysctl.h if defined
2518 here.
2519 (__LINUX_COMPILER_H, __user): Define if not yet defined, #undef
2520 back after including linux/sysctl.h if defined here.
2521
2522 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c (_Qp_qtoi): Use %f31
2523 for single precision register, add it to __asm clobbers [BZ #139].
2524 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c (_Qp_qtoui): Use %f31
2525 for single precision register, add it to __asm clobbers.
2526 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c (_Qp_qtoux): Use fqtox
2527 instead of fqtoi in QP_HANDLE_EXCEPTIONS.
2528 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c (_Qp_qtox): Likewise.
2529 Reported by M. H. VanLeeuwen <vanl@megsinet.net>.
2530
2531 2004-04-23 Andreas Schwab <schwab@suse.de>
2532
2533 * sysdeps/unix/sysv/linux/m68k/register-dump.h: Use
2534 __attribute_used__.
2535
2536 2004-04-22 Philip Blundell <philb@gnu.org>
2537
2538 * sysdeps/arm/dl-machine.h (elf_machine_rela): Don't use INTUSE
2539 when calling _dl_signal_error.
2540 (elf_machine_rel): Likewise.
2541
2542 2004-04-21 Ulrich Drepper <drepper@redhat.com>
2543
2544 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Define _GI___sigsetjmp
2545 and use it internally instead of __sigsetjmp.
2546 * sysdeps/ia64/fpu/s_frexpf.c (frexpf): Use _GI___libm_frexp_4f.
2547 * sysdeps/ia64/fpu/s_frexpl.c (frexpl): Use _GI___libm_frexp_4l.
2548 * sysdeps/ia64/fpu/libm_frexp4.S: Define _GI___libm_frexp_4.
2549 * sysdeps/ia64/fpu/libm_frexp4f.S: Define _GI___libm_frexp_4f.
2550 * sysdeps/ia64/fpu/libm_frexp4l.S: Define _GI___libm_frexp_4l.
2551 * sysdeps/ia64/fpu/s_frexp.c (frexp): Use _GI___libm_frexp_4.
2552 * sysdeps/ia64/fpu/libm_support.h: Declare _GI___libm_frexp_4,
2553 _GI___libm_frexp_4f, _GI___libm_frexp_4l.
2554 * sysdeps/ia64/fpu/bits/mathinline.h: New file.
2555 * sysdeps/unix/sysv/linux/ia64/__start_context.S: Use
2556 HIDDEN_JUMPTARGET for exit call.
2557 * sysdeps/unix/sysv/linux/ia64/clone2.S: Use HIDDEN_JUMPTARGET for
2558 _exit call.
2559 * sysdeps/ia64/bcopy.S: Use HIDDEN_JUMPTARGET for memmove call.
2560 * sysdeps/ia64/strcat.S: Use HIDDEN_JUMPTARGET for strlen and
2561 strcpy calls.
2562
2563 2004-04-21 Jakub Jelinek <jakub@redhat.com>
2564
2565 * posix/tst-chmod.c (do_test): Fix a typo.
2566
2567 * elf/lateglobal.c (main): Fix error checks.
2568 Patch by Stephen Clarke <stephen.clarke@st.com>.
2569
2570 * manual/ctype.texi (isblank, iswblank): Mark as ISO functions,
2571 mention they have been added in ISO C99.
2572 Reported by Ben Pfaff <blp@cs.stanford.edu>.
2573
2574 2004-03-31 H.J. Lu <hongjiu.lu@intel.com>
2575
2576 * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Fix typo.
2577
2578 2004-04-20 Jakub Jelinek <jakub@redhat.com>
2579
2580 * sysdeps/unix/sysv/linux/shm_open.c (shm_unlink): Change EPERM into
2581 EACCES.
2582
2583 2004-04-20 Jakub Jelinek <jakub@redhat.com>
2584
2585 * stdio-common/vfscanf.c (_IO_vfscanf): Revert last %% whitespace
2586 handling change.
2587 * stdio-common/tst-sscanf.c (int_tests): Adjust.
2588
2589 * nis/nss-nis.c: Include stdlib.h.
2590
2591 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Shut up a
2592 warning.
2593 * sysdeps/sparc/sparc64/memcmp.S (memcmp): Remove BP_SYM () from
2594 libc_hidden_builtin_def.
2595
2596 2004-04-20 Jim Meyering <jim@meyering.net>
2597
2598 * misc/error.c (error_tail): Don't leak upon realloc failure.
2599
2600 2004-04-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
2601
2602 * sysdeps/unix/sysv/linux/dl-execstack.c (_dl_make_stack_executable):
2603 Use RETURN_ADDRESS instead of __builtin_return_address.
2604
2605 2004-04-19 Ulrich Drepper <drepper@redhat.com>
2606
2607 * sysdeps/unix/sysv/linux/mq_unlink.c: Rewrite to produce more
2608 compact code.
2609
2610 2004-04-20 Jakub Jelinek <jakub@redhat.com>
2611
2612 * stdio-common/vfscanf.c (_IO_vfscanf): When skipping whitespace,
2613 do input_error () instead of conv_error () and don't look at errno.
2614 Don't eat any whitespace before %% if skip_space == 0.
2615 * stdio-common/tst-sscanf.c (int_tests): New array.
2616 (main): Run int_tests.
2617
2618
2619 See ChangeLog.14 for earlier changes.
This page took 0.300964 seconds and 5 git commands to generate.