Update.
[platform/upstream/glibc.git] / ChangeLog
1 2000-05-08  Jakub Jelinek  <jakub@redhat.com>
2
3         * elf/dl-fini.c (_dl_fini): Bump l_opencount of all objects so that
4         they are not dlclose'd from underneath us.
5
6 2000-05-08  Andreas Schwab  <schwab@suse.de>
7
8         * posix/execle.c: Fix size parameter of memcpy.
9
10 2000-05-08  Andreas Schwab  <schwab@suse.de>
11
12         * sysdeps/unix/sysv/linux/m68k/getpagesize.c: New file.  Use
13         getpagesize syscall if available.
14
15 2000-05-08  Andreas Jaeger  <aj@suse.de>
16
17         * sysdeps/generic/lockf64.c (lockf64): Return -1 for overflow and
18         set errno.
19
20 2000-05-08  Jakub Jelinek  <jakub@redhat.com>
21
22         * elf/dl-lookup.c (add_dependency): Reallocate l_reldeps in
23         sizeof(struct link_map *) chunks, not in bytes.
24
25 2000-05-07  Ulrich Drepper  <drepper@redhat.com>
26
27         * locale/Makefile (locale-CPPFLAGS): Renamed from CPPFLAGS.  It's
28         only needed for locale.
29         * catgets/Makefile (catgets-CPPFLAGS): Renamed from CPPFLAGS.
30         It's only needed for catgets.
31         Patches by Greg McGary <gkm@eng.ascend.com>.
32
33 2000-05-07  Mark Kettenis  <kettenis@gnu.org>
34
35         * nss/nss_db/db-open.c: Cleanup and add comments.  Pretty print.
36         Remove duplicate <errno.h> include.  Remove inclusion of
37         <libintl.h> and "nsswitch.h".
38         (set_cloexec_flag): New function, broken out of dbopen.
39         (dbopen): Changed return type to `enum
40         nss_status'.  Mostly rewritten to make sure that we do not report
41         NSS_STATUS_SUCCESS if something went wrong.  Remove unnecessary casts.
42         (internal_setent): Change return type to nss_status.
43         Document, and make sure that the function
44         behaves accordingly.  Make dynamically loading the database
45         library really thread-safe and return NSS_STATUS_UNAVAIL if it
46         failed.
47         (db_cursor): Return ENOMEM is memory allocation failed.  Remove
48         unecessary casts.
49         * nss/nss_db/dummy-db.h: Add copyright notice.  Improve
50         documentation.
51         (struct dbc24, struct dbc27): Use DBT type in parameter lists for
52         c_get function member.
53         * nss/nss_db/nss_db.h: Add and tweak some comments.
54         (DBT): Move typedef before NSS_DBC typedef.
55         (NSS_DBC, NSS_DB): Use DBT in function member parameter lists.
56
57 2000-05-07  H.J. Lu  <hjl@gnu.org>
58
59         * csu/initfini.c: Moved to ....
60         * sysdeps/generic/initfini.c: ...here.
61
62         * csu/Makefile (initfini.c): Set vpath to $(full_config_sysdirs).
63
64 2000-05-07  Ulrich Drepper  <drepper@redhat.com>
65
66         * manual/resource.texi: Document POSIX scheduling functions.
67         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
68
69         * inet/rcmd.c (rcmd_af): errno is not set if read returns without
70         reading anything.  Reported by Andries.Brouwer@cwi.nl.
71
72         * sysdeps/generic/memccpy.c (__memccpy): Don't use reg_char type
73         for x since promotion in comparison might leads to unexpected
74         results.  Reported by Dan Pop <Dan.Pop@cern.ch>.
75
76         * iconv/Makefile (tests): Add tst-iconv1.
77         * iconv/tst-iconv1.c: New file.
78         * iconv/gconv_simple.c (internal_ucs4_loop): Prefer reporting
79         empty input buffer over full output buffer.
80         (ucs4_internal_loop): Likewise.
81         (ucs4_internal_loop_unaligned): Likewise.
82         (internal_ucs4le_loop): Likewise.
83         (internal_ucs4le_loop_unaligned): Likewise.
84         (ucs4le_internal_loop): Likewise.
85         (ucs4le_internal_loop_unaligned): Likewise.
86         Reported by yaoz@nih.gov.
87
88 2000-05-06  Bruno Haible  <haible@clisp.cons.org>
89
90         * iconv/gconv_open.c (__gconv_open): If __gconv_find_transform
91         returned != __GCONV_OK, there is nothing to clean up.
92
93 2000-05-06  Bruno Haible  <haible@clisp.cons.org>
94
95         * intl/tst-gettext.c (main): Disable possibly existing LC_CTYPE and
96         OUTPUT_CHARSET environment variables.
97
98 2000-05-06  Andreas Jaeger  <aj@suse.de>
99
100         * sysdeps/generic/dl-cache.h (struct file_entry_new): New.
101         (struct cache_file_new): New.
102         (struct file_entry): New (moved from cache.c).
103         (struct cache_file): New (moved from cache.c).
104
105         * sysdeps/generic/dl-cache.c (SEARCH_CACHE): New macro, broken out
106         from _dl_load_cache_lookup.
107         (_dl_load_cache_lookup): Move search to SEARCH_CACHE macro, handle
108         the different cache formats.
109         New variable cache_new for new format.
110
111         * elf/ldconfig.h: Change according to changes in cache.c and
112         ldconfig.c; remove cache_libcmp; add opt_format.
113
114         * elf/ldconfig.c: Include "dl-cache.h" and "dl-procinfo.h"; remove
115         stuff that's defined in those headers.
116         Add hwcap to struct lib_entry.
117         (opt_format): New variable to select cache format.
118         (options): Add format parameter.
119         (is_hwcap): New function.
120         (path_hwcap): New function.
121         (parse_opt): Handle new format parameter.
122         (search_dir): Handle hwcap, search also subdirectories with hwcap.
123
124         * elf/cache.c (_GNU_SOURCE): Removed.  Not needed anymore since
125         ldconfig is part of glibc.
126         Include dl-cache.h and remove stuff that's defined there.
127         (struct cache_entry): Add new member hwcap.
128         (print_entry): Print hwcap, cleanup a bit.
129         (print_cache): Print new and old formats.
130         (compare): Use _dl_cache_libcmp from dl-cache.h; handle hwcap.
131         (save_cache): Save new and old formats.
132         (add_to_cache): Handle hwcap.
133
134         * sysdeps/generic/dl-cache.c (_dl_cache_libcmp): Moved from here...
135         * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): ...to here.
136         * sysdeps/generic/dl-cache.c (LD_SO_CACHE): Moved from here...
137         * sysdeps/generic/dl-cache.h (LD_SO_CACHE): ...to here.
138         * sysdeps/generic/dl-cache.c (CACHEMAGIC): Moved from here...
139         * sysdeps/generic/dl-cache.h (CACHEMAGIC): ...to here.
140
141 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
142
143         * intl/dcigettext.c (alignof): New macro.
144         (_nl_find_msg): Use it instead of __alignof__. Pass correct output
145         buffer length to __gconv/iconv. If malloc (freemem_size) fails, set
146         freemem_size to 0.
147
148 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
149
150         * intl/dcigettext.c (dcigettext): Fix interpretation of tsearch
151         return value.
152
153 2000-05-06  Ulrich Drepper  <drepper@redhat.com>
154
155         * intl/dcigettext.c (DCIGETTEXT): Always define local variable `index'.
156         (mempcpy): Correct typo is parameter list.
157
158 2000-05-06  Andreas Jaeger  <aj@suse.de>
159
160         * sysdeps/i386/fpu/bits/mathinline.h: Disable some inline
161         functions unless -ffast-math is given to gcc.
162
163 2000-05-06  Ulrich Drepper  <drepper@redhat.com>
164
165         * po/ko.po: Update from translation team.
166
167 2000-05-05  Ulrich Drepper  <drepper@redhat.com>
168
169         * sysdeps/unix/sysv/aix/linux/errnoconv.c: Moved to...
170         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: ...here.
171         * sysdeps/unix/sysv/aix/linux/statconv.c: Moved to...
172         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: ...here.
173         * sysdeps/unix/sysv/aix/linux/direntconv.c: Moved to...
174         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: ...here.
175
176         * sysdeps/unix/sysv/aix/linux/linux-errno.h: Removed.
177         * sysdeps/unix/sysv/aix/linux/linux-stat.h: Removed
178         * sysdeps/unix/sysv/aix/linux/linux-dirent.h: Removed.
179
180         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: New file.
181         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: New file.
182         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: New file.
183         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: New file.
184
185         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: New file.
186         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: New file.
187
188 2000-05-05  Jes Sorensen  <jes@linuxcare.com>
189
190         * sysdeps/unix/sysv/linux/ia64/sysdep.h: New file.
191         * sysdeps/unix/sysv/linux/ia64/syscall.S: New file.
192
193         * sysdeps/unix/sysv/linux/ia64/bits/types.h: New file.
194         * sysdeps/unix/sysv/linux/ia64/bits/endian.h: New file.
195
196         * sysdeps/ia64/Implies: New file.
197         * sysdeps/ia64/Versions: New file.  Declare _dl_symbol_address.
198         * sysdeps/ia64/Makefile: New file.
199         * sysdeps/ia64/gmp-mparam.h: New file,
200
201         * sysdeps/ia64/elf/start.S: New file.
202
203         * sysdeps/ia64/bits/fenv.h: New file.
204
205 2000-05-05  David Mosberger-Tang  <davidm@hpl.hp.com>
206
207         * sysdeps/unix/sysv/linux/ia64/sysdep.S: New file.
208
209 2000-04-26  Jes Sorensen  <Jes.Sorensen@cern.ch>
210
211         * sysdeps/unix/sysv/linux/ia64/bits/elfclass.h: New file.  The
212         ia64 has 64 bit .hash entries just as the Alpha.
213
214 2000-04-25  Jes Sorensen  <Jes.Sorensen@cern.ch>
215
216         * sysdeps/ia64/memprof.h: New file.  Provide GETSP() macro.
217
218 2000-04-17  Jes Sorensen  <Jes.Sorensen@cern.ch>
219
220         * sysdeps/ia64/fpu/fclrexcpt.c: New file.
221         * sysdeps/ia64/fpu/fedisblxcpt.c: New file.
222         * sysdeps/ia64/fpu/feenablxcpt.c: New file.
223         * sysdeps/ia64/fpu/fegetenv.c: New file.
224         * sysdeps/ia64/fpu/fegetexcept.c: New file.
225         * sysdeps/ia64/fpu/fegetround.c: New file.
226         * sysdeps/ia64/fpu/feholdexcpt.c: New file.
227         * sysdeps/ia64/fpu/fesetenv.c: New file.
228         * sysdeps/ia64/fpu/fesetround.c: New file.
229         * sysdeps/ia64/fpu/feupdateenv.c: New file.
230         * sysdeps/ia64/fpu/fgetexcptflg.c: New file.
231         * sysdeps/ia64/fpu/fraiseexcpt.c: New file.
232         * sysdeps/ia64/fpu/fsetexcptflg.c: New file.
233         * sysdeps/ia64/fpu/ftestexcept.c: New file.
234
235 2000-05-05  Andreas Jaeger  <aj@suse.de>
236
237         * misc/tst-tsearch.c (main): Correct type for initstate argument.
238
239         * sysdeps/generic/dl-procinfo.h (_DL_HWCAP_COUNT): New.
240         (_dl_string_hwcap): New, does nothing.
241
242         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h (_DL_HWCAP_COUNT): New.
243         (_dl_procinfo): Use _DL_HWCAP_COUNT instead of a constant.
244         (_dl_string_hwcap): New function, converts from string to hwcap
245         encoding.
246         * sysdeps/unix/sysv/linux/sparc/sparc32/dl-procinfo.h
247         (_DL_HWCAP_COUNT): New.
248         (_dl_procinfo): Use _DL_HWCAP_COUNT instead of a constant.
249         (_dl_string_hwcap): New function, converts from string to hwcap
250         encoding.
251         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-procinfo.h
252         (_DL_HWCAP_COUNT): New.
253         (_dl_procinfo): Use _DL_HWCAP_COUNT instead of a constant.
254         (_dl_string_hwcap): New function, converts from string to hwcap
255         encoding.
256
257 2000-05-05  Ulrich Drepper  <drepper@redhat.com>
258
259         * elf/Makefile (distribute): Add dl-lookupcfg.h.
260         * sysdeps/ia64/Dist: New file.
261
262         * elf/dl-load.c (_dl_map_object_from_fd): Little of computation of
263         parameter to mprotect and for variable assignments.
264
265 2000-05-03  Jes Sorensen  <jes@linuxcare.com>
266
267         * sysdeps/generic/ldsodefs.h (LOOKUP_VALUE_ADDRESS): Check the
268         validity of map before dereferencing it.
269
270         * elf/dl-reloc.c (RESOLVE_MAP): Define.
271
272 2000-05-02  Jes Sorensen  <jes@linuxcare.com>
273
274         * elf/dl-runtime.c (fixup): Add the value returned in the symbol
275         lookup to the arguments to elf_machine_fixup_plt().
276
277         * sysdeps/ia64/dl-machine.h (elf_machine_fixup_plt): Add Link_map
278         of the symbol being resolved to input argument list and make the
279         function return the pointer to the reloc.
280
281         * sysdeps/alpha/dl-machine.h (elf_machine_fixup_plt): Change
282         return valuie to lookup_t and return the value.
283         * sysdeps/arm/dl-machine.h (elf_machine_fixup_plt): Likewise.
284         * sysdeps/generic/dl-machine.h (elf_machine_fixup_plt): Likewise.
285         * sysdeps/i386/dl-machine.h (elf_machine_fixup_plt): Likewise.
286         * sysdeps/m68k/dl-machine.h (elf_machine_fixup_plt): Likewise.
287         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_fixup_plt): Likewise.
288         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_fixup_plt): Likewise.
289
290         * sysdeps/powerpc/dl-machine.h (elf_machine_fixup_plt): Likewise.
291         Make it an inline function returning value after calling
292         __elf_machine_fixup_plt().
293
294         * elf/dl-sym.c (_dl_vsym): Use DL_SYMBOL_ADDRESS() to obtain the
295         symbol address.
296
297         * elf/dl-symbol.c (_dl_symbol_value): Use LOOKUP_VALUE_ADDRESS to
298         obtain the symbol address.
299
300         * sysdeps/generic/ldsodefs.h: Add generic DL_SYMBOL_ADDRESS() macro
301         depending on the definition of ELF_FUNCTION_PTR_IS_SPECIAL.
302
303         * sysdeps/ia64/dl-machine.h: Add DL_SYMBOL_ADDRESS() macro calling
304         _dl_symbol_address() - this way DL_SYMBOL_ADDRESS() turns into an
305         inline on non ia64.
306
307 2000-04-28  Jes Sorensen  <jes@linuxcare.com>
308
309         * elf/dl-runtime.c (fixup): Use the portable macros to get the
310         symbol address of an object.
311
312         * elf/dl-runtime.c (fixup-profile): Use the portable macros to get
313         the symbol address of an object.
314
315         * elf/dl-libc.c (struct do_dlsym_args): Change loadbase to a lookup_t.
316         * elf/dl-lookup.c (_dl_lookup_symbol): Likewise.
317         (_dl_lookup_symbol_skip): Likewise.
318         (_dl_lookup_versioned_symbol): Likewise.
319         (_dl_lookup_versioned_symbol_skip): Likewise.
320
321 2000-04-27  Jes Sorensen  <jes@linuxcare.com>
322
323         * elf/rtld.c (_dl_start): Get the function pointer return address
324         via _dl_start_address for architectures that need a function
325         pointer descriptor rather than just a pointer (ia64).
326
327         * sysdeps/generic/dl-lookupcfg.h: New file.
328         * sysdeps/ia64/dl-lookupcfg.h: New file.
329         * sysdeps/ia64/dl-machine.h: New file.
330         * sysdeps/ia64/dl-symaddr.c: New file.
331         * sysdeps/ia64/dl-fptr.c: New file.
332
333         * elf/elf.h: Add IA-64 specific definitions.
334
335 2000-05-04  Jakub Jelinek  <jakub@redhat.com>
336
337         * sysdeps/generic/bits/confname.h (_SC* enum): Avoid comma at the
338         end of enum.
339
340 2000-05-04  Jakub Jelinek  <jakub@redhat.com>
341
342         * iconv/gconv.h (__gconv_t): Add __extension__ to make gcc -pedantic
343         happy.
344
345 2000-04-11  Geoff Keating  <geoffk@cygnus.com>
346
347         * sysdeps/powerpc/dl-start.S (_dl_start): Add _dl_start_user
348         symbol.  Call _dl_init rather than the old way.
349
350 2000-05-04  Ulrich Drepper  <drepper@redhat.com>
351
352         * elf/dl-open.c (dl_open_worker): Use l_map_start and l_map_end to
353         test for pointer in range of DSO address space.
354
355 2000-05-04  Andreas Jaeger  <aj@suse.de>
356
357         * nscd/pwdcache.c (addpwbyname): Initialize oldeuid to silence GCC.
358
359 2000-05-03  Ulrich Drepper  <drepper@redhat.com>
360
361         * locale/findlocale.c (_nl_find_locale): Add new parameter to
362         calls of _nl_make_l10nflist.
363
364         * libio/stdio.h: Make fseeko and ftello prototypes available is
365         __USE_LARGEFILE.  Patch by Paul Eggert <eggert@twinsun.com>.
366
367         * sysdeps/generic/dl-environ.c (unsetenv): Follow change to the
368         real unsetenv implementation from 1999-07-29 [PR libc/1714].
369
370 2000-05-03  Bruno Haible  <haible@clisp.cons.org>
371
372         * intl/dcigettext.c (dcigettext): Do the defaulting of 'domainname'
373         before calling tfind.
374
375 2000-03-05  Jakub Jelinek  <jakub@redhat.com>
376
377         * resolv/resolv.h (res_querydomain): Remove redefinition to
378         __res_querydomain (reported by Owen Taylor <otaylor@redhat.com>).
379
380 2000-05-03  Ulrich Drepper  <drepper@redhat.com>
381
382         * po/gl.po: Update from translation team.
383
384         * manual/intro.texi (Program Basics): Change section title.
385         * manual/process.texi: Fix reference.
386         (Executing a File): Add reference exec in other section.
387         * manual/signal.texi: Fix reference.
388         * manual/startup.texi: Document syscall function.
389         Patches by Bryan Henderson <bryanh@giraffe-data.com>.
390
391 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
392
393         * intl/libintl.h (bind_textdomain_codeset): New declaration.
394         * intl/bindtextdom.c (set_binding_values): New function.
395         (bindtextdomain): Call it.
396         (bind_textdomain_codeset): New function.
397         * intl/dcigettext.c (dcigettext): Pass binding to _nl_find_domain.
398         (free_mem): Free each binding's codeset.
399         * intl/gettextP.h (struct binding): Add codeset field.
400         (_nl_find_domain): Add domainbinding argument.
401         * intl/finddomain.c (_nl_find_domain): Add domainbinding argument.
402         Pass it to _nl_make_l10nflist.
403         * intl/loadinfo.h (struct loaded_l10nfile): Add domainbinding field.
404         (_nl_make_l10nflist): Add domainbinding argument.
405         * intl/l10nflist.c (_nl_make_l10nflist): Add domainbinding argument.
406         * intl/loadmsgcat.c (_nl_load_domain): Look at the domainbinding's
407         codeset when determining outcharset. If !_LIBC && HAVE_ICONV, call
408         locale_charset().
409         * manual/message.texi: New node "Charset conversion in gettext".
410
411 2000-04-30  Bruno Haible  <haible@clisp.cons.org>
412
413         * catgets/open_catalog.c (__open_catalog): Use __builtin_expect where
414         appropriate.  Handle possible __read error.
415
416 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
417
418         * intl/gettextP.h (__builtin_expect): Define as empty if not a
419         compiler builtin.
420         * intl/loadinfo.h (__builtin_expect): Likewise.
421         * intl/dcigettext.c (dcigettext, _nl_find_msg): Use
422         __builtin_expect where appropriate.
423         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
424         * intl/localealias.c (extend_alias_table): Return an error indicator.
425         (read_alias_file): Bail out if extend_alias_table fails.
426
427 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
428
429         * intl/loadmsgcat.c: Define _GNU_SOURCE as early as possible.
430         * intl/localealias.c: Likewise.
431
432 2000-05-01  Bruno Haible  <haible@clisp.cons.org>
433
434         * intl/loadmsgcat.c (_nl_load_domain): Initialize domain->conv_tab.
435         Initialize domain->plural and domain->nplurals even if there is no
436         nullentry.
437
438 2000-05-01  Bruno Haible  <haible@clisp.cons.org>
439
440         * intl/dcigettext.c (_nl_find_msg): Terminate __gconv loop if return
441         value is == __GCONV_OK or == __GCONV_EMPTY_INPUT, not != __GCONV_OK.
442         In case of failure, goto converted.
443
444 2000-05-01  Bruno Haible  <haible@clisp.cons.org>
445
446         * wcsmbs/wcsmbsload.c (norm_add_slashes): Move away.
447         * iconv/gconv_int.h (norm_add_slashes): Move to here.
448         * intl/loadmsgcat.c (_nl_load_domain): Normalize strings passed to
449         __gconv_open.
450
451 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
452
453         * intl/dcigettext.c (transcmp): Compare the domains as well.
454         (dcigettext): Call strlen (msgid1) after testing msgid1 against NULL,
455         not before.
456         * intl/loadmsgcat.c (_nl_load_domain): Deal with EINTR. Include
457         <errno.h>.
458
459 2000-05-03  Ulrich Drepper  <drepper@redhat.com>
460
461         * string/bits/string2.h: Declare __strdup and __strndup if necessary.
462         Reported by Bruno Haible.
463
464 2000-04-29  Bruno Haible  <haible@clisp.cons.org>
465
466         * manual/arith.texi: Remove @w from @itemize.
467
468 2000-05-02  Andreas Jaeger  <aj@suse.de>
469
470         * conform/data/tar.h-data: Add some checks for specific values.
471
472         * conform/data/stdlib.h-data: Add checks for value of EXIT_SUCCESS
473         and RAND_MAX.
474
475         * conform/data/stdio.h-data: Add checks for value of TMP_MAX and
476         FOPEN_MAX.
477
478         * conform/data/netinet/in.h-data: Add exact checks for the values
479         fo INET_ADDRSTRLEN and INET6_ADDRSTRLEN.
480
481         * conform/data/float.h-data: Add some minimal values.
482
483         * conform/conformtest.pl: Test for macros with string constants,
484         check for minimum and maximum values.
485         Add limits.h to headers.
486
487         * conform/data/cpio.h-data: Test for value of MAGIC.
488
489         * conform/data/limits.h-data: New file.
490
491 2000-04-30  Bruno Haible  <haible@clisp.cons.org>
492
493         * math/Makefile (headers): Add bits/fenvinline.h.
494
495 2000-05-01  Ulrich Drepper  <drepper@redhat.com>
496
497         * sysdeps/unix/sysv/aix/linux/linux-dirent.h: New file.
498         * sysdeps/unix/sysv/aix/linux/direntconv.c: New file.
499
500         * posix/Versions: Change posix_spawnattr_getdefault and
501         posix_spawnattr_setdefault to posix_spawnattr_getsigdefault
502         and posix_spawnattr_setsigdefault respectively.
503         * posix/spawn.h: Likewise.
504         * posix/spawnattr_getdefault.h: Likewise.
505         * posix/spawnattr_setdefault.h: Likewise.
506         * conform/data/spawn.h-data: Likewise.
507
508 2000-05-01  Andreas Jaeger  <aj@suse.de>
509
510         * nscd/nscd.c: Include <grp.h> for setgroups prototype.
511
512 2000-04-30  Ulrich Drepper  <drepper@redhat.com>
513
514         * manual/sysinfo.texi: Document getdomainname, setdomainname
515         and sysctl.
516         * manual/string.texi: Fix typo.
517         * manual/terminal.texi: Document gtty and stty.
518         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
519
520 2000-04-30  Andreas Jaeger  <aj@suse.de>
521
522         * posix/bits/posix1_lim.h (_POSIX_PATH_MAX): Increase to 256 in
523         accordance with Austin Draft.
524
525 2000-04-30  Ulrich Drepper  <drepper@redhat.com>
526
527         * catgets/gencat.c (read_input_file): Use isblank and not isspace
528         to recognize second character in comment line.
529
530         * sysdeps/unix/sysv/linux/if_index.c (if_nameindex): Set errno to
531         ENOBUFS if we are out of memory.
532
533         * sysdeps/generic/bits/fcntl.h (F_SETOWN, F_GETOWN): Make
534         available if __USE_XOPEN2K.
535         * sysdeps/mach/hurd/bits/fcntl.h: Likewise.
536         * sysdeps/unix/common/bits/fcntl.h: Likewise.
537         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
538         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
539         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
540         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
541         * sysdeps/unix/sysv/aix/bits/fcntl.h: Likewise.
542         * sysdeps/unix/sysv/linux/bits/fcntl.h: Likewise.
543
544 2000-04-29  Ulrich Drepper  <drepper@redhat.com>
545
546         * iconv/iconv_prog.c (main): Handle input file name "-" correctly.
547         Recognize option -s, -c, and -l.
548
549 2000-04-20  Thorsten Kukuk  <kukuk@suse.de>
550
551         * nscd/nscd.c: Start new session for nscd, drop privilegs
552         to configured user if requested and no -S parameter are used.
553         * nscd/nscd.conf: Add new option "server-user".
554         * nscd/nscd_conf.c: Add support for new "server-user" option.
555         * nscd/nscd.h: Add declaration for server_user variable.
556         Based on patch by Chris Wing <wingc@engin.umich.edu>
557
558 2000-04-29  Mark Kettenis  <kettenis@gnu.org>
559
560         * sysdeps/unix/sysv/linux/i386/sigaction.c: Add comment explaining
561         that changing the __restore and __restore_rt signal return code
562         will break GDB.
563
564 2000-04-29  Mark Kettenis  <kettenis@gnu.org>
565
566         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Do not include
567         <sys/user.h>.
568
569 2000-04-29  Mark Kettenis  <kettenis@gnu.org>
570
571         * conform/data/ucontext.h-data: Allow ss_* instead of SS_*.
572
573 2000-04-29  Ulrich Drepper  <drepper@redhat.com>
574
575         * conform/conformtest.pl (@headers): Add sys/utsname.h, sys/un.h,
576         sys/socket.h, spawn.h, netinet/tcp.h, netinet/in.h, net/if.h, and
577         arpa/inet.h.
578         * conform/data/fcntl.h-data: Add F_GETOWN, F_SETOWN,
579         SEEK_SET, SEEK_CUR, SEEK_END, S_IFMT, S_IFBLK, S_IFCHR, S_IFIFO,
580         S_IFREG, S_IFDIR, S_IFLNK, S_IFSOCK, S_IRWXU, S_IRUSR S_IWUSR,
581         S_IXUSR, S_IRWXG, S_IRGRP, S_IWGRP, S_IXGRP, S_IRWXO, S_IROTH,
582         S_IWOTH, S_IXOTH, S_ISUID, S_ISGID, S_ISVTX, POSIX_FADV_NORMAL,
583         POSIX_FADV_SEQUENTIAL, POSIX_FADV_RANDOM, POSIX_FADV_WILLNEED,
584         POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE, posix_fadvise,
585         posix_fallocate, and posix_madvise.
586         * conform/data/netdb.h-data: New file.
587         * conform/data/pthread.h-data: Add pthread_barrier_t,
588         pthread_barrierattr_t, pthread_barrier_destroy,
589         pthread_barrier_init, pthread_barrier_wait,
590         pthread_barrierattr_destroy, pthread_barrierattr_getpshared,
591         pthread_barrierattr_init, pthread_barrierattr_setpshared,
592         pthread_condattr_getclock, pthread_condattr_setclock,
593         pthread_getcpuclockid, pthread_mutex_timedlock,
594         pthread_rwlock_timedrdlock, pthread_rwlock_timedwrlock,
595         pthread_sigmask, pthread_spin_destroy, pthread_spin_init,
596         pthread_spin_lock, pthread_spin_trylock, and pthread_spin_unlock.
597         * conform/data/sched.h-data: Add sched_ss_low_priority,
598         sched_ss_repl_period, sched_ss_init_budget, sched_ss_max_repl, and
599         SCHED_SPORADIC.
600         * conform/data/semaphore.h-data: Add sem_timedwait.
601         * conform/data/signal.h-data: Add SIGIO.
602         * conform/data/spawn.h-data: New file.
603         * conform/data/stdlib.h-data: Add posix_memalign, setenv, and unsetenv.
604         * conform/data/time.h-data: Add CLOCK_PROCESS_CPUTIME_ID,
605         CLOCK_THREAD_CPUTIME_ID, clock_getcpuclockid, and clock_nanosleep.
606         Fix typo in gmtime_r definition.
607         * conform/data/unistd.h-data: Add _POSIX_ADVISORY_INFO,
608         _POSIX_ASYNCHRONOUS_IO, _POSIX_BARRIERS, _POSIX_MONOTONIC_CLOCK,
609         _POSIX_READER_WRITER_LOCKS, _POSIX_SHELL, _POSIX_SPAWN,
610         _POSIX_SPIN_LOCKS, _POSIX_SPORADIC_SERVER, _POSIX_THREAD_CPUTIME,
611         _POSIX_TYPED_MEMORY_OBJECTS, _POSIX_THREAD_SPORADIC_SERVER,
612         _XOPEN_STREAMS, _POSIX_TIMEOUTS, _POSIX2_PBS,
613         _POSIX2_PBS_ACCOUNTING, _POSIX2_PBS_CHECKPOINT,
614         _POSIX2_PBS_LOCATE, _POSIX2_PBS_MESSAGE, _POSIX2_PBS_TRACK,
615         _SC_2_PBS, _SC_2_PBS_ACCOUNTING, _SC_2_PBS_CHECKPOINT,
616         _SC_2_PBS_LOCATE, _SC_2_PBS_MESSAGE, _SC_2_PBS_TRACK,
617         _SC_BARRIERS, _SC_BASE, _SC_CLOCK_SELECTION, _SC_DEVICE_IO,
618         _SC_DEVICE_SPECIFIC, _SC_DEVICE_SPECIFIC_R, _SC_FD_MGMT, _SC_FIFO,
619         _SC_FILE_ATTRIBUTES, _SC_FILE_LOCKING, _SC_FILE_SYSTEM,
620         _SC_MEMORY_PROTECTION, _SC_MESSAGE_PASSING, _SC_MONOTONIC_CLOCK,
621         _SC_MESSAGE_PASSING, _SC_MONOTONIC_CLOCK, _SC_MULTIPLE_PROCESS,
622         _SC_NETWORKING, _SC_PIPE, _SC_READER_WRITER_LOCKS, _SC_REGEXP,
623         _SC_SHELL, _SC_SIGNALS, _SC_SINGLE_PROCESS, _SC_SPIN_LOCKS,
624         _SC_TYPED_MEMORY_OBJECTS, _SC_USER_GROUPS, _SC_USER_GROUPS_R,
625         _SC_STREAMS, _PC_REC_INCR_XFER_SIZE, _PC_REC_MAX_XFER_SIZE,
626         _PC_REC_MIN_XFER_SIZE, _PC_REC_XFER_ALIGN, setegid, seteuid.  Fix
627         typo in off_t definition.
628         * conform/data/net/if.h-data: New file.
629         * conform/data/netinet/in.h-data: New file.
630         * conform/data/netinet/tcp.h-data: New file.
631         * conform/data/sys/mman.h-data: Add POSIX_MADV_NORMAL,
632         POSIX_MADV_SEQUENTIAL, POSIX_MADV_RANDOM, POSIX_MADV_WILLNEED,
633         POSIX_MADV_DONTNEED, POSIX_TYPED_MEM_ALLOCATE,
634         POSIX_TYPED_MEM_ALLOCATE_CONTIG, POSIX_TYPED_MEM_MAP_ALLOCATABLE,
635         posix_typedmem_info, posix_mem_offset, posix_typed_mem_get_info,
636         and posix_typed_mem_open.
637         * conform/data/sys/socket.h-data: New file.
638         * conform/data/sys/stat.h-data: Add S_TYPEISTMO and isfdtype.
639         * conform/data/sys/types.h-data: Add pthread_barrier_t,
640         pthread_barrierattr_t, and pthread_spinlock_t.
641         * conform/data/sys/un.h-data: New file.
642         * conform/data/sys/utsname.h-data: New file.
643
644         * include/netdb.h (__gethostbyaddr_r): Fix types of first and second
645         parameter.
646         * inet/gethstbyad.c (gethostbyname): Likewise.
647         * inet/gethstbyad_t.c (gethostbyname_r): Likewise.
648         * inet/getipnodebyad.c (getipnodebyad): Likewise.
649         * nis/nss_nis/nis-hosts.c (_nss_nis_gethostbyaddr_r): Likewise.
650         * nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_gethostbyaddr_r):
651         Likewise.
652         * nscd/gethstbyad_r.c (gethostbyaddr_r): Likewise.
653         * nscd/nscd_gethst_r.c (__nscd_gethostbyaddr_r): Likewise.
654         * nscd/nscd_proto.h (__nscd_gethostbyaddr_r): Likewise.
655         * nss/nss_files/files-hosts.c (_nss_files_gethostbyaddr_r): Likewise.
656         * resolv/gethnamaddr.c (gethostbyname): Likewise.
657         * resolv/netdb.h (struct hostent): Fix type of h_length member.
658         (gethostbyaddr, getipnodebyaddr, gethostbyaddr_r): Fix types of first
659         and second parameter.
660
661         * wcsmbs/mbrtowc.c (__mbrtowc): Set end of buffer correctly if s
662         == NULL.
663
664 2000-04-29  Andreas Jaeger  <aj@suse.de>
665
666         * conform/data/arpa/inet.h-data: New file.
667
668 2000-04-28  Geoff Clare <gwc@unisoft.com>
669
670         * io/ftw.c: Set errno to ENOENT (instead of ENOTDIR) when the
671         path passed to ftw() or nftw() is an empty string.
672         Closes PR libc/1710.
673
674 2000-04-27  Ulrich Drepper  <drepper@redhat.com>
675
676         * localedata/Makefile (test-srcs): Add tst-mbswcs4 and tst-mbswcs5.
677         (do-tst-mbswcs): Add tst-mbswcs4 and tst-mbswcs5 to dependencies.
678         * localedata/tst-mbswcs.sh: Run tst-mbswcs4 and tst-mbswcs5.
679         * localedata/tst-mbswcs4.c: New file.
680         * localedata/tst-mbswcs5.c: New file.
681
682         * wcsmbs/wcrtomb.c (__wcrtomb): Set end of buffer correctly if s
683         == NULL.  Little optimization.
684
685         * elf/dl-init.c (_dl_init): Correct typo (DT_PREINIT_ARRAY not
686         DT_PREINIT_ARRAYSZ).
687         Reported by Jes Sorensen <Jes.Sorensen@cern.ch>.
688
689         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups): Handle
690         overflows in conversion from ASCII.
691
692 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
693
694         * Makeconfig (full_config_sysdirs): Renamed from full-config-sysdirs.
695         * Makerules (full_config_sysdirs): Likewise.
696         * MakeTAGS (full_config_sysdirs): Likewise.
697
698 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
699
700         * .cvsignore: Remove linuxthreads.
701         * po/.cvsignore: Remove *.pot.
702         * posix/glob/.cvsignore: Removed.
703         * sysdeps/unix/bsd/osf/.cvsignore: Removed.
704
705 2000-04-25  Andreas Jaeger  <aj@suse.de>
706
707         * conform/Makefile (distribute): Also distribute contents of
708         subdirectories.
709
710         * Makerules (no_deps): Remove abi-versions.h.
711
712         * nis/nis_print_group_entry.c: Include alloca.h for alloca prototype.
713
714 2000-04-25  Jakub Jelinek  <jakub@redhat.com>
715
716         * sysdeps/sparc/sparc64/elf/Dist: Remove.
717         * sysdeps/sparc/sparc64/elf/crtbegin.S: Remove.
718         * sysdeps/sparc/sparc64/elf/crtbeginS.S: Remove.
719         * sysdeps/sparc/sparc64/elf/crtend.S: Remove.
720         * sysdeps/sparc/sparc64/elf/crtendS.S: Remove.
721         * sysdeps/sparc/sparc64/elf/Makefile: Don't build crtbegin/crtend
722         objects.
723
724 2000-04-25  Thorsten Kukuk  <kukuk@suse.de>
725
726         * nscd/grpcache.c: Fix gr_name pointer [PR/1702].
727
728 2000-04-23  Bruno Haible  <haible@clisp.cons.org>
729
730         * intl/dcigettext.c: Define _GNU_SOURCE as early as possible.
731         * intl/l10nflist.c: Likewise.
732
733 2000-04-23  Bruno Haible  <haible@clisp.cons.org>
734
735         * intl/bindtextdom.c [!_LIBC]: Define __libc_rwlock_define,
736         __libc_rwlock_wrlock, __libc_rwlock_unlock as empty.
737         * intl/textdomain.c [!_LIBC]: Likewise.
738         * intl/dcigettext.c [!_LIBC]: Define __libc_rwlock_define_initialized,
739         __libc_rwlock_rdlock, __libc_rwlock_unlock as empty.
740         * intl/loadmsgcat.c (_nl_load_domain) [!_LIBC, !HAVE_ICONV]: Avoid
741         syntax error.
742
743 2000-04-23  Bruno Haible  <haible@clisp.cons.org>
744
745         * intl/dcigettext.c (_nl_find_msg): Do the plural treatment and
746         character set conversion also in the case the translation was found
747         after a hash collision or through binary search.  Store the maximum
748         index together with the converted message.  Use iconv() when available.
749         In case of out of memory during conversion, return the unconverted
750         translated string, not NULL.
751
752 2000-04-25  Jes Sorensen  <Jes.Sorensen@cern.ch>
753
754         * shlib-versions: Rename ia64 dynamic linker to ld-linux-ia64.so.1
755         to avoid name clashes with the ia32 linker.
756
757 2000-04-25  Jakub Jelinek  <jakub@redhat.com>
758
759         * sysdeps/alpha/dl-machine.h (_dl_start_user): Fix the _dl_skip_args
760         handling.
761
762 2000-04-27  Ulrich Drepper  <drepper@redhat.com>
763
764         * manual/string.texi: Document strcasestr, strchrnul, strtoimax,
765         strtoumax, strfry, and memfrob.
766         * manual/arith.texi: Document {,u}int*_t types, and strto{i,u}max.
767         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
768
769         * elf/soinit.c (__libc_global_ctors): Call __pthread_initialize_minimal
770         if this function is available.
771
772         * sysdeps/i386/i486/atomicity.h (exchange_and_add): Use uint32_t for
773         all values.
774
775 2000-04-27  Jakub Jelinek  <jakub@redhat.com>
776
777         * nss/getXXbyYY_r.c: Fix a typo in __old_getxxbyyy_r versioning.
778
779 2000-04-27  Ulrich Drepper  <drepper@redhat.com>
780
781         * localedata/Makefile (test-srcs); Add tst-mbswcs3.
782         Add rule to build tst-mbswcs3 before running tst-mbswcs.sh.
783         * localedata/tst-mbswcs.sh: Run tst-mbswcs3.
784         * localedata/tst-mbswcs3.c: New file.
785
786 2000-04-26  Ulrich Drepper  <drepper@redhat.com>
787
788         * wcsmbs/mbsnrtowcs.c: Correctly compute number of converted
789         characters.  Don't handle incomplete characters as errors.
790         * wcsmbs/mbsrtowcs.c: Don't handle incomplete characters as errors.
791         * localedata/Makefile (test-srcs): Add tst-mbswcs2.
792         Add rule to build tst-mbswcs2 before running tst-mbswcs.sh.
793         * localedata/tst-mbswcs.sh: Run tst-mbswcs2.
794         * localedata/tst-mbswcs2.c: New file.
795
796         * iconv/gconv_simple.c (utf8_internal_loop): Correctly reconstruct
797         stored character in state in UNPACK_BYTES macro.
798         * iconv/loop.c (SINGLE(LOOPFCT)): Make it actually work.  Correct
799         test for available characters, handle result of BODY code correctly.
800         * localedata/Makefile (test-srcs): Add tst-mbswcs1.
801         (distribute): Add tst-mbswcs.sh.
802         Add rule to run tst-mbswcs.sh.
803         * localedata/tst-mbswcs.sh: New file.
804         * localedata/tst-mbswcs1.c: New file.
805
806 2000-04-26  Jakub Jelinek  <jakub@redhat.com>
807
808         * nis/nis_callback.c (__nis_create_callback): Do failed memory
809         allocation fixups centrally, fix __builtin_expect call, return NULL
810         on failure, not NIS_NOMEMORY.
811
812 2000-04-27  Bruno Haible  <haible@clisp.cons.org>
813
814         * intl/ngettext.c [!_LIBC]: Fix definition of NGETTEXT.
815
816         * intl/loadinfo.h (internal_function): Define if not already defined.
817
818 2000-04-27  Andreas Jaeger  <aj@suse.de>
819
820         * intl/libintl.h: Fix typo, reported by Bruno Haible
821         <haible@clisp.cons.org>.
822
823 2000-04-25  Ulrich Drepper  <drepper@redhat.com>
824
825         * elf/dl-profile.c (_dl_mcount): Try to be thread-safe while not
826         setting the state to GMON_PROF_BUSY.
827
828 2000-04-24  Ulrich Drepper  <drepper@redhat.com>
829
830         * elf/dl-profile.c (_dl_start_profile): define all variables which
831         do not have to be global as local variables.
832
833         * nis/nis_callback.c (__nis_create_callback): Partially undo last
834         patch.  Keep needed tests for failed memory allocation.
835
836         * elf/dl-reloc.c (_dl_relocate_object): Add one more
837         __builtin_expect saying that we don't normally expect to profile.
838
839         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add
840         __builtin_expect where desirable.
841
842 2000-04-23  Ulrich Drepper  <drepper@redhat.com>
843
844         * manual/Makefile (chapters): Add syslog.
845         * manual/syslog.texi: New file.
846         * manual/math.texi: Fix references.
847         * manual/terminal.texi: Likewise.
848         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
849
850 2000-04-18  Jakub Jelinek  <jakub@redhat.com>
851
852         * posix/sys/wait.h: Define __WAIT_STATUS and the like either if
853         stdlib.h was not included or __USE_XOPEN not defined.
854
855 2000-04-23  Ulrich Drepper  <drepper@redhat.com>
856
857         * nss/Makefile (libnss_db-dbs): Remove stray backslash.
858         Patch by Zack Weinberg <zack@wolery.cumb.org>.
859
860 2000-04-22  Ulrich Drepper  <drepper@redhat.com>
861
862         * manual/examples/subopt.c (mount_opts): Add missing terminating
863         entry.
864         Reported by Michael Deutschmann <michael@talamasca.ocis.net>.
865
866         * assert/assert-perr.c: Include <stdlib.h> for abort prototype.
867         * libio/ftello.c: Likewise.
868         * libio/ftello64.c: Likewise.
869         * libio/ioftell.c: Likewise.
870         * sysdeps/generic/memrchr.c: Likewise.
871         * sysdeps/posix/libc_fatal.c: Likewise.
872         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
873         * misc/fstab.c: Include <string.h> for strcmp prototype.
874         * sysdeps/generic/ldsodefs.h: Likewise.
875         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
876         Patch by Kurt Roeckx <Q@ping.be>.
877
878         * nss/Makefile (libnss_db-dbs): Renamed from libnss_db-routines.
879         Remove db-open.  Change all uses.
880         (libnss_db-routines): Define as $(libnss_db-dbs) db-open.
881
882 2000-04-21  Jakub Jelinek  <jakub@redhat.com>
883
884         * sysdeps/unix/sysv/linux/alpha/msgctl.c (__syscall_msgctl): Declare.
885         * sysdeps/unix/sysv/linux/alpha/semctl.c (__syscall_semctl): Declare.
886         * sysdeps/unix/sysv/linux/alpha/shmctl.c (__syscall_shmctl): Declare.
887         * sysdeps/unix/sysv/linux/alpha/getrusage.S: Surround uses of $f28
888         with .set noat/at to shut up warnings.
889         * sysdeps/unix/sysv/linux/alpha/syscalls.list (__fstatfs64): Add alias.
890         * sysdeps/unix/sysv/linux/alpha/ioperm.c (init_iosys): Allow
891         compilation if __NR_pciconfig_iobase is not defined.
892         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (__fstatfs64):
893         Add alias.
894
895 2000-04-21  Ulrich Drepper  <drepper@redhat.com>
896
897         * manual/sysinfo.texi: Fix typo.
898         * manual/time.texi: Document timelocal, timegm, adjtimex, and stime.
899         Replace "high precision time" with "high accuracy clock".
900         Fix language.
901         Patches by Bryan Henderson <bryanh@giraffe-data.com>.
902
903         * nis/nis_findserv.c (__nis_findfastest): Improve memory handling.
904         * nis/nis_print_group_entry.c (nis_print_group_entry): Use alloca
905         instead of malloc.
906         * nis/nis_subr.c: Use __builtin_expect.
907         * nis/ypclnt.c: Likewise.
908         * nis/nis_getservlist.c: Likewise.
909         * nis/nis_creategroup.c: Likewise.
910
911         * nis/nis_callback.c (__nis_create_callback): Check result of
912         memory allocation.  Fix memory leaks.  Use __builtin_expect.
913         (__nis_destroy_callback): Fix memory leaks.
914
915 2000-04-21  Andreas Jaeger  <aj@suse.de>
916
917         * sysdeps/mips/elf/start.S: Use __PIC__ instead of PIC.
918         * sysdeps/mips/mips64/add_n.S: Likewise.
919         * sysdeps/mips/mips64/bsd-_setjmp.S: Likewise.
920         * sysdeps/mips/mips64/lshift.S: Likewise.
921         * sysdeps/mips/mips64/mul_1.S: Likewise.
922         * sysdeps/mips/mips64/rshift.S: Likewise.
923         * sysdeps/mips/mips64/setjmp.S: Likewise.
924         * sysdeps/mips/mips64/sub_n.S: Likewise.
925         * sysdeps/mips/mips64/submul_1.S: Likewise
926         * sysdeps/unix/mips/sysdep.S: Likewise.
927
928         * sysdeps/mips/dl-machine.h (elf_machine_got_rel): Remove strtab
929         and update comment.  The strtab from _dl_relocate_object can be
930         used.
931
932 2000-04-21  Ulrich Drepper  <drepper@redhat.com>
933
934         * iconv/iconv.c (iconv): Add __builtin_expect where useful.
935         * iconv/iconv_close.c (iconv_close): Likewise.
936         * iconv/iconv_open.c (iconv_open): Likewise.
937
938         * grp/putgrent.c (putgrent): Unlock steam if fprintf failed.  Add
939         __builtin_expect where useful.
940
941         * grp/initgroups.c (initgroups): Test for result of memory
942         allocation and punt if it fails.
943
944         * dirent/scandir.c (scandir): Add __builtin_expect where useful.
945         * grp/fgetgrent.c (fgetfrent): Likewise.
946         * grp/fgetgrent_r.c (__fgetgrent_r): Likewise.
947
948 2000-04-21  Jakub Jelinek  <jakub@redhat.com>
949
950         * libio/vasprintf.c: Include string.h to get memcpy prototype.
951
952 2000-04-20  Ulrich Drepper  <drepper@redhat.com>
953
954         * wcsmbs/wcsrtombs.c (__wcsrtombs): If output buffer is too small
955         don't search for NUL byte to decrement counter.
956         Reported by Ulrich.Brink@sap.com.
957
958         * iconv/gconv_simple.c: Define separate functions to convert from
959         UCS4/UCS4-LE to the internal encoding.
960         * iconv/gconv_builtin.h: Use separate functions to convert from
961         UCS4/UCS4-LE to the internal encoding.
962         * iconv/gconv_int.h: Declare __gconv_transform_ucs4_internal and
963         __gconv_transform_ucs4le_internal.
964
965         * iconv/gconv_simple.c (internal_utf8_loop): Correct check for
966         output buffer overflow.  Reported by Ulrich.Brink@sap.com.
967
968         * iconv/skeleton.c: Add some more __builtin_expect.
969         * iconv/loop.c: Likewise.
970
971 2000-03-08  H.J. Lu  <hjl@gnu.org>
972
973         * posix/regex.c (regex_compile): Correctly handle "\{" when
974         the RE_INTERVALS is set and the RE_NO_BK_BRACES bit is not set.
975
976 2000-04-20  Ulrich Drepper  <drepper@redhat.com>
977
978         * manual/stdio.texi: Give advise about handling error when using
979         stream functions.
980         Patch by Michael Deutschmann <michael@talamasca.ocis.net>.
981
982 2000-04-19  Jakub Jelinek  <jakub@redhat.com>
983
984         * locale/programs/ld-ctype.c (ctype_output): Set size of the idx
985         field to nelems * sizeof (uint32_t).
986         * locale/programs/ld-address.c (address_output): Align word fields
987         properly.
988         * locale/programs/ld-monetary.c (monetary_output): Likewise.
989         Don't restart idx pointers to idx end at the duo_int_curr_symbol
990         field.
991         Avoid giving arbitrary garbage in the crncystr field.
992         Use sizeof(uint32_t) instead of 4 for len in uno_valid_from,
993         uno_valid_to, duo_valid_from, duo_valid_to and conversion_rate
994         fields.
995         * locale/programs/ld-numeric.c (numeric_output): Likewise.
996         Don't restart idx pointers to idx end at the decimal_point_wc field.
997         * locale/programs/ld-time.c (time_output): week_1stday should be
998         word, not byte.  Align it properly.
999
1000 2000-04-19  H.J. Lu  <hjl@gnu.org>
1001
1002         * csu/gmon-start.c (_start): Declared as "extern void".
1003         (etext): Likewise.
1004
1005 2000-04-18  Andreas Jaeger  <aj@suse.de>
1006
1007         * manual/install.texi (Running make install): Don't mention utmpd
1008         anymore.
1009
1010 2000-04-18  Andreas Jaeger  <aj@suse.de>
1011
1012         * linuxthreads/Versions: Use ld instead of ld.so.
1013
1014         * elf/Makefile (ld-map): Use ld.map.
1015
1016         * Versions.def: Use ld instead of ld.so.
1017         * elf/Versions: Likewise.
1018         * sysdeps/mach/hurd/Versions: Likewise.
1019
1020 2000-04-20  Andreas Jaeger  <aj@suse.de>
1021
1022         * elf/rtld.c (print_statistics): Move ifndef further up.
1023         (_dl_start_final): Added HP_TIMINIG_NONAVAIL to avoid warnings.
1024         (dl_main): Likewise.
1025
1026 2000-04-18  Ulrich Drepper  <drepper@redhat.com>
1027
1028         * gmon/gmon.c: Add weak alias moncontrol for __moncontrol.
1029         * gmon/Versions: Move moncontrol to GLIBC_2.2.
1030
1031         * po/cs.po: Update from translation team.
1032
1033         * sysdeps/generic/updwtmp.c: Remove daemon support.
1034
1035         * login/Makefile (routines): Remove utmp_daemon.
1036
1037         * sysdeps/unix/sysv/aix/gethostname.c: Fix type of len argument.
1038         * sysdeps/unix/sysv/aix/access.c: Define ACC_INVOKER.
1039         * sysdeps/unix/sysv/aix/getegid.c: Define ID_EFFECTIVE.
1040         * sysdeps/unix/sysv/aix/geteuid.c: Likewise.
1041
1042         * elf/rtld.c: Display statitics option also if hp timing is not
1043         available.
1044
1045         * login/programs/connection.c: Removed.
1046         * login/programs/database.c Removed.
1047         * login/programs/error.c: Removed.
1048         * login/programs/request.c: Removed.
1049         * login/programs/xtmp.c: Removed.
1050         * login/programs/xtmp.h: Removed.
1051         * login/Makefile: Remove rules for utmpd.
1052         * login/README.utmpd: Removed.
1053         * login/utmp_daemon.c: Removed.
1054         * login/getutent_r.c: Remove references to daemon functions.
1055         * login/utmp-private.h (__libc_utmp_daemon_functions): Remove
1056         declaration.
1057
1058 2000-04-18  Andreas Jaeger  <aj@suse.de>
1059
1060         * shlib-versions (mips.*-.*-linux.*): Support only GLIBC 2.0 and
1061         2.2 for libnsl, libresolv, librt, libnss_*.
1062
1063         * elf/rtld.c (process_dl_debug): Remove obsolete comment.
1064
1065         * sysdeps/mips/dl-machine.h (elf_machine_rel): Fix relocation.
1066
1067 2000-04-18  Ulrich Drepper  <drepper@redhat.com>
1068
1069         * sysdeps/unix/sysv/aix/geteuid.c: Don't try to include <sys/id.h>.
1070         * sysdeps/unix/sysv/aix/getegid.c: Likewise.
1071         * sysdeps/unix/sysv/aix/xstat64.c: Define STX_NORMAL and STX_64.
1072         * sysdeps/unix/sysv/aix/xstat.c: Define STX_NORMAL.
1073         * sysdeps/unix/sysv/aix/sys/param.h: Define NGROUPS.
1074         * sysdeps/unix/sysv/aix/setreuid.c: Define ID_EFFECTIVE and ID_REAL.
1075         * sysdeps/unix/sysv/aix/setregid.c: Likewise.
1076         * sysdeps/unix/sysv/aix/setuid.c: Define ID_REAL.
1077         * sysdeps/unix/sysv/aix/setgid.c: Likewise.
1078         * sysdeps/unix/sysv/aix/seteuid.c: Define ID_EFFECTIVE.
1079         * sysdeps/unix/sysv/aix/setegid.c: Likewise.
1080         * sysdeps/unix/sysv/aix/sbrk.c: Update parameter type.
1081         * sysdeps/unix/sysv/aix/nanosleep.c (struct timestruc_t): Define
1082         it here.
1083         * sysdeps/unix/sysv/aix/msync.c: New file.
1084         * sysdeps/unix/sysv/aix/msgsnd.c: New file.
1085         * sysdeps/unix/sysv/aix/net/if.h: New file.
1086         * sysdeps/unix/sysv/aix/pipe.c: New file.
1087         * sysdeps/unix/sysv/aix/poll.c: New file.
1088         * sysdeps/unix/sysv/aix/rename.c: New file.
1089         * sysdeps/unix/sysv/aix/rmdir.c: New file.
1090         * sysdeps/unix/sysv/aix/select.c: New file.
1091         * sysdeps/unix/sysv/aix/semctl.c: New file.
1092         * sysdeps/unix/sysv/aix/semget.c: New file.
1093         * sysdeps/unix/sysv/aix/semop.c: New file.
1094         * sysdeps/unix/sysv/aix/sendto.c: New file.
1095         * sysdeps/unix/sysv/aix/setgroups.c: New file.
1096         * sysdeps/unix/sysv/aix/setpgid.c: New file.
1097         * sysdeps/unix/sysv/aix/setpgrp.c: New file.
1098         * sysdeps/unix/sysv/aix/setpriority.c: New file.
1099         * sysdeps/unix/sysv/aix/setrlimit.c: New file.
1100         * sysdeps/unix/sysv/aix/setrlimit64.c: New file.
1101         * sysdeps/unix/sysv/aix/setsid.c: New file.
1102         * sysdeps/unix/sysv/aix/setsockopt.c: New file.
1103         * sysdeps/unix/sysv/aix/shmat.c: New file.
1104         * sysdeps/unix/sysv/aix/shmctl.c: New file.
1105         * sysdeps/unix/sysv/aix/shmdt.c: New file.
1106         * sysdeps/unix/sysv/aix/shmget.c: New file.
1107         * sysdeps/unix/sysv/aix/sigaltstack.c: New file.
1108         * sysdeps/unix/sysv/aix/sigstack.c: New file.
1109         * sysdeps/unix/sysv/aix/socket.c: New file.
1110         * sysdeps/unix/sysv/aix/socketpair.c: New file.
1111         * sysdeps/unix/sysv/aix/speed.c: New file.
1112         * sysdeps/unix/sysv/aix/symlink.c: New file.
1113         * sysdeps/unix/sysv/aix/sync.c: New file.
1114         * sysdeps/unix/sysv/aix/tcgetattr.c: New file.
1115         * sysdeps/unix/sysv/aix/tcsetattr.c: New file.
1116         * sysdeps/unix/sysv/aix/times.c: New file.
1117         * sysdeps/unix/sysv/aix/ulimit.c: New file.
1118         * sysdeps/unix/sysv/aix/umask.c: New file.
1119         * sysdeps/unix/sysv/aix/unlink.c: New file.
1120         * sysdeps/unix/sysv/aix/ustat.c: New file.
1121         * sysdeps/unix/sysv/aix/utimes.c: New file.
1122
1123 2000-04-18  Andreas Jaeger  <aj@suse.de>
1124
1125         * manual/startup.texi (Environment Access): Fix putenv prototype
1126         according to recent changes.
1127         Reported by Andries Brouwer <Andries.Brouwer@cwi.nl>, closes
1128         PR libc/1692.
1129
1130         * elf/rtld.c (print_statistics): Added HP_TIMINIG_NONAVAIL where
1131         needed.
1132
1133 2000-04-18  Ulrich Drepper  <drepper@redhat.com>
1134
1135         * posix/Makefile (tests): Add tst-getaddrinfo.
1136         * posix/tst-getaddrinfo.c: New file.
1137
1138 2000-04-17  Ulrich Drepper  <drepper@redhat.com>
1139
1140         * manual/sysinfo.texi: Document that umount2 is not widely available.
1141
1142         * sysdeps/generic/hp-timing.h (HP_TIMING_NONAVAIL): Define to
1143         signal timing is not really implemented.
1144
1145 2000-04-17  Andreas Jaeger  <aj@suse.de>
1146
1147         * elf/rtld.c (process_dl_debug): Mention statistics in help message.
1148
1149 2000-04-17  Jakub Jelinek  <jakub@redhat.com>
1150
1151         * Makefile (install): Use slibdir and libdir instead of inst_slibdir
1152         and inst_libdir.
1153
1154 2000-04-17  Ulrich Drepper  <drepper@redhat.com>
1155
1156         * manual/intro.texi: Change reference from System Information to
1157         System Management.
1158         * manual/users.texi: Likewise.
1159         * manual/conf.texi: Likewise.
1160         * manual/sysinfo.texi: Document mount, umount, and umount2.
1161         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
1162
1163 2000-04-17  Jakub Jelinek  <jakub@redhat.com>
1164
1165         * sysdeps/ieee754/ldbl-128/printf_fphex.c (PRINT_FPHEX_LONG_DOUBLE):
1166         Create wnumstr as well as numstr to support wide character output
1167         correctly.
1168
1169 2000-04-15  Jakub Jelinek  <jakub@redhat.com>
1170
1171         * sysdeps/sparc/sparc64/Makefile: Remove sysdep-CFLAGS
1172         modification and move it...
1173         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: ...here.
1174         Add -melf64_sparc switch to $(LD) on sparc64-linux.
1175         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: Add -melf32_sparc
1176         switch to $(LD) on sparc-linux.
1177
1178 2000-04-17  Thorsten Kukuk  <kukuk@suse.de>
1179
1180         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile: Remove setresgid
1181         and setresuid from sysdep_routines.
1182
1183 2000-04-17  Ulrich Drepper  <drepper@redhat.com>
1184
1185         * manual/Makefile (chapters): Add resource.
1186
1187         * manual/time.texi: Move section on resources to...
1188         * manual/resource.texi: ...here.  New file.  Document ulimit, vlimit,
1189         and vtimes.
1190         * manual/setjmp.texi: Adjust back reference.
1191         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
1192
1193         * sysdeps/unix/sysv/aix/lxstat64.c: Uncomment STX_LINK and STX_64
1194         definition.
1195         * sysdeps/unix/sysv/aix/lxstat.c: Uncomment STX_LINK definition.
1196         * sysdeps/unix/sysv/aix/kill.c: Add copyright.
1197         * sysdeps/unix/sysv/aix/getuid.c: Define ID_REAL.
1198         * sysdeps/unix/sysv/aix/getgid.c: Define ID_REAL.
1199         * sysdeps/unix/sysv/aix/execve.c: Add copyright.
1200         * sysdeps/unix/sysv/aix/euidaccess.c: Add copyright.
1201         * sysdeps/unix/sysv/aix/close.c: Add copyright.
1202         * sysdeps/unix/sysv/aix/brk.c: Add copyright.
1203         * sysdeps/unix/sysv/aix/bits/errno.h: Add EAFNOSUPPORT.
1204         * sysdeps/unix/sysv/aix/access.c: Add copyright.
1205         * sysdeps/unix/sysv/aix/Makefile: Add some temporary definitions.
1206         * sysdeps/unix/sysv/aix/Implies: New file.
1207         * sysdeps/unix/sysv/aix/Versions: New file.
1208         * sysdeps/unix/sysv/aix/bind.c: New file.
1209         * sysdeps/unix/sysv/aix/bits/ioctl-types.h: New file.
1210         * sysdeps/unix/sysv/aix/bits/ioctls.h: New file.
1211         * sysdeps/unix/sysv/aix/bits/poll.h: New file.
1212         * sysdeps/unix/sysv/aix/bits/termios.h: New file.
1213         * sysdeps/unix/sysv/aix/chdir.c: New file.
1214         * sysdeps/unix/sysv/aix/chmod.c: New file.
1215         * sysdeps/unix/sysv/aix/chroot.c: New file.
1216         * sysdeps/unix/sysv/aix/creat.c: New file.
1217         * sysdeps/unix/sysv/aix/dl-close.c: New file.
1218         * sysdeps/unix/sysv/aix/dl-open.c: New file.
1219         * sysdeps/unix/sysv/aix/dl-sym.c: New file.
1220         * sysdeps/unix/sysv/aix/fchdir.c: New file.
1221         * sysdeps/unix/sysv/aix/fchmod.c: New file.
1222         * sysdeps/unix/sysv/aix/getgroups.c: New file.
1223         * sysdeps/unix/sysv/aix/gethostname.c: New file.
1224         * sysdeps/unix/sysv/aix/getpriority.c: New file.
1225         * sysdeps/unix/sysv/aix/getrlimit.c: New file.
1226         * sysdeps/unix/sysv/aix/getrlimit64.c: New file.
1227         * sysdeps/unix/sysv/aix/getrusage.c: New file.
1228         * sysdeps/unix/sysv/aix/link.c: New file.
1229         * sysdeps/unix/sysv/aix/madvise.c: New file.
1230         * sysdeps/unix/sysv/aix/mkdir.c: New file.
1231         * sysdeps/unix/sysv/aix/mknod.c: New file.
1232         * sysdeps/unix/sysv/aix/mprotect.c: New file.
1233         * sysdeps/unix/sysv/aix/msgctl.c: New file.
1234         * sysdeps/unix/sysv/aix/msgget.c: New file.
1235         * sysdeps/unix/sysv/aix/msgrcv.c: New file.
1236
1237 2000-04-17  Andreas Jaeger  <aj@suse.de>
1238
1239         * sysdeps/mips/dl-machine.h (elf_machine_got_rel): Optimize a bit
1240         as suggested by Ulrich Drepper.
1241         (__dl_runtime_resolve): Remove unused variable, initialize sym
1242         directly.
1243         (RTLD_START): Document OFFSET_GP_GOT.
1244         (OFFSET_GP_GOT): New magic value.
1245         (elf_mips_got_from_gpreg): Use OFFSET_GP_GOT.
1246         (elf_machine_got_rel): Only declare strtab if needed.
1247         (elf_machine_relplt): Removed, it's not needed.
1248         (_dl_runtime_resolve): Fix \n for a comment, safe gp and not pc.
1249
1250         * sysdeps/mips/add_n.S: Add newline at EOF.
1251         * sysdeps/mips/rshift.S: Likewise.
1252         * sysdeps/mips/mul_1.S: Likewise.
1253         * sysdeps/mips/lshift.S: Likewise.
1254         * sysdeps/mips/addmul_1.S: Likewise.
1255
1256 2000-04-17  Ulrich Drepper  <drepper@redhat.com>
1257
1258         * sysdeps/powerpc/fpu/s_isnan.c: Pretty printing.
1259
1260         * elf/dl-reloc.c (_dl_relocate_object): Add more __builtin_expect.
1261         * elf/dl-lookup.c: Likewise.
1262         * elf/dl-init.c (_dl_init): Likewise.
1263         * elf/dl-fini.c (_dl_fini): Likewise.
1264         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
1265         * elf/dl-close.c (_dl_close): Likewise.
1266         * elf/rtld.c (_dl_start_final): Likewise.
1267
1268         * elf/dl-lookup.c (add_dependency): Correct __builtin_expect use.
1269
1270 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
1271
1272         * csu/Makefile ($(objpfx)version-info.h): Get OS name from uname and
1273         only fall back on using Linux.
1274
1275         * elf/dl-version.c (_dl_check_map_versions): New argument trace_mode.
1276         Before testing versions check that we actually loaded the object
1277         and whether we are in trace mode.  If not loaded during tracing don't
1278         test versions in this object.
1279         (_dl_check_all_versions): Take new parameter and pass to
1280         _dl_check_map_versions.
1281         * sysdeps/generic/ldsodefs.h: Update prototypes for
1282         _dl_check_all_versions and _dl_check_map_versions.
1283         * elf/rtld.c (struct version_check_args): Add dotrace.
1284         (version_check_doit): Pass args->dotrace to _dl_check_all_versions.
1285         (dl_main): Pass info about trace mode to version_check_doit.
1286         * elf/dl-open.c (dl_open_worker): Pass zero as new argument to
1287         _dl_check_all_versions.
1288
1289         * manual/users.texi (XPG Functions): Document utmpxname, getutmp,
1290         and getutmpx.
1291         Patch by Bryan Henderson <bryanh@giraffe-data.com>.
1292
1293         * manual/argp.texi: Document index parameter of argp_parse.
1294         Fix typo.
1295         Reported by Andrew Schulman <SCHULMAN.ANDREW@epamail.epa.gov>.
1296
1297 2000-04-14  Andreas Jaeger  <aj@suse.de>
1298
1299         * sysdeps/unix/sysv/linux/shm_open.c: Include linux_fsinfo for
1300         SHMFS_SUPER_MAGIC.  Remove definition of SHMFS_SUPER_MAGIC.
1301
1302         * sysdeps/unix/sysv/linux/linux_fsinfo.h (SHMFS_SUPER_MAGIC): Added.
1303
1304 2000-04-15  Ulrich Drepper  <drepper@redhat.com>
1305
1306         * sysdeps/unix/sysv/linux/alpha/adjtime.c: Fix typo in
1307         compat_symbol call for old adjtime.
1308
1309         * sysdeps/alpha/dl-machine.h (RTLD_START): Rewrite for new init
1310         function interface.  Patch by Richard Henderson <rth@cygnus.com>.
1311
1312         * posix/Makefile (headers): Add spawn.h.
1313         (distribute): Add spawn_int.h.
1314         (routines): Add spawn_faction_init, spawn_faction_destroy,
1315         spawn_faction_addclose, spawn_faction_addopen, spawn_faction_adddup2,
1316         spawnattr_init, spawnattr_destroy, spawnattr_getdefault,
1317         spawnattr_setdefault, spawnattr_getflags, spawnattr_setflags,
1318         spawnattr_getpgroup, spawnattr_setpgroup, spawn, spawnp, and spawni.
1319         * posix/Versions [libc] (GLIBC_2.2): Add posix_spawn_file_actions_init,
1320         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addclose,
1321         posix_spawn_file_actions_addopen, posix_spawn_file_actions_adddup2,
1322         posix_spawnattr_init, posix_spawnattr_destroy,
1323         posix_spawnattr_getdefault, posix_spawnattr_setdefault,
1324         posix_spawnattr_getflags, posix_spawnattr_setflags,
1325         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup, posix_spawn,
1326         and posix_spawnp.
1327         * posix/spawn.c: New file.
1328         * posix/spawn.h: New file.
1329         * posix/spawn_faction_addclose.c: New file.
1330         * posix/spawn_faction_adddup2.c: New file.
1331         * posix/spawn_faction_addopen.c: New file.
1332         * posix/spawn_faction_destroy.c: New file.
1333         * posix/spawn_faction_init.c: New file.
1334         * posix/spawn_int.h: New file.
1335         * posix/spawnattr_destroy.c: New file.
1336         * posix/spawnattr_getdefault.c: New file.
1337         * posix/spawnattr_getflags.c: New file.
1338         * posix/spawnattr_getpgroup.c: New file.
1339         * posix/spawnattr_getschedparam.c: New file.
1340         * posix/spawnattr_getschedpolicy.c: New file.
1341         * posix/spawnattr_getsigmask.c: New file.
1342         * posix/spawnattr_init.c: New file.
1343         * posix/spawnattr_setdefault.c: New file.
1344         * posix/spawnattr_setflags.c: New file.
1345         * posix/spawnattr_setpgroup.c: New file.
1346         * posix/spawnattr_setschedparam.c: New file.
1347         * posix/spawnattr_setschedpolicy.c: New file.
1348         * posix/spawnattr_setsigmask.c: New file.
1349         * posix/spawni.c: New file.
1350         * posix/spawnp.c: New file.
1351
1352         * sysdeps/mach/hurd/bits/posix_opt.h: Add _POSIX_SPAWN.
1353         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
1354
1355 2000-04-14  Ulrich Drepper  <drepper@redhat.com>
1356
1357         * malloc/Versions [libc] (GLIBC_2.2): Add posix_memalign.
1358         * malloc/malloc.c: Implement posix_memalign for glibc.
1359         * include/stdlib.h: Add prototype for __posix_memalign.
1360         * stdlib/stdlib.h: Add prototype for posix_memalign.
1361
1362 2000-04-14  Andreas Jaeger  <aj@suse.de>
1363
1364         * sysdeps/mips/dl-machine.h (elf_machine_got_rel): Initialize
1365         symidx correctly.
1366         (elf_machine_got_rel): Cast sym correctly.
1367
1368         * sysdeps/mips/add_n.S: Use __PIC__, add end directive.
1369         * sysdeps/mips/addmul_1.S: Likewise.
1370         * sysdeps/mips/lshift.S: Likewise.
1371         * sysdeps/mips/mul_1.S: Likewise.
1372         * sysdeps/mips/rshift.S: Likewise.
1373         * sysdeps/mips/sub_n.S: Likewise.
1374         * sysdeps/mips/submul_1.S: Likewise.
1375
1376         * stdlib/stdlib.h: Fix typo in comment.
1377
1378         * shlib-versions (mips.*-.*-linux.*): Support only GLIBC 2.0 and
1379         2.2 for libdl, ld and libm.
1380
1381         * sysdeps/generic/madvise.c: Fix typos.
1382
1383         * sysdeps/unix/sysv/linux/mips/clone.S (error): Use __PIC__.
1384
1385         * sysdeps/mips/bits/setjmp.h: Remove K&R compatibility.
1386
1387         * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Silence gcc
1388         warnings.
1389
1390 2000-04-14  Ulrich Drepper  <drepper@redhat.com>
1391
1392         * include/sys/statfs.h: Add prototypes for __statfs64 and __fstatfs64.
1393         * sysdeps/generic/fstatfs64.c (__fstatfs64): Renamed to fstatfs64.
1394         Make old name weak alias.
1395         * sysdeps/unix/sysv/linux/fstatfs64.c: Likewise.
1396         * sysdeps/generic/statfs64.c (__statfs64): Renamed to statfs64.
1397         Make old name weak alias.
1398         * sysdeps/unix/sysv/linux/statfs64.c: Likewise.
1399
1400         * io/Makefile (routines): Add posix_fadvise, posix_fadvise64,
1401         posix_fallocate, and posix_fallocate64.
1402         * io/Versions [libc] (GLIBC_2.2): Add posix_fadvise, posix_fadvise64,
1403         posix_fallocate, and posix_fallocate64.
1404         * io/fcntl.h: Declare posix_fadvise, posix_fadvise64,
1405         posix_fallocate, and posix_fallocate64.
1406         * sysdeps/generic/fadvise.c: New file.
1407         * sysdeps/generic/fadvise64.c: New file.
1408         * sysdeps/generic/fallocate.c: New file.
1409         * sysdeps/generic/fallocate64.c: New file.
1410         * sysdeps/posix/fallocate.c: New file.
1411         * sysdeps/posix/fallocate64.c: New file.
1412         * sysdeps/generic/bits/fcntl.h: Define POSIX_FADV_NORMAL,
1413         POSIX_FADV_RANDOM, POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED,
1414         POSIX_FADV_DONTNEED, and POSIX_FADV_NOREUSE.
1415         * sysdeps/mach/hurd/bits/fcntl.h: Likewise.
1416         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
1417         * sysdeps/unix/sysv/linux/bits/fcntl.h: Likewise.
1418         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
1419         * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Likewise.
1420         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
1421
1422         * sysdeps/generic/madvise.c (__madvise): Renamed to posix_madvise.
1423         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
1424
1425 2000-04-13  Ulrich Drepper  <drepper@redhat.com>
1426
1427         * misc/Versions [libc] (GLIBC_2.2): Add posix_madvice.
1428         * misc/sys/mman.h (posix_madvise): Add prototype.
1429         * sysdeps/generic/madvise.c (madvise): Renamed to __madvise.  Make
1430         old name and posix_madvise weak aliases.
1431         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
1432         * sysdeps/generic/bits/mman.h: Add POSIX_MADV_* constants.
1433         * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Likewise.
1434         * sysdeps/unix/sysv/linux/arm/bits/mman.h: Likewise.
1435         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Likewise.
1436         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
1437         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
1438
1439 2000-04-13  Andreas Jaeger  <aj@suse.de>
1440
1441         * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Handle symbol
1442         versioning.
1443         (elf_machine_got_rel): Only add runtime display if needed.
1444         (elf_machine_got_rel): Handle symbol versioning.
1445
1446 2000-04-13  Andreas Jaeger  <aj@suse.de>
1447
1448         * sysdeps/unix/sysv/linux/mips/clone.S: Fix function.
1449
1450         * sysdeps/unix/mips/pipe.S: Reorder instructions since .reorder is
1451         default.
1452
1453         * sysdeps/mips/__longjmp.c (__longjmp): Use $25 to fix problems
1454         with some applications.
1455         Patches by Ralf Baechle <ralf@uni-koblenz.de>.
1456
1457         * sysdeps/mips/bsd-setjmp.S: Use __PIC__.
1458         * sysdeps/mips/bsd-_setjmp.S: Likewise.
1459         * sysdeps/mips/setjmp.S: Likewise.
1460
1461         * sysdeps/unix/sysv/linux/mips/pipe.S: New file.
1462
1463 2000-04-13  Ulrich Drepper  <drepper@redhat.com>
1464
1465         * posix/globtest.sh: Work around inconsistency with expanding ~/
1466         in shell (PR libc/1690).  Reported by patsmith@pobox.com.
1467
1468 2000-04-12  Ulrich Drepper  <drepper@redhat.com>
1469
1470         * posix/getconf.c: Add support for many more POSIX options.
1471         * sysdeps/posix/sysconf.c: Likewise.
1472         * sysdeps/generic/bits/confname.h: Add many more POSIX options.
1473         * sysdeps/mach/hurd/bits/posix_opt.h: Add _POSIX_REGEXP and
1474         _POSIX_SHELL.
1475         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Likewise.
1476         * sysdeps/unix/sysv/linux/i386/bits/time.h: Rename __CLOCK_HIGHRES to
1477         CLOCK_PROCESS_CPUTIME_ID.  Add define CLOCK_MONOTONIC and
1478         CLOCK_THREAD_CPUTIME_ID.
1479         * sysdeps/unix/i386/clock_getcpuclockid.c: Set *clock_id to
1480         CLOCK_PROCESS_CPUTIME_ID.
1481         * sysdeps/unix/i386/i586/clock_getres.c: Change for renaming of
1482         __CLOCK_HIGHRES to CLOCK_PROCESS_CPUTIME_ID.  Handle
1483         CLOCK_THREAD_CPUTIME_ID and CLOCK_MONOTONIC the same.
1484         * sysdeps/unix/i386/i586/clock_gettime.c: Likewise.
1485
1486         * malloc/Makefile (tests): Add tst-calloc.
1487         * malloc/tst-calloc.c: New file.
1488
1489         * sysdeps/arm/libm-test-ulps: New file.
1490
1491         * malloc/malloc.c: Undo all of today's changes.
1492
1493         * locale/programs/locale.c (show_info): Don't try to look into
1494         data for LC_ALL (there is none).
1495
1496         * malloc/malloc.c (cALLOc): Clear only what the user asked for and
1497         avoid writing over boundary.
1498         Patch by Greg McGary <gkm@eng.ascend.com>.
1499
1500         * sysdeps/arm/memprof.h: New file.
1501
1502 2000-04-12  Andreas Jaeger  <aj@suse.de>
1503
1504         * sysdeps/unix/i386/i586/clock_gettime.c: Fix typo.
1505
1506         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c: Include <string.h>
1507         for memmem declaration.
1508
1509 2000-04-12  Ulrich Drepper  <drepper@redhat.com>
1510
1511         * sysdeps/unix/clock_gettime.c (clock_gettime): Initialize retval
1512         to -1.
1513         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
1514
1515         * libio/iopopen.c (_IO_new_proc_open): Close pipes in case the
1516         mode is invalid.
1517         * libio/oldiopopen.c (_IO_old_proc_open): Likewise.
1518         Patch by Bart Veer <bartv@redhat.com>.
1519
1520         * sysdeps/arm/dl-machine.h (RTLD_START): Rewrite for new init
1521         function interface.
1522
1523 2000-04-11  Andreas Jaeger  <aj@suse.de>
1524
1525         * sysdeps/mips/dl-machine.h: Update some comments.
1526         (ELF_MACHINE_ALIGN_MASK): Removed, it's not needed.
1527
1528 2000-04-11  Ulrich Drepper  <drepper@redhat.com>
1529
1530         * sysdeps/unix/sysv/linux/bits/posix_opt.h: Add
1531         _POSIX_SHARED_MEMORY_OBJECTS.
1532
1533         * rt/Makefile (tests): Add tst-shm.
1534         Add rules to generate tst-shm.
1535         * rt/tst-shm.c: New file.
1536
1537         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Set FD_CLOEXEC
1538         for descriptor.
1539
1540         * misc/sys/mman.h: Add prototypes for shm_open and shm_unlink.
1541         * rt/Makefile (librt-routines): Add shm_open and shm_unlink.
1542         * rt/Versions [librt] (GLIBC_2.2): Add shm_open and shm_unlink.
1543         * sysdeps/generic/shm_open.c: New file.
1544         * sysdeps/generic/shm_unlink.c: New file.
1545         * sysdeps/unix/sysv/linux/shm_open.c: New file.
1546         * sysdeps/unix/sysv/linux/shm_unlink.c: New file.
1547         * sysdeps/unix/sysv/linux/Versions [libc] (GLIBC_2.2): Export
1548          __endmntent, __getmntent_r, __setmntent, and __statfs.
1549
1550         * libio/vasprintf.c (_IO_vasprintf): Try to avoid memory
1551         fragmentation by allocating new memory at the end instead of
1552         reallocating.
1553
1554         * posix/globtest.sh: Fix last change.
1555
1556 2000-04-10  Philip Blundell  <philb@gnu.org>
1557
1558         * sysdeps/unix/sysv/linux/bits/in.h (IPV6_JOIN_GROUP,
1559         IPV6_LEAVE_GROUP): New names for IPV6_ADD_MEMBERSHIP,
1560         IPV6_DROP_MEMBERSHIP.
1561         * sysdeps/generic/bits/in.h (IPV6_JOIN_GROUP, IPV6_LEAVE_GROUP):
1562         Likewise.
1563
1564 2000-04-11  Ulrich Drepper  <drepper@redhat.com>
1565
1566         * elf/readlib (process_file): Close streams in case of an error.
1567
1568 2000-04-09  Andreas Jaeger  <aj@suse.de>
1569
1570         * elf/readlib.c (process_file): Check if file is big enough to
1571         contain aout and ELF headers.
1572         Reported by Reinhard Moosauer <RMoosauer@steinecker.com>.
1573
1574 2000-04-10  Jes Sorensen  <Jes.Sorensen@cern.ch>
1575
1576         * elf/dl-fini.c: Include alloca.h to get proper prototype for alloca().
1577
1578 2000-04-11  Ulrich Drepper  <drepper@redhat.com>
1579
1580         * test-skeleton.c (main): If STDOUT_UNBUFFERED is defined, make stdout
1581         stream unbuffered.
1582         * rt/Makefile (tests): Add tst-clock.
1583         Add rules to build tst-clock.
1584         * rt/tst-clock.c: New file.
1585         * sysdeps/unix/i386/i586/clock_getres.c: Correct expression to decide
1586         about initialization of nsec.
1587         * sysdeps/unix/i386/i586/clock_gettime.c: Correct expression to decide
1588         about initialization of freq.  Set retval to zero if successful.
1589         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c: Cache result.
1590
1591 2000-04-10  Ulrich Drepper  <drepper@redhat.com>
1592
1593         * Versions.def (librt): Add GLIBC_2.2.
1594         * rt/Makefile (librt-routines): Add get_clockfreq, clock_getcpuclockid,
1595         clock_getres, clock_gettime, clock_settime, timer_create, timer_delete,
1596         timer_getoverr, timer_gettime, and timer_settime.
1597         * rt/Versions [librt] (GLIBC_2.2): Add clock_getres, clock_gettime,
1598         clock_settime, timer_create, timer_delete, timer_getoverrun,
1599         timer_gettime, and timer_settime.
1600         * sysdeps/generic/clock_getcpuclockid.c: New file.
1601         * sysdeps/generic/get_clockfreq.c: New file.
1602         * sysdeps/unix/i386/clock_getcpuclockid.c: New file.
1603         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c: New file.
1604         * sysdeps/mach/hurd/i386/bits/time.h: New file.
1605         * sysdeps/unix/i386/i586/clock_getres.c: New file.
1606         * sysdeps/unix/i386/i586/clock_gettime.c: New file.
1607         * sysdeps/unix/i386/i686/Implies: New file.
1608         * sysdpes/unix/sysv/linux/i386/bits/time.h: New file.
1609         * time/Makefile (routines): Move clock_getres, clock_gettime,
1610         clock_settime, timer_create, timer_delete, timer_getoverr,
1611         timer_gettime, and timer_settime to rt/Makefile.
1612         * time/Versions [libc] (GLIBC_2.2): Remove clock_getres, clock_gettime,
1613         clock_settime, timer_create, timer_delete, timer_getoverrun,
1614         timer_gettime, and timer_settime.
1615         * time/time.h: Define pid_t.  Add prototype for clock_getcpuclockid.
1616
1617         * sysdeps/mach/hurd/bits/time.h: Drop K&R compatibility.  Use __const__
1618         and not const as attribute name.
1619
1620 2000-04-10  Thorsten Kukuk  <kukuk@suse.de>
1621
1622         * elf/cache.c (save_cache): Make sure /etc/ld.so.cache is mode 644.
1623
1624 2000-04-10  Andreas Schwab  <schwab@suse.de>
1625
1626         * posix/globtest.sh: Skip tests that depend on unreadable
1627         directories if run as root.
1628
1629 2000-04-10  Ulrich Drepper  <drepper@redhat.com>
1630
1631         * sysdeps/unix/clock_settime.c (clock_settime): Test tv_nsec value
1632         for correct range.  From code by Kaz Kylheku <kaz@ashi.footprints.net>.
1633
1634 2000-04-09  Ulrich Drepper  <drepper@redhat.com>
1635
1636         * sysdeps/unix/clock_gettime.c: New file.
1637         * sysdeps/unix/clock_settime.c: New file.
1638         * sysdeps/posix/clock_getres.c: New file.
1639
1640         * conform/data/ftw.h-data: Add allow-header sys/stat.h.
1641
1642         * sysdeps/unix/sysv/linux/getdents.c (__getdents): Avoid initial
1643         lseek call be passing in a buffer which never allow a successful
1644         first getdents syscall if not at leas the initial entry can be
1645         stored in the user buffer.
1646
1647         * localedata/Makefile: Add rules to clean up directories created by
1648         new strfmon tests.
1649
1650 2000-04-09  Geoff Clare  <gwc@unisoft.com>
1651
1652         * localedata/tst-fmon.data: Added new tests for strfmon()
1653         using test locales with all combinations of cs_precedes,
1654         sign_posn and sep_by_space.
1655         * localedata/tst-fmon.sh: Updated to support the new tests.
1656         * localedata/tst-fmon-locales/tstfmon_n01y12: New file containing
1657         the localedef source for the new strfmon() test locale.
1658         * localedata/tst-fmon-locales/tstfmon_n02n40: Likewise.
1659         * localedata/tst-fmon-locales/tstfmon_n10y31: Likewise.
1660         * localedata/tst-fmon-locales/tstfmon_n11y41: Likewise.
1661         * localedata/tst-fmon-locales/tstfmon_n12y11: Likewise.
1662         * localedata/tst-fmon-locales/tstfmon_n20n32: Likewise.
1663         * localedata/tst-fmon-locales/tstfmon_n30y20: Likewise.
1664         * localedata/tst-fmon-locales/tstfmon_n41n00: Likewise.
1665         * localedata/tst-fmon-locales/tstfmon_y01y10: Likewise.
1666         * localedata/tst-fmon-locales/tstfmon_y02n22: Likewise.
1667         * localedata/tst-fmon-locales/tstfmon_y22n42: Likewise.
1668         * localedata/tst-fmon-locales/tstfmon_y30y21: Likewise.
1669         * localedata/tst-fmon-locales/tstfmon_y32n31: Likewise.
1670         * localedata/tst-fmon-locales/tstfmon_y40y00: Likewise.
1671         * localedata/tst-fmon-locales/tstfmon_y42n21: Likewise.
1672
1673         * stdlib/strfmon.c: Correct problems with missing or extra
1674         spaces for unusual combinations of sign_posn and sep_by_space.
1675         Improved left-precision alignment code.
1676
1677 2000-04-07  Andreas Jaeger  <aj@suse.de>
1678
1679         * posix/Makefile (CFLAGS-regex.c): Remove DEBUG.
1680
1681 2000-04-10  Andreas Jaeger  <aj@suse.de>
1682
1683         * intl/Makefile: Don't run do-gettext-test when cross-compiling.
1684
1685 2000-04-09  Ulrich Drepper  <drepper@redhat.com>
1686
1687         Implement handling of restartable conversion functions according to
1688         ISO C.
1689         * iconv/gconv.h (__gconv_fct): Add additional parameter.
1690         * iconv/gconv_int.h (__BUILTIN_TRANS): Likewise.
1691         * iconv/gconv.c: Pass additional parameter to conversion function.
1692         * iconv/gconv_simple.c (internal_ucs4_loop_single): New function.
1693         (internal_ucs4le_loop_single): New function.
1694         (__gconv_transform_ascii_internal): Define ONE_DIRECTION.
1695         (__gconv_transform_internal_ascii): Likewise.
1696         (__gconv_transform_internal_utf8): Likewise.
1697         (__gconv_transform_utf8_internal): Likewise.
1698         (__gconv_transform_ucs2_internal): Likewise.
1699         (__gconv_transform_internal_ucs2): Likewise.
1700         (__gconv_transform_ucs2reverse_internal): Likewise.
1701         (__gconv_transform_internal_ucs2reverse): Likewise.
1702         (internal_ucs4le_loop_unaligned): Before return
1703         __GCONV_INCOMPLETE_INPUT check that the remaining bytes really form
1704         a valid character.  Otherwise return __GCONV_ILLEGAL_INPUT.
1705         (__gconv_transform_utf8_internal): Define STORE_REST and UNPACK_BYTES.
1706         * iconv/loop.c: Fit in definition of function to convert one character
1707         for processing of left-over bytes from the state object.
1708         * iconv/skeleton.c (gconv): Rename inbuf to inptrp and inbufend to
1709         inend to match names in loop functions.
1710         (RESET_INPUT_BUFFER): Change apprpriately.
1711         (gconv): If needed, call function to process bytes from the state
1712         object.  Similar at the end: store left over bytes if input is
1713         incomplete.
1714         Take extra argument and add new argument to all calls of the
1715         conversion function.
1716         * iconvdata/iso-2022-cn.c: Adjust numeric values used to store
1717         information in the state object to not conflict with length count.
1718         * iconvdata/iso-2022-jp.c: Likewise.
1719         * iconvdata/iso-2022-kr.c: Likewise.
1720         * iconvdata/unicode.c: Adjust for change change in parameters of
1721         skeleton function.
1722         * iconvdata/utf-16.c: Likewise.
1723         * libio/iofwide.c: Add new parameter to all calls of conversion
1724         function.
1725         * wcsmbs/btowc.c: Likewise.
1726         * wcsmbs/mbrtowc.c: Likewise.
1727         * wcsmbs/mbsnrtowcs.c: Likewise.
1728         * wcsmbs/mbsrtowcs.c: Likewise.
1729         * wcsmbs/wcrtomb.c: Likewise.
1730         * wcsmbs/wcsnrtombs.c: Likewise.
1731         * wcsmbs/wcsrtombs.c: Likewise.
1732         * wcsmbs/wctob.c: Likewise.
1733
1734         * iconvdata/gbgbk.c: Always define MAX_NEEDED_OUTPUT and
1735         MAX_NEEDED_INPUT.
1736
1737 2000-04-07  Andreas Jaeger  <aj@suse.de>
1738
1739         * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h: Updated for
1740         newer kernels.
1741
1742 2000-04-07  Ulrich Drepper  <drepper@redhat.com>
1743
1744         * wcsmbs/wchar.h (__mbstate_t): Rename elements.  Make __value
1745         element a union to allow byte access.
1746         * iconvdata/iso-2022-cn.c: Adjust for change of element name in
1747         mbstate_t.
1748         * iconvdata/iso-2022-jp.c: Likewise.
1749         * iconvdata/iso-2022-kr.c: Likewise.
1750         * wcsmbs/mbsinit.c: Likewise.
1751         * stdlib/mblen.c: Likewise.
1752         * stdio-common/printf-parse.h: Likewise.
1753
1754 2000-04-06  Ulrich Drepper  <drepper@redhat.com>
1755
1756         * sysdeps/unix/sysv/linux/getdents.c (__getdents): The Linux
1757         kernel does not allow relative seeks on descriptors associated
1758         with directories.  Go back to get the position in the directory
1759         every time we enter the function.  Return -1 and set errno if one
1760         entry could be read from the kernel but does not fit into the
1761         buffer passed in by the user.
1762
1763         * locale/programs/charmap.c (charmap_new_char): Add parameter step.
1764         Support ..(2).. ellipsis.
1765         (parse_charmap): Recognize ..(2).. etc and pass step down.
1766         Correctly generate names for UCS4 characters.
1767
1768         * locale/programs/ld-ctype.c (struct translit_ignore_t): Add step.
1769         (ctype_finish): We know the wide character value for <SP>,
1770         don't search.
1771         (charclass_symbolic_ellipsis): Handle ..(2).. ellipsis.
1772         (charclass_ucs4_ellipsis): Likewise.
1773         (read_translit_ignore_entry): Store ellipsis step.
1774         (ctype_read): Recognize ..(2).. etc and pass step down.
1775
1776         * locale/programs/linereader.c (lr_token): When seeing comment
1777         character ignore only rest of line in sources but stop at escaped
1778         newline.
1779         Recognize ..(2).. and ....(2).....
1780
1781         * locale/programs/locfile-token.h (enum token_t): Add tok_ellipsis2_2
1782         and tok_ellipsis4_2.
1783
1784 2000-04-06  Andreas Jaeger  <aj@suse.de>
1785
1786         * sysdeps/unix/sysv/linux/alpha/Dist: init-first.h has been
1787         removed, remove it here also.
1788         * sysdeps/unix/sysv/linux/arm/Dist: Likewise.
1789         * sysdeps/unix/sysv/linux/powerpc/Dist: Likewise.
1790         * sysdeps/unix/sysv/linux/sparc/sparc32/Dist: Likewise.
1791         * sysdeps/unix/sysv/linux/sparc/sparc64/Dist: Likewise.
1792
1793 2000-04-06  Jakub Jelinek  <jakub@redhat.com>
1794
1795         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Don't
1796         include bits/sigcontext.h.
1797         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
1798
1799 2000-04-06  Ulrich Drepper  <drepper@redhat.com>
1800
1801         * locale/programs/ld-collate.c (collate_read): Handle ellipsis in
1802         collation symbol definition.  Value in quivalence definition must
1803         be defined, don't check that it is not.
1804
1805         * locale/programs/charmap.c (parse_charmap): Recognize <Uxxxx>
1806         values as character names.
1807
1808         * locale/programs/ld-ctype.c (get_character): Handle missing
1809         repertoire map correctly.
1810
1811 2000-04-05  Cristian Gafton  <gafton@redhat.com>
1812
1813         * ctype/ctype.h (__isctype_l): Define even if not __OPTIMIZE__
1814         because it is used in generic code.
1815         * wctype/wctrans.c: Define __ctype32_toupper and __ctype32_tolower.
1816         * wcsmbs/wcwidth.h: Declare __ctype32_b.
1817         * intl/gettext.c: Include <locale.h>.
1818         * intl/ngettext.c: Likewise.
1819
1820 2000-04-05  Jakub Jelinek  <jakub@redhat.com>
1821
1822         * resolv/inet_ntop.c (inet_ntop4, inet_ntop6, inet_ntop): Use
1823         socklen_t type for size.
1824         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Rewrite for new
1825         init function interface.
1826         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
1827         * sysdeps/unix/sysv/linux/sparc/bits/setjmp.h: Don't include
1828         sys/ucontext.h.
1829         (__jmp_buf): Declare the whole type structure here, don't use
1830         ucontext.
1831
1832 2000-04-05  Ulrich Drepper  <drepper@redhat.com>
1833
1834         * iconv/skeleton.c (put16u): Fix typo.
1835         Reported by Bruno Haible <haible@ilog.fr>.
1836
1837         * sysdeps/unix/sysv/linux/alpha/init-first.h: Not needed anymore.
1838         * sysdeps/unix/sysv/linux/arm/init-first.h: Likewise.
1839         * sysdeps/unix/sysv/linux/mips/init-first.h: Likewise.
1840         * sysdeps/unix/sysv/linux/powerpc/init-first.h: Likewise.
1841         * sysdeps/unix/sysv/linux/sparc/sparc32/init-first.h: Likewise.
1842         * sysdeps/unix/sysv/linux/sparc/sparc64/init-first.h: Likewise.
1843
1844         * sysdeps/unix/sysv/linux/Dist: Remove getresuid and getresgid.
1845         * Makefile (distribute): Add abi-versions.awk and
1846         firstversions.awk.
1847         Patches by Torsten Duwe <duwe@caldera.de>.
1848
1849 2000-04-05  Andreas Schwab  <schwab@suse.de>
1850
1851         * nss/Makefile ($(objpfx)makedb): Move $(libdl) after db-open.o.
1852
1853 2000-04-05  Andreas Schwab  <schwab@suse.de>
1854
1855         * sysdeps/m68k/dl-machine.h (RTLD_START): Readd _dl_start_user
1856         entry point, used on Hurd.
1857
1858 2000-04-04  Andreas Jaeger  <aj@suse.de>
1859
1860         * intl/Makefile: Only run the gettext test with shared libraries.
1861
1862 2000-03-16  Mark Kettenis  <kettenis@gnu.org>
1863
1864         * sysdeps/unix/sysv/linux/i386/sys/procfs.h (prfpregset_t):
1865         Typedef for elf_fpregset_t instead of `elf_fpregset_t *'.
1866
1867 2000-04-05  Roland McGrath  <roland@baalperazim.frob.com>
1868
1869         * Makeconfig: Undo last change.
1870         * configure.in: If --disable-shared was given, don't set VERSIONING,
1871         don't define DO_VERSIONING, and don't give scare warning for no
1872         versioning.
1873         * configure: Regenerated.
1874
1875 2000-04-04  Roland McGrath  <roland@baalperazim.frob.com>
1876
1877         * Makeconfig [$(build-shared) != yes] (versioning): Set to `no'.
1878
1879 2000-04-04  Andreas Jaeger  <aj@suse.de>
1880
1881         * sysdeps/generic/fgetexcptflg.c: Use shlib-compat macros.
1882
1883 2000-04-04  Ulrich Drepper  <drepper@redhat.com>
1884
1885         * elf/dl-runtime.c (fixup): Correct handling of symbols marked
1886         STV_HIDDEN and STV_INTERNAL during lookup.
1887         (profile_fixup): Likewise.
1888         * elf/dl-reloc.c (RESOLVE): Likewise.
1889
1890         * iconv/skeleton.c (FUNCTION_NAME): Reorder initialization of
1891         unaligned so that it compiles for system which need unaligned
1892         access handling.
1893
1894 2000-04-04  Andreas Schwab  <schwab@suse.de>
1895
1896         * elf/cache.c (print_entry): Only look at the type field when
1897         printing the type.
1898
1899 2000-04-04  Andreas Schwab  <schwab@suse.de>
1900
1901         * iconvdata/big5.c (BODY): Fix typo.
1902
1903 2000-04-04  Andreas Schwab  <schwab@suse.de>
1904
1905         * sysdeps/m68k/dl-machine.h (RTLD_START): Rewrite for new init
1906         function interface.  Remove unused _dl_start_user entry point.
1907
1908 2000-04-03  Andreas Jaeger  <aj@suse.de>
1909
1910         * include/arpa/inet.h (__inet_aton): Add protoype.
1911
1912 2000-04-01  Andreas Jaeger  <aj@suse.de>
1913
1914         * sysdeps/mach/hurd/mips/init-first.c: Use SHARED instead of PIC.
1915
1916         * sysdeps/unix/mips/sysdep.h: Use __PIC__ instead of PIC.
1917         * sysdeps/mach/mips/thread_state.h: Likewise.
1918
1919         * sysdeps/generic/fclrexcpt.c: Use shlib-compat macros.
1920         * sysdeps/generic/fegetenv.c: Likewise.
1921         * sysdeps/generic/fesetenv.c: Likewise.
1922         * sysdeps/generic/feupdateenv.c: Likewise.
1923         * sysdeps/generic/fraiseexcpt.c: Likewise.
1924         * sysdeps/generic/fsetexcptflg.c: Likewise.
1925         * sysdeps/unix/sysv/linux/alpha/glob.c: Likewise.
1926         * sysdeps/unix/sysv/linux/arm/errlist.c: Likewise.
1927         * sysdeps/unix/sysv/linux/errlist.c: Likewise.
1928         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
1929
1930 2000-04-02  H.J. Lu  <hjl@gnu.org>
1931
1932         * elf/ldconfig.h (FLAG_IA64_LIB64): New. Defined.
1933
1934 2000-04-03  Ulrich Drepper  <drepper@redhat.com>
1935
1936         * elf/dl-load.c (_dl_dst_substitute): Pretty print comment.
1937         (add_name_to_object): Add cast in malloc call.
1938         (fillin_rpath): Optimize loop to initialize ->status a bit.
1939
1940         * sysdeps/i386/dl-machine.h: Undo last change.
1941         * sysdeps/mach/hurd/i386/dl-machine.h (RTLD_START_SPECIAL_INIT):
1942         Restore %edx register after call here.
1943
1944         * sysdeps/arm/atomicity.h: New file.
1945         Contributed by Jesper Skov <jskov@redhat.com>.
1946
1947 2000-04-03  Roland McGrath  <roland@baalperazim.frob.com>
1948
1949         * Makeconfig (preprocess-versions): Undo last change.
1950         Instead, pass -I$(common-objdir) -I$(..)include instead of $(CPPFLAGS).
1951
1952         * sysdeps/mach/hurd/i386/init-first.c (init): Don't set __environ
1953         here, before we might move the stack.
1954         (posixland_init): Set __libc_argc, __libc_argc, and __environ here.
1955         (init1): And not here.
1956
1957         * sysdeps/i386/dl-machine.h (RTLD_START): Fix code broken by last
1958         change, to restore argc value in call-clobbered register after
1959         RTLD_START_SPECIAL_INIT, which will contain a call.
1960
1961         * elf/dl-deps.c (_dl_map_object_deps): Fix size calculations for
1962         allocating and initializing L->l_initfini.
1963
1964         * resolv/Makefile (headers): Add bits/netdb.h, so it gets installed.
1965
1966 2000-04-03  Ulrich Drepper  <drepper@redhat.com>
1967
1968         * elf/dl-load.c (_dl_init_paths): Use (void*) -1 to signal non-existing
1969         RUNPATH, RPATH, and LD_LIBRARY_PATH.
1970         (open_path): Change type of fourth parameter.  Make pointer to array
1971         of pointers.  Create variable dirs with original type.
1972         Track whether any directory for the object exists and if not,
1973         change *DIRSP to (void*) -1 to signal there is no such search path.
1974         (_dl_map_object): Change all calls of open_path.
1975         Rewrite decompose_rpath calls.
1976
1977 2000-03-31  Andreas Schwab  <schwab@suse.de>
1978
1979         * string/strfry.c: Declare STATE as array of char instead of int
1980         and do not initialize it (done by initstate_r).  Pass correct
1981         size.
1982
1983 2000-04-03  Ulrich Drepper  <drepper@redhat.com>
1984
1985         * sysdeps/generic/ldsodefs.h: Fix typo in comment.
1986
1987         * sysdeps/i386/dl-machine.h (RTLD_START): Squeeze one more
1988         instruction out of the code.
1989
1990 2000-04-02  Ulrich Drepper  <drepper@redhat.com>
1991
1992         * elf/dl-fini.c (_dl_fini): Increment j counter after swapping in
1993         element at this position.
1994
1995         * elf/Versions [ld.so] (GLIBC_2.2): Export _dl_load_lock.
1996         * elf/link.h (struct link_map): Add l_reldepsmax, l_reldepsact, and
1997         l_reldeps elements.
1998         * elf/dl-lookup.c (add_dependency): New function.
1999         (_dl_lookup_symbol): Use it whenever symbol was found in a global,
2000         dynamically loaded object.
2001         (_dl_lookup_symbol_skip): Likewise.
2002         (_dl_lookup_versioned_symbol): Likewise.
2003         (_dl_lookup_versioned_symbol_skip): Likewise.
2004         * elf/dl-open.c: Don't define _dl_load_lock here...
2005         * elf/rtld.c: ...but here...
2006         * elf/dl-support.c: ...and here.
2007         * elf/dl-close.c (_dl_close): Close also dependent objects introduce
2008         through relocation.
2009         * elf/dl-fini.c (_dl_fini): Also take dependencies introduced through
2010         relocations.
2011         * dlfcn/Makefile (glrefmain.out): Test is not expected to fail
2012         anymore.
2013         * dlfcn/glrefmain.c: Add one more debug message.
2014
2015         * Makeconfig (preprocess-versions): Don't add $(CPPFLAGS) to compiler
2016         command line.
2017         * Makerules (sysd-versions): Use ( ) instead of { }.
2018
2019         * elf/dl-load.c: Use __builtin_expect to signal that compiler should
2020         optimize for the non-debugging case.
2021         * elf/dl-lookup.c: Likewise.
2022         * sysdeps/generic/libc-start.c: Likewise.
2023
2024 2000-04-02  Roland McGrath  <roland@baalperazim.frob.com>
2025
2026         * sysdeps/mach/hurd/i386/init-first.c: Replace PIC #ifdefs with SHARED.
2027         (init1): Don't initialize __environ here, since init already does it.
2028         (first_init): New function, broken out of _init.
2029         (_hurd_stack_setup): Use it.
2030         [SHARED] (_dl_init_first): New function, renamed from old _init.
2031         (init1) [SHARED]: Don't call posixland_init here.
2032         (posixland_init): Take ENVP arg, so signature is usual for initializer.
2033         [SHARED] (_init): Define as alias for posixland_init.
2034         [! SHARED] (__libc_first_init): Define as alias for posixland_init.
2035         * sysdeps/i386/dl-machine.h (RTLD_START): Insert the macro
2036         RTLD_START_SPECIAL_INIT before calling initializers.
2037         (RTLD_START_SPECIAL_INIT): Define to empty if undefined.
2038         * sysdeps/mach/hurd/i386/dl-machine.h: New file.
2039         * sysdeps/mach/hurd/dl-sysdep.c (_dl_init_first): New weak function.
2040         * elf/Versions ({libc,ld.so}: GLIBC_2.2): Add _dl_init_first.
2041
2042         * stdio-common/tmpfile.c [! USE_IN_LIBIO]: No alias needed,
2043         since we define the function with the name `tmpfile'.
2044
2045         * mach/Versions: Define SHARED instead of PIC to affect shlib-compat.h.
2046         * hurd/Versions: Likewise.
2047
2048 2000-04-02  Ulrich Drepper  <drepper@redhat.com>
2049
2050         * elf/dl-runtime.c (fixup): Fix typo in comment.
2051
2052         * resolv/netdb.h (getnameinfo): All length parameters are of type
2053         socklen_t.
2054         * inet/getnameinfo.c: Likewise.
2055
2056 2000-04-01  Ulrich Drepper  <drepper@redhat.com>
2057
2058         * posix/unistd.h (socklen_t): Define if it has not yet happened.
2059         (gethostname): Change type of second parameter to socklen_t.
2060         * include/unistd.h (__gethostname): Change type of second
2061         parameter to socklen_t.
2062         * sysdeps/generic/gethostname.c (__gethostname): Likewise.
2063         * sysdeps/mach/hurd/gethostname.c (__gethostname): Likewise.
2064         * sysdeps/unix/sysv/gethostname.c (__gethostname): Likewise.
2065         * sysdeps/unix/sysv/sysv4/solaris2/gethostname.c (__gethostname):
2066         Likewise.
2067         * sysdeps/unix/sysv/linux/gethostname.c: Removed.
2068         * sysdeps/generic/bits/socket.h: Use __socklen_t to define socklen_t.
2069         Allow definition elsewhere.
2070         * sysdeps/unix/sysv/aix/bits/socket.h: Likewise.
2071         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
2072         * sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
2073         * sysdeps/generic/bits/types.h: Define __socklen_t.
2074         * sysdeps/unix/sysv/aix/bits/types.h: Likewise.
2075         * sysdeps/unix/sysv/hpux/bits/types.h: Likewise.
2076         * sysdeps/unix/sysv/linux/alpha/bits/types.h: Likewise.
2077         * sysdeps/unix/sysv/linux/bits/types.h: Likewise.
2078         * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise.
2079         * sysdeps/unix/sysv/linux/sparc/bits/types.h: Likewise.
2080         * sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Likewise.
2081
2082         * inet/arpa/inet.h (inet_addr): Change return type to in_addr_t.
2083         (inet_lnaof): Likewise.
2084         (inet_netof): Likewise.
2085         (inet_network): Likewise.
2086         (inet_aton): Likewise.
2087         (inet_makeaddr): Change parameter types to in_addr_t.
2088         (inet_neta): Likewise.
2089         (inet_ntop): Change type of last parameter to socklen_t.
2090         (inet_aton): Only make available if __USE_MISC.
2091         (inet_neta): Likewise.
2092         (inet_net_ntop): Likewise.
2093         (inet_net_pton): Likewise.
2094         (inet_nsap_ntoa): Likewise.
2095
2096         * inet/in.h: Define in_port_t type.
2097         Define in_addr_t type.
2098         (struct in_addr): Use in_addr_t in definition.
2099         (IN_CLASSA): Use cast to in_addr_t.
2100         (IN_CLASSB): Likewise.
2101         (IN_CLASSC): Likewise.
2102         (IN_CLASSD): Likewise.
2103         (IN_EXPERIMENTAL): Likewise.
2104         (IN_BADCLASS): Likewise.
2105         (INADDR_ANY): Likewise.
2106         (INADDR_BROADCAST): Likewise.
2107         (INADDR_NONE): Likewise.
2108         (INADDR_LOOPBACK): Likewise.
2109         (INADDR_UNSPEC_GROUP): Likewise.
2110         (INADDR_ALLHOSTS_GROUP): Likewise.
2111         (INADDR_ALLRTRS_GROUP): Likewise.
2112         (INADDR_MAX_LOCAL_GROUP): Likewise.
2113         (struct sockaddr_in): Use in_port_t for sin_port element.
2114         (struct sockaddr_in6): Use in_port_t for sin6_port element.
2115         Use uint8_t instead of u_int8_t.
2116
2117         * resolv/inet_addr.c (inet_addr): Change return type to in_addr_t.
2118         Call __inet_aton instead of inet_aton.
2119         (__inet_aton): Renamed from inet_aton.  Add weak alias under old name.
2120
2121         * resolv/netdb.h (gethostbyname2): Define only is __USE_MISC.
2122         (innetgr): Likewise.
2123         (struct addrinfo): Use socklen_t for ai_addrlen element.
2124
2125         * sysdeps/unix/sysv/linux/bits/in.h (IPV6_MTU_DISCOVER, IPV6_MTU,
2126         IPV6_RECVERR): New defines.
2127
2128         * include/netdb.h: Change type of first parameter of __getnetbyaddr_r.
2129         * inet/getnetbyad.c: Likewise.
2130         * inet/getnetbyad_r.c: Likewise.
2131         * nis/nss_nis/nis-network.c: Likewise.
2132         * nis/nssplus_nis/nisplus-network.c: Likewise.
2133         * nss/nss_files/files-network.c: Likewise.
2134         * resolv/netdb.h: Define uint32_t if not already happened.
2135         Include bits/netdb.h.  Remove definition of struct netent.
2136         Change type of first parameter of getnetbyaddr_r and getnetbyaddr.
2137         * sysdeps/generic/stdint.h: Allow definition of uint32_t elsewhere.
2138         * sysdeps/generic/bits/netdb.h: New file.
2139         * sysdeps/unix/sysv/linux/alpha/bits/netdb.h: New file.
2140
2141         * dlfcn/Makefile (distribute): Add glreflib1.c and glreflib2.c.
2142         (tests): Add glrefmain.
2143         Add rules to build modules and run tests.  Ignore result of glrefmain
2144         for now since it fails.
2145         * dlfcn/glrefmain.c: New file.
2146         * dlfcn/glreflib1.c: New file.
2147         * dlfcn/glreflib2.c: New file.
2148
2149         * test-skeleton.c: Include <string.h> for strsignal prototype.
2150
2151         * locale/programs/ld-collate.c (check_duplicate): Allow repertoire
2152         to be missing.
2153
2154         * sysdeps/unix/sysv/linux/init-first.c (init): Add code from
2155         former init-first.h.  Initialize __libc_multiple_libcs.
2156
2157 2000-03-31  Ulrich Drepper  <drepper@redhat.com>
2158
2159         * iconv/skeleton.c: Define access macros with u suffix.  Adjust
2160         #if expression for use of unaligned function to the one used in
2161         the definition of these functions.
2162         * iconv/loop.c: Undefined `unaligned' before recursive inclusion.
2163         * iconv/gconv_simple.c (internal_ucs4_loop_unaligned): New function.
2164         (internal_ucs4le_loop_unaligned): New function.
2165
2166         * elf/Makefile (distribute): Add dep1.c, dep2.c, dep3.c, and dep4.c.
2167         (tests): Add order.
2168         (module-names): Add dep1, dep2, dep3, and dep4.
2169         Add dependencies for dep* modules and order.
2170         Define rule for order.out which checks the result.
2171         * elf/dep1.c: New file.
2172         * elf/dep2.c: New file.
2173         * elf/dep3.c: New file.
2174         * elf/dep4.c: New file.
2175         * elf/order.c: New file.
2176
2177         * elf/dl-init.c: Fix typo in comment.
2178
2179 2000-03-31  Andreas Jaeger  <aj@suse.de>
2180
2181         * sysdeps/mips/dl-machine.h (RTLD_START): Rewritten to match new
2182         init function interface.
2183         * sysdeps/mips/mips64/dl-machine.h (RTLD_START): Likewise.
2184
2185 2000-03-31  Andreas Jaeger  <aj@suse.de>
2186
2187         * sysdeps/mips/fpu/fgetexcptflg.c: Fix last patch to use #if.
2188         * sysdeps/mips/fpu/fegetenv.c: Likewise.
2189         * sysdeps/mips/fpu/feupdateenv.c: Likewise.
2190         * sysdeps/mips/fpu/fclrexcpt.c: Likewise.
2191         * sysdeps/mips/fpu/fesetenv.c: Likewise.
2192
2193         * sysdeps/generic/ldsodefs.h: DT_INIT_ARRAY is not relocated
2194         anymore, update comment.
2195
2196         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
2197
2198         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Remove
2199         SHLIB_COMPAT - the struct is always needed.
2200
2201 2000-03-31  Ulrich Drepper  <drepper@redhat.com>
2202
2203         * sysdeps/i386/dl-machine.h (RTLD_START): Optimize for i686.
2204         * elf/dl-support.c: Define _dl_starting_up.
2205
2206 2000-03-30  Ulrich Drepper  <drepper@redhat.com>
2207
2208         * elf/dl-init.c (_dl_init): Clear _dl_starting_up at end of function.
2209         * sysdeps/i386/dl-machine.h: Remove code to clear _dl_starting_up.
2210
2211         * misc/sys/cdefs.h: Don't allow gcc in traditional mode to be used.
2212
2213         * elf/Makefile (dl-routines): Remove preinit.
2214         * elf/Versions: Remove _dl_preinit.
2215         * elf/dl-preinit.c: Removed.  Move content into...
2216         * elf/dl-init.c: ...here.
2217         * sysdeps/i386/dl-machine.h (RTLD_START): Remove call to _dl_preinit.
2218
2219         * sysdeps/generic/bits/shm.h (struct shmid_ds): Correct names of
2220         elements.
2221
2222 2000-03-29  Geoff Clare  <gwc@unisoft.com>
2223
2224         * stdlib/strfmon.c: Corrected problems with the code that
2225         sets default values for [np]_sep_by_space and
2226         [np]_sign_posn; also the new positive/negative alignment
2227         code from the previous patch was not quite right for
2228         [np]_sign_posn = 0.
2229
2230         * localedata/tst-fmon.data: Changes corresponding to the
2231         two sets of fixes made to stdlib/strfmon.c.
2232
2233 2000-03-29  Jes Sorensen  <jes@pcatls01.cern.ch>
2234
2235         * malloc/malloc.c: Declare bit flags UL so that they will not
2236         default to int size when being inverted.
2237
2238 2000-03-29  Andreas Jaeger  <aj@suse.de>
2239
2240         * sysdeps/unix/sysv/linux/arm/errlist.c: Use shlib-compat macros.
2241         * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise.
2242
2243 2000-03-29  Andreas Jaeger  <aj@suse.de>,
2244             Ralf Baechle <ralf@uni-koblenz.de>
2245
2246         * Makeconfig: Introduce new variable SHARED to mark code used in
2247         the shared library.
2248         * elf/dl-close.c: Use it instead of PIC.
2249         * elf/dl-load.c: Likewise.
2250         * elf/dl-open.c: Likewise.
2251         * hurd/geteuids.c: Likewise.
2252         * include/libc-symbols.h: Likewise.
2253         * include/shlib-compat.h: Likewise.
2254         * libio/freopen.c: Likewise.
2255         * linuxthreads/cancel.c: Likewise.
2256         * linuxthreads/pthread.c: Likewise.
2257         * linuxthreads/wrapsyscall.c: Likewise.
2258         * nss/nsswitch.c: Likewise.
2259         * stdio-common/vfprintf.c: Likewise.
2260         * sysdeps/arm/init-first.c: Likewise.
2261         * sysdeps/i386/init-first.c: Likewise
2262         * sysdeps/generic/init-first.c: Likewise.
2263         * sysdeps/generic/libc-start.c: Likewise.
2264         * sysdeps/mips/init-first.c: Likewise.
2265         * sysdeps/powerpc/elf/libc-start.c: Likewise.
2266         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
2267         * sysdeps/unix/sysv/linux/arm/siglist.c: Likewise.
2268         * sysdeps/unix/sysv/linux/arm/errlist.c: Likewise.
2269         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
2270
2271         * sysdeps/mips/machine-gmon.h (asm): Use __PIC__ as check.
2272
2273 2000-03-29  Andreas Jaeger  <aj@suse.de>
2274
2275         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_runtime_setup):
2276         Use D_PTR to access relocated entries in l_info.
2277         (elf_machine_rela): Likewise.
2278
2279         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_runtime_setup):
2280         Likewise.
2281         (elf_machine_rela): Likewise.
2282
2283         * sysdeps/powerpc/dl-machine.c (__elf_machine_runtime_setup):
2284         Likewise.
2285         (__elf_machine_fixup_plt): Likewise.
2286         (__process_machine_rela): Likewise.
2287
2288         * sysdeps/m68k/dl-machine.h (elf_machine_runtime_setup): Likewise.
2289         (elf_machine_rela): Likewise.
2290
2291         * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Likewise.
2292         (elf_machine_rel): Likewise.
2293
2294         * sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Likewise.
2295         (elf_machine_fixup_plt): Likewise.
2296         (elf_machine_rela): Likewise.
2297
2298 2000-03-29  Andreas Jaeger  <aj@suse.de>
2299
2300         * sysdeps/unix/sysv/linux/msgctl.c: Use shlib-compat macros.
2301         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
2302         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
2303         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Likewise.
2304         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
2305         * sysdeps/unix/sysv/linux/i386/msgctl.c: Likewise.
2306         * sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c: Likewise.
2307         * sysdeps/unix/sysv/linux/i386/semctl.c: Likewise.
2308         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
2309         * sysdeps/unix/sysv/linux/i386/shmctl.c: Likewise.
2310         * sysdeps/unix/sysv/linux/alpha/msgctl.c: Likewise.
2311         * sysdeps/unix/sysv/linux/alpha/semctl.c: Likewise.
2312         * sysdeps/unix/sysv/linux/alpha/shmctl.c: Likewise.
2313         * sysdeps/unix/sysv/linux/alpha/adjtime.c: Likewise.
2314         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
2315
2316         * sysdeps/unix/sysv/linux/alpha/oldglob.c: Use shlib-compat
2317         macros, remove K&R prototypes.
2318
2319 2000-03-30  Ulrich Drepper  <drepper@redhat.com>
2320
2321         * posix/getopt.c (_getopt_internal): Return -1 if argc < 1.
2322         Reported by Andrew Wiseman <a.wiseman@bandc.dircon.co.uk>
2323         (PR libc/1677).
2324
2325 2000-03-30  Andreas Jaeger  <aj@suse.de>
2326
2327         * misc/sys/cdefs.h: Remove K&R support.
2328
2329 2000-03-30  Ulrich Drepper  <drepper@redhat.com>
2330
2331         * iconv/skeleton.c: Avoid compiling unaligned versions in some
2332         with size of dynamic sectionmore cases.
2333         * iconv/loop.c: Likewise.
2334
2335 2000-03-29  Bruno Haible  <haible@clisp.cons.org>
2336
2337         * iconv/loop.c (put16): Remove __const. Fix access index.
2338         (put32): Remove __const. Use uint32_t instead of uint16_t.
2339         * iconv/skeleton.c: Likewise.
2340
2341 2000-03-30  Roland McGrath  <roland@baalperazim.frob.com>
2342
2343         * mach/Versions (libc: GLIBC_2.0)
2344         [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)]: Conditionalize
2345         __vm_allocate on this.
2346         [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)]: Conditionalize
2347         mutex- and spinlock-related symbols on this.
2348         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)] (libc: HURD_CTHREADS_0.3):
2349         New version set.  Lock-related symbols go here instead in this case.
2350         * sysdeps/mach/hurd/Versions (libc: GLIBC_2.0): Remove
2351         _cthread_exit_routine, _cthread_init_routine, cthread_keycreate,
2352         cthread_getspecific, cthread_setspecific, __libc_getspecific.
2353         * hurd/Versions
2354         [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)] (libc: GLIBC_2.0):
2355         Put them here instead.
2356         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)] (libc: HURD_CTHREADS_0.3):
2357         New version set.  Those cthreads symbols go here instead in this case.
2358         * Versions.def (libc) [USE_IN_LIBIO]: Add HURD_CTHREADS_0.3 version.
2359
2360 2000-03-30  Ulrich Drepper  <drepper@redhat.com>
2361
2362         * elf/dl-init.c (_dl_init): We don't need to call constructors
2363         recursively.  Fold _dl_init_rec in _dl_init and optimize a bit more.
2364
2365         Implement dynamic determination of constructor/destructor order in
2366         the dynamic linker.
2367         * elf/Versions [ld.so] (GLIBC_2.0): Remove _dl_init_next.
2368         (GLIBC_2.2): Add _dl_init.
2369         * elf/dl-close.c: Also call all destructors in FINI_ARRAY.
2370         r_duplist is not anymore allocated separately.  l_initfini is and
2371         therefore free it if necessary.
2372         * elf/dl-deps.c: If a searchlist has to be allocated, put all in one
2373         malloc block.  Otherwise allocate l_initfini list only.
2374         Put dependencies for the object in l_initfini list.
2375         Sort dependencies for the object to be loaded topologically.
2376         * elf/dl-fini.c: Before running the destructors sort the topologically.
2377         * elf/dl-init.c (_dl_init): Renamed from _dl_init_next.  Rewrite to
2378         call constructors instead of iterating over the pointers.  Get list of
2379         objects for which to run constructors from l_initfini element. Accept
2380         argc, argv, and env as parameters and pass them to the constructors.
2381         * elf/ld-load.c (_dl_map_object_from_fd): Initialize l_ldnum member
2382         with size of dynamic section.
2383         * elf/dl-open.c (dl_open_worker): Only call _dl_init instead of
2384         _dl_init_next and calling constructors ourself.
2385         * elf/dl-preinit.c (_dl_preinit): Renamed from _dl_preinit_next.
2386         Take argc, argv, and env as parameters and pass them to the
2387         constructors.  Rewrite to call all constructors and not iterate over
2388         the pointers.
2389         * elf/dynamic-link.h: Don't relocate DT_FINI_ARRAY entry.  Don't
2390         precompute l_initcount and l_preinitcount.
2391         * elf/link.h (struct link_map): Add l_ldnum member.
2392         Make l_phdr_allocated part of the bitfield.  Remove l_runcount,
2393         l_initcount, and l_preinitcount.  Add l_initfini.
2394         * sysdeps/generic/ldsodefs.h: Replace _dl_init_next prototype with
2395         one for _dl_init.
2396         * sysdeps/i386/dl-machine (RTLD_START): Rewrite to match new init
2397         function interface.
2398         * sysdeps/unix/sysv/linux/init-first.h: Removed.
2399         * sysdeps/unix/sysv/linux/Dist: Delete file here as well.
2400         * sysdeps/unix/sysv/linux/init-first.c [PIC]: Don't use
2401         SYSDEP_CALL_INIT.  Make _init a strong alias of init.  The calling
2402         conventions now match.
2403
2404         * sysdeps/generic/libc-start.c: Calling __libc_init_first has no
2405         effect for shared objects.  Don't emit message and call only for
2406         static library.
2407
2408 2000-03-29  Ulrich Drepper  <drepper@redhat.com>
2409
2410         * iconvdata/testdata/CSA_Z243.4-1985-1..UCS-2BE: Renamed from
2411         CSA_Z243.4-1985-1..UCS2.
2412         * iconvdata/testdata/ISO-8859-10..UCS-2BE: Renamed from
2413         ISO-8859-10..UCS2.
2414
2415 2000-03-29  Andreas Jaeger  <aj@suse.de>
2416
2417         * include/unistd.h: Remove duplicate entry for __rmdir.
2418         Remove declaration of __mkdir since __mkdir is declared in
2419         sys/stat.h.
2420
2421         * manual/creature.texi (Feature Test Macros): Fix typo, reported
2422         by Michael Deutschmann <michael@talamasca.ocis.net>.
2423
2424         * sysdeps/mips/fpu/fclrexcpt.c: Use shlib-compat macros.
2425         * sysdeps/mips/fpu/fegetenv.c: Likewise.
2426         * sysdeps/mips/fpu/fesetenv.c: Likewise.
2427         * sysdeps/mips/fpu/feupdateenv.c: Likewise.
2428         * sysdeps/mips/fpu/fgetexcptflg.c: Likewise.
2429
2430 2000-03-28  Andreas Jaeger  <aj@suse.de>
2431
2432         * sysdeps/i386/fpu/bits/mathinline.h (__sincos): Remove redundant
2433         declaration, the prototype is defined via bits/mathcalls.h.
2434         (__sincosf): Likewise.
2435         (__sincosl): Likewise.
2436         (ldexp): Likewise.
2437         (ldexpf): Likewise.
2438         (ldexpl): Likewise.
2439         (__finite): Likewise.
2440         (__inline_mathcodeNP): New macro without prototype
2441         declarations.
2442         (__inline_mathcodeNP2): Likewise.
2443         (__inline_mathcodeNP3): Likewise.
2444         (__inline_mathcodeNP_): Likewise.
2445         (__inline_mathcodeNP2_): Likewise.
2446         (__inline_mathcodeNP3_): Likewise.
2447         (__inline_mathopNP): Likewise.
2448         (__inline_mathop_declNP): Likewise.
2449         (__inline_mathop_declNP_): Likewise.
2450         (__inline_mathcode_): Use __inline_mathcodeNP_.
2451         (__inline_mathcode2_): Use __inline_mathcodeNP2_.
2452         (__inline_mathcode3_): Use __inline_mathcodeNP3_.
2453         (__inline_mathop_decl_): Use __inline_mathop_declNP__.
2454         (__expm1l): Don't define prototype, the prototype is defined via
2455         bits/mathcalls.h.
2456         (exp): Likewise.
2457         (__expl): Likewise.
2458         (tan): Likewise.
2459         (atan2): Likewise.
2460         (__atan2l): Likewise.
2461         (fmod): Likewise.
2462         (pow): Likewise.
2463         (fabsf): Likewise.
2464         (fabsl): Likewise.
2465         (__fabsl): Likewise.
2466         (asin): Likewise.
2467         (acos): Likewise.
2468         (sinh): Likewise.
2469         (cosh): Likewise.
2470         (tanh): Likewise.
2471         (floor): Likewise.
2472         (ceil): Likewise.
2473         (expm1): Likewise.
2474         (log1p): Likewise.
2475         (asinh): Likewise.
2476         (acosh): Likewise.
2477         (atanh): Likewise.
2478         (hypot): Likewise.
2479         (logb): Likewise.
2480         (fma): Likewise.
2481         (drem): Likewise.
2482         (sqrt): Likewise.
2483         (__sqrtl): Likewise.
2484         (sin): Likewise.
2485         (cos): Likewise.
2486         (atan): Likewise.
2487         (log): Likewise.
2488         (log10): Likewise.
2489         (asinh): Likewise.
2490         (log2): Likewise.
2491         (rint): Likewise.
2492
2493 2000-03-28  Ulrich Drepper  <drepper@redhat.com>
2494
2495         * Makerules: If make variable md5 is defined to yes after
2496         generating dependencies generate MD5 sum for the object.
2497
2498         * iconv/gconv_builtin.h: Fix length in transformation definition
2499         for UNICODEBIG.
2500
2501         * iconvdata/TESTS: Use UCS-2BE instead of UCS2.
2502
2503         * iconv/loop.c: Define get16, get32, put16, and put32 macros to
2504         allow as well reading from/writing to unaligned addresses on machines
2505         which don't support this in hardware.  Use FCTNAME macro to define
2506         function name.  Include the file a second time for platforms which
2507         need special unaligned handling.
2508         * iconv/skeleton.c: Define get16u, get32u, put16u, and put32u macros
2509         to access potentially unaligned addresses.  These macros are intended
2510         to be used only outside the loops.
2511         (unaligned): New definition.  In case the machine can handle unaligned
2512         access define as zero.  Otherwise as a variable which is initialized
2513         as nonzero in case the buffer passed in at runtime is unaligned with
2514         respect to the character set encoding involved.
2515         Call aligned or unaligned looop functions according to unaligned
2516         variable.
2517         * iconvdata/8bit-gap.c: Use get16, get32, put16, and put32 instead
2518         of direct casting pointer to potentially handle unaligned memory
2519         accesses.
2520         * iconvdata/8bit-generic.c: Likewise.
2521         * iconvdata/ansi_x3.110.c: Likewise.
2522         * iconvdata/big5.c: Likewise.
2523         * iconvdata/euc-cn.c: Likewise.
2524         * iconvdata/euc-jp.c: Likewise.
2525         * iconvdata/euc-kr.c: Likewise.
2526         * iconvdata/euc-tw.c: Likewise.
2527         * iconvdata/gbk.c: Likewise.
2528         * iconvdata/iso-2022-cn.c: Likewise.
2529         * iconvdata/iso-2022-jp.c: Likewise.
2530         * iconvdata/iso-2022-kr.c: Likewise.
2531         * iconvdata/iso646.c: Likewise.
2532         * iconvdata/iso_6937-2.c: Likewise.
2533         * iconvdata/iso_6937.c: Likewise.
2534         * iconvdata/johab.c: Likewise.
2535         * iconvdata/sjis.c: Likewise.
2536         * iconvdata/t.61.c: Likewise.
2537         * iconvdata/uhc.c: Likewise.
2538         * iconvdata/unicode.c: Likewise.
2539         * iconvdata/utf-16.c: Likewise.
2540
2541         * locale/programs/simple-hash.c: Little optimizations.  Remove K&R
2542         prototypes.
2543
2544         * malloc/Versions [libc] (GLIBC_2.2): Add mcheck_check_all.
2545         * malloc/mcheck.c (mcheck_check_all): Renamed from check_all and made
2546         public.
2547         * malloc/mcheck.h (mcheck_check_all): Declare.
2548
2549         * stdio-common/Makefile (tests): Add tst-obprintf.
2550
2551 2000-03-28  Roland McGrath  <roland@baalperazim.frob.com>
2552
2553         * sysdeps/generic/bits/sigthread.h: Clean up conditionals.
2554         Declare pthread_sigmask.
2555
2556         * csu/version.c: Add 2000 to copyright years.
2557         Remove Emacs local variables section.
2558
2559 2000-03-23  Bruno Haible  <haible@clisp.cons.org>
2560
2561         * iconv/gconv_int.h (__gconv_transform_ucs2little_internal,
2562         __gconv_transform_internal_ucs2little): Remove declarations.
2563         * iconv/gconv_simple.c (__gconv_transform_ucs2_internal,
2564         __gconv_transform_internal_ucs2): Never need to bswap_16.
2565         (__gconv_transform_ucs2reverse_internal,
2566         __gconv_transform_internal_ucs2reverse): Always need to bswap_16.
2567
2568 2000-03-27  Roland McGrath  <roland@baalperazim.frob.com>
2569
2570         * include/shlib-compat.h (SHLIB_COMPAT): Make the test handle the
2571         obsoleting version not being defined at all, in which case the
2572         result is always true.
2573
2574         * Makeconfig (preprocess-versions): New canned sequence for running
2575         cpp on shlib-versions and the like.
2576         (soversions.i): Use it.
2577         * Makerules (Versions.all, sysd-versions): Use it to preprocess the
2578         Versions.def and Versions files.
2579
2580 2000-03-27  Ulrich Drepper  <drepper@redhat.com>
2581
2582         * stdio-common/tst-obprintf.c (main): Add another check to see
2583         obstack_printf handling all possible beginnings of the block
2584         inside an obstack chunk.
2585
2586         * locale/programs/localedef.c: Use __malloc_initialize_hook to
2587         install mcheck handler.
2588
2589         * libio/obprintf.c (_IO_obstack_vprintf): Fix one more memory
2590         handling problem.
2591
2592 2000-03-27  Roland McGrath  <roland@baalperazim.frob.com>
2593
2594         * stdio-common/tmpfile.c: Use <shlib-compat.h> macros.
2595
2596         * include/shlib-compat.h: Conditionalize <abi-versions.h> include
2597         on [HAVE_ELF && DO_VERSIONING].
2598
2599 2000-03-27  Ulrich Drepper  <drepper@redhat.com>
2600
2601         * stdio-common/tst-obprintf.c: New file.
2602
2603 2000-03-26  Ulrich Drepper  <drepper@redhat.com>
2604
2605         * libio/genops.c (_IO_default_xsputn): Little optimization.  Call
2606         _IO_OVERFLOW directly instead through __overflow.
2607
2608         * locale/programs/localedef.c (construct_output_path): If path
2609         contains a / compute the end of the directory name correctly.
2610
2611         * include/features.h: Undef and document __USE_XOPEN2K.
2612
2613         * malloc/mcheck.c: Implement pedantic checking of all allocated blocks
2614         whenever a function is called.  Initiated by calling mcheck_pedantic
2615         instead of mcheck.
2616         * malloc/mcheck.h: Declare mcheck_pedantic.
2617         * malloc/Versions [libc] (GLIBC_2.2): Add mcheck_pedantic.
2618         * locale/programs/localdef.c: Use mcheck_pedantic instead of mcheck
2619         for now.
2620
2621 2000-03-26  Roland McGrath  <roland@baalperazim.frob.com>
2622
2623         * dlfcn/dlopen.c: Use <shlib-compat.h> macros.
2624         * dlfcn/dlopenold.c: Likewise.
2625         * nss/getXXbyYY_r.c: Likewise.
2626         * nss/getXXent_r.c: Likewise.
2627         * hurd/hurdinit.c: Likewise.
2628         * hurd/compat-20.c: Likewise.
2629         * libio/oldiofopen.c: Likewise.
2630         * libio/oldiofclose.c: Likewise.
2631         * libio/oldiofdopen.c: Likewise.
2632         * libio/oldfileops.c: Likewise.
2633         * libio/oldstdfiles.c: Likewise.
2634         * libio/oldiofsetpos.c: Likewise.
2635         * libio/oldiofgetpos.c: Likewise.
2636         * libio/oldiofgetpos64.c: Likewise.
2637         * libio/oldiofsetpos64.c: Likewise.
2638         * libio/oldiopopen.c: Likewise.
2639         * libio/oldpclose.c: Likewise.
2640         * libio/oldtmpfile.c: Likewise.
2641         * libio/freopen.c (freopen): Likewise.
2642         * libio/iofclose.c (_IO_new_fclose): Likewise.
2643
2644         * sysdeps/mach/sys/reboot.h: Include <features.h>.
2645         (reboot): Declare it.
2646
2647         * libio/Makefile (headers): Add bits/stdio-lock.h here.
2648
2649         * sysdeps/mach/hurd/bits/stdio-lock.h: New file.
2650
2651         * include/shlib-compat.h: Include <abi-versions.h> unconditionally.
2652
2653         * posix/unistd.h (intptr_t): Conditionalize on [__USE_MISC ||
2654         __USE_XOPEN_EXTENDED] rather than on [__USE_UNIX98].
2655         We need this for the sbrk decl, which can be included without Unix98.
2656
2657 2000-03-20  Richard Henderson  <rth@cygnus.com>
2658
2659         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Last
2660         argument to yperr2nss is an int, not size_t.
2661         * posix/regex.c (print_partial_compiled_pattern): Cast all
2662         ptrdiff_t to long for printing.
2663         (print_compiled_pattern): Use Z for printing size_t.
2664         * posix/testfnm.c (tests): Avoid trigraphs.
2665         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE):
2666         Use a C comment, not an assembly comment.
2667
2668         * sysdeps/unix/sysv/linux/alpha/msgctl.c: Clarify use
2669         of __ASSUME_32BITUIDS.
2670
2671 2000-03-26  Ulrich Drepper  <drepper@redhat.com>
2672
2673         * libio/iofopncook.c: Remove K&R prototypes.
2674
2675 2000-03-26  Roland McGrath  <roland@baalperazim.frob.com>
2676
2677         * hurd/hurdrlimit.c (init_rlimit): Give the RLIMIT_NOFILE soft limit
2678         an initial value of 1024 instead of RLIM_INFINITY.
2679
2680         * Versions.def (libmachuser, libhurduser): Remove these sections,
2681         since these libraries do not presently use symbol versions.
2682
2683         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): If the resource limit
2684         is RLIM_INFINITY, return -1 instead.
2685
2686 2000-03-24  Andreas Jaeger  <aj@suse.de>
2687
2688         * Makefile (postclean): Added soversions.i.
2689
2690 2000-03-24  Scott Bambrough  <scottb@netwinder.org>
2691
2692         * sysdeps/arm/fpu/fpu_control.h: Define _FPU_MASK_IM, _FPU_MASK_ZM,
2693         _FPU_MASK_OM, _FPU_MASK_UM, _FPU_MASK_PM, _FPU_MASK_DM, _FPU_DEFAULT,
2694         and _FPU_IEEE.  Change _FPU_RESERVED.
2695
2696 2000-03-24  Scott Bambrough  <scottb@netwinder.org>
2697
2698         * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: New file.
2699
2700 2000-03-24  Roland McGrath  <roland@baalperazim.frob.com>
2701
2702         * sysdeps/posix/getaddrinfo.c: Include <net/if.h> for if_nametoindex.
2703         (gaih_inet): Remove unused duplicate variable.
2704
2705         * inet/getnameinfo.c (getnameinfo): Use IFNAMSIZ, not MAXHOSTNAMELEN.
2706         Don't use __libc_sa_len, which only exists for Linux.  Just handle
2707         AF_INET and AF_INET6 directly as well as AF_LOCAL, since those are the
2708         only flavors supported by this function anyway.
2709
2710 2000-03-24  Geoff Clare  <gwc@unisoft.com>
2711
2712         * stdlib/strfmon.c: corrected problems with missing signs and
2713         missing or extra spaces; allow for sign strings longer than
2714         one character; add padding to ensure positive and negative
2715         formats are aligned when a left precision is used.
2716
2717 2000-03-26  Ulrich Drepper  <drepper@redhat.com>
2718
2719         * stdlib/random_r.c (__setstate_r): Allow RNGs of type 4.
2720         Patch by John Mizel <John.Mizel@msdw.com>.
2721
2722 2000-03-25  Ulrich Drepper  <drepper@redhat.com>
2723
2724         * manual/install.texi: Remove references to crypt add-on.
2725
2726 2000-03-25  Roland McGrath  <roland@baalperazim.frob.com>
2727
2728         * sysdeps/mach/hurd/setrlimit.c (setrlimit): Go into a critical
2729         section while taking the _hurd_rlimit_lock.
2730         * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
2731
2732 2000-03-24  Roland McGrath  <roland@baalperazim.frob.com>
2733
2734         * Makerules [$(cross-compiling) = yes] (symbolic-link-prog): Define
2735         using $(LN_S).
2736
2737         * sysdeps/mach/hurd/if_index.c: New file.
2738
2739         * sysdeps/unix/sysv/linux/net/if.h: Moved to ...
2740         * sysdeps/gnu/net/if.h: here.
2741         (_IOT_ifconf, _IOT_ifreq): Hurd ioctl type macros moved from ...
2742         * sysdeps/mach/hurd/net/if.h: ... here; this file now removed.
2743         * sysdeps/generic/net/if.h: New file.  Declares just the standard
2744         functions and `struct if_nameindex' type.
2745         * socket/Makefile (headers): Add net/if.h here.
2746         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Not here.
2747         * sysdeps/mach/hurd/Dist: Remove it here.
2748         * sysdeps/unix/sysv/linux/Dist: And here.
2749         * sysdeps/generic/if_index.c: Include <net/if.h>.
2750
2751 2000-03-24  Andreas Jaeger  <aj@suse.de>
2752
2753         * sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Use D_PTR to
2754         access relocated entries in l_info.
2755         (elf_machine_got_rel): Likewise.
2756         (elf_machine_runtime_setup): Likewise.
2757         * sysdeps/mips/mips64/dl-machine.h (elf_machine_got_rel): Likewise.
2758         (elf_machine_runtime_setup): Likewise.
2759         (__dl_runtime_resolve): Likewise.
2760
2761 2000-03-23  Ulrich Drepper  <drepper@redhat.com>
2762
2763         * resolv/netdb.h (SCOPE_DELIMITER): New definitions.
2764         * inet/netinet/in.h (struct sockaddr_in6): Add sin6_scope_id
2765         according to RFC 2553.
2766         * sysdeps/posix/getaddrinfo.c: Change to follow latest RFC draft.
2767         * inet/getnameinfo.c: Likewise.
2768         Patches by YOSHIFUJI Hideaki <yoshfuji@v6.linux.or.jp>.
2769
2770 2000-03-23  Bruno Haible  <haible@clisp.cons.org>
2771
2772         * iconv/gconv_simple.c (internal_ucs4_loop, internal_ucs4le_loop):
2773         Remove no-op pointer increment.
2774
2775 2000-03-23  Andreas Jaeger  <aj@suse.de>
2776
2777         * stdio-common/tst-cookie.c (cookieseek): Change prototype to
2778         follow change for libio.h from 2000-03-10.
2779
2780 2000-03-23  Andreas Jaeger  <aj@suse.de>
2781
2782         * elf/dl-addr.c: Adjust include paths for ldsodefs location
2783         change.
2784         * elf/dl-debug.c: Likewise.
2785         * elf/dl-deps.c: Likewise.
2786         * elf/dl-error.c: Likewise.
2787         * elf/dl-fini.c: Likewise.
2788         * elf/dl-init.c: Likewise.
2789         * elf/dl-load.c: Likewise.
2790         * elf/dl-lookup.c: Likewise.
2791         * elf/dl-minimal.c: Likewise.
2792         * elf/dl-object.c: Likewise.
2793         * elf/dl-open.c: Likewise.
2794         * elf/dl-preinit.c: Likewise.
2795         * elf/dl-profile.c: Likewise.
2796         * elf/dl-profstub.c: Likewise.
2797         * elf/dl-reloc.c: Likewise.
2798         * elf/dl-runtime.c: Likewise.
2799         * elf/dl-support.c: Likewise.
2800         * elf/dl-symbol.c: Likewise.
2801         * elf/dl-version.c: Likewise.
2802         * elf/rtld.c: Likewise.
2803         * elf/sprof.c: Likewise.
2804         * sysdeps/generic/dl-cache.c: Likewise.
2805         * sysdeps/generic/dl-origin.c: Likewise.
2806         * sysdeps/generic/dl-sysdep.c: Likewise.
2807         * sysdeps/generic/elf/backtracesyms.c: Likewise.
2808         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
2809         * sysdeps/generic/libc-start.c: Likewise.
2810         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
2811         * sysdeps/powerpc/dl-machine.c: Likewise.
2812         * sysdeps/powerpc/elf/libc-start.c: Likewise.
2813         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
2814         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
2815         * sysdeps/unix/sysv/linux/dl-origin.c: Likewise.
2816
2817         * elf/ldsodefs.h: Move file to ...
2818         * sysdeps/generic/ldsodefs.h: ... here.
2819
2820         * sysdeps/generic/ldsodefs.h: Add definition for D_PTR.
2821
2822         * sysdeps/mips/elf/ldsodefs.h: New file.
2823
2824         * elf/dl-version.c (match_symbol): Use D_PTR to access relocated
2825         entries in l_info.
2826         (_dl_check_map_versions): Likewise.
2827         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
2828         * elf/dl-load.c (_dl_init_paths): Likewise.
2829         (_dl_map_object): Likewise.
2830         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Likewise.
2831         (elf_get_dynamic_info): Likewise.
2832         * elf/do-lookup.h (FCT): Likewise.
2833         * elf/do-rel.h (elf_dynamic_do_rel): Likewise.
2834         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
2835         * elf/dl-addr.c (_dl_addr): Likewise.
2836         * elf/dl-runtime.c (profile_fixup): Likewise.
2837         (fixup): Likewise.
2838         * elf/dl-init.c (_dl_init_next): Likewise.
2839         * sysdeps/generic/dl-machine.h (elf_machine_runtime_setup): Likewise.
2840         * sysdeps/unix/sysv/linux/i386/dl-librecon.h
2841         (DISTINGUISH_LIB_VERSIONS): Likewise.
2842         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup): Likewise.
2843         (elf_machine_rel): Likewise.
2844
2845         * elf/dynamic-link.h (elf_get_dynamic_info): Only change l_info
2846         for writable dynamic section.
2847
2848 2000-03-22  Ulrich Drepper  <drepper@redhat.com>
2849
2850         * inet/getnameinfo.c (getnameinfo): Check that addrlen value is
2851         large enough.  Patch by YOSHIFUJI Hideaki <yoshfuji@v6.linux.or.jp>.
2852
2853 2000-03-22  Andreas Jaeger  <aj@suse.de>
2854
2855         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h (MADV_*): Add flags
2856         from latest Linux kernel.
2857
2858 2000-03-21  Andreas Jaeger  <aj@suse.de>
2859
2860         * Versions.def: Add version 2.1.4.
2861
2862 2000-03-21  Ulrich Drepper  <drepper@redhat.com>
2863
2864         * libio/oldtmpfile.c: Update for new SHLIB_COMPAT definition.
2865         * libio/oldiofopen.c: Likewise.
2866         * libio/oldiofclose.c: Likewise.
2867         * sysdeps/unix/sysv/linux/errlist.c: Likewise.
2868
2869 2000-03-22  Roland McGrath  <roland@baalperazim.frob.com>
2870
2871         * include/shlib-compat.h (SHLIB_COMPAT): Take a third argument,
2872         indicating the first version set to obsolete the conditionalized code.
2873         (compat_symbol): New macro.
2874         * scripts/abi-versions.awk: For subsumed versions, make ABI_* defn's
2875         rhs be the ABI_* macro for the subsuming version.  Assign increasing
2876         integer values to the ABI_* macros for supported versions.
2877         * sysdeps/gnu/siglist.c: Use new SHLIB_COMPAT convention, and use
2878         compat_symbol macro.
2879
2880 2000-03-21  Ulrich Drepper  <drepper@redhat.com>
2881
2882         * nscd/connections.c (nscd_run): Pretty print.
2883         * elf/dl-runtime.c: Include stdlib.h for alloca prototype.
2884
2885         * manual/charset.texi: Fix typos.  Rephrase.
2886         * manual/process.texi: Likewise.
2887         * manual/signal.texi: Likewise.
2888         Patches by Mike Coleman <mkc@kc.net>.
2889
2890         * libio/oldtmpfile.c: Use new macros from shlib-compat.h to define
2891         versions.
2892         * libio/iofdopen.c: Likewise.
2893         * libio/iofgetpos.c: Likewise.
2894         * libio/iofgetpos64.c: Likewise.
2895         * libio/iofopen.c: Likewise.
2896         * libio/iofsetpos.c: Likewise.
2897         * libio/iofsetpos64.c: Likewise.
2898         * libio/iopopen.c: Likewise.
2899         * libio/oldiofopen.c: Likewise.
2900         * libio/pclose.c: Likewise.
2901         * sysdeps/gnu/siglist.c: Likewise.
2902         * sysdeps/unix/sysv/linux/errlist.c: Likewise.
2903
2904         * include/shlib-compat.h (versioned_symbol): Give preprocessor the
2905         chance to expand VERSION_##lib##_##version.
2906
2907         * libio/fileops.c: Use new macros from shlib-compat.h to define
2908         versions.
2909         * libio/iofclose.c: Likewise.
2910         * libio/oldiofclose.c: Likewise.
2911         Patch by Roland McGrath <roland@frob.com>.
2912
2913 2000-03-21  Jakub Jelinek  <jakub@redhat.com>
2914
2915         * sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h: Clean up namespace.
2916         Lay out struct sigcontext according to what really gets passed on
2917         the stack.
2918         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Don't include asm/elf.h.
2919         (elf_gregset_t, elf_greg_t, elf_fpregset_t, ELF_NGREG): Define.
2920         (prgregset_t, prfpregset_t): Define to elf_* types.
2921         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_WRITEDATA):
2922         Define to correct value.
2923         * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h: Use struct
2924         sigcontext.
2925         * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h: Likewise.
2926
2927 2000-03-21  Roland McGrath  <roland@baalperazim.frob.com>
2928
2929         * scripts/firstversions.awk: Allow multiple version sets in the
2930         "earliest version" specification, meaning that version sets in the
2931         gaps between listed versions should be folded into the earliest later
2932         version that is explicitly listed.
2933         * shlib-versions (mips.*-.*-linux.*): Use that syntax for to say
2934         we support GLIBC_2.0 and GLIBC_2.2 but not the intervening sets.
2935
2936 2000-03-21  Ulrich Drepper  <drepper@redhat.com>
2937
2938         * iconv/gconv_builtin.c: Include <endian.h>.
2939         * iconv/gconv_builtin.h: Add UCS-BE aliases.
2940         Add UCS-4LE transformation.  Define UNICODEBIG and UNICODELITTLE
2941         according to current platform.
2942         * iconv/gconv_int.h: Declare __gconv_transform_ucs2reverse_internal,
2943         __gconv_transform_internal_ucs2reverse, and
2944         __gconv_transform_internal_ucs4le.
2945         * iconv/gconv_simple.c: Implement __gconv_transform_internal_ucs4le,
2946         __gconv_transform_ucs2reverse_internal and
2947         __gconv_transform_internal_ucs2reverse.
2948         * iconvdata/Makefile (modules): Add UNICODE.
2949         (distribute): Add unicode.c.
2950         * iconvdata/gconv-modules: Add definitions for UNICODE module.
2951         * iconvdata/unicode.c: New file.
2952
2953         * iconvdata/utf-16.c: Rewrite code to emit BOM.  Correct code to
2954         determine byte order of input and convert accordingly.
2955
2956         * iconvdata/utf-16.c (gconv_init): Fix typo.
2957
2958 2000-03-20  Ulrich Drepper  <drepper@redhat.com>
2959
2960         * iconvdata/gconv-modules: Fix typo.
2961
2962         * sysdeps/unix/sysv/linux/configure.in: Remove `crypt' from one
2963         more messages.
2964
2965         * sysdeps/unix/sysv/aix/*: Add initial code for port to AIX 4.3.
2966
2967 2000-03-16  Thorsten Kukuk  <kukuk@suse.de>
2968
2969         * sysdeps/unix/sysv/linux/sparc/bits/sigcontext.h: New.
2970
2971 2000-03-20  Ulrich Drepper  <drepper@redhat.com>
2972
2973         * misc/Makefile (routines): Add mincore.
2974
2975 2000-03-20  Andreas Jaeger  <aj@suse.de>
2976
2977         * sysdeps/generic/mincore.c: New stub file.
2978
2979         * sysdeps/unix/sysv/linux/arm/bits/mman.h (MADV_*): Add flags
2980         from latest Linux kernel.
2981
2982 2000-03-20  Ulrich Drepper  <drepper@redhat.com>
2983
2984         * grp/initgroups.c (compat_call): Use _SC_GETGR_R_SIZE_MAX instead of
2985         _SC_GETPW_R_SIZE_MAX.
2986
2987 2000-03-20  Richard Henderson  <rth@cygnus.com>
2988
2989         * sysdeps/unix/sysv/linux/alpha/Versions: Put pciconfig_iobase
2990         in GLIBC_2.1.4.
2991
2992 2000-03-20  Richard Henderson  <rth@cygnus.com>
2993
2994         * sysdeps/alpha/fpu/fraiseexcpt.c: Use get/set_fp_control instead
2995         of arithmetic instructions.
2996
2997         * sysdeps/alpha/fpu/s_ceil.c: Use round to -inf instead of playing
2998         with the fpcr.  Protect from INV exception.
2999         * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
3000         * sysdeps/alpha/fpu/s_floor.c: Protect from INV exception.
3001         * sysdeps/alpha/fpu/s_floorf.c: Likewise.
3002
3003         * sysdeps/alpha/fpu/s_copysign.c: New.
3004         * sysdeps/alpha/fpu/s_copysignf.c: New.
3005         * sysdeps/alpha/fpu/s_fabs.c: New.
3006         * sysdeps/alpha/fpu/s_fabsf.c: New.
3007         * sysdeps/alpha/fpu/s_rint.c: New.
3008         * sysdeps/alpha/fpu/s_rintf.c: New.
3009
3010         * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add MADV constants.
3011
3012         * sysdeps/unix/sysv/linux/alpha/Makefile (sysdep_routines):
3013         Kill sethae.
3014         * sysdeps/unix/sysv/linux/alpha/Versions: Add pciconfig_iobase.
3015         * sysdeps/unix/sysv/linux/alpha/ioperm.c (all address constants):
3016         Use physical addresses not KSEG addresses.
3017         (io_system): Add PYXIS.
3018         (io): Remove hae.reg, sys, hae_shift.
3019         (stb_mb, stw_mb, stl_mb, __sethae): New.
3020         (inline_outb, inline_outw, inline_outl): Don't set hae.
3021         (inline_inb, inline_inw, inline_inl): Likewise.
3022         (dense_sethae): New null function.
3023         (struct cpuinfo_data): New.
3024         (process_cpuinfo): Use local and stack variables, not static.
3025         Move readlink check here from init_iosys.
3026         (init_iosys): Use __pciconfig_iobase first.  Know SX and LX as PYXIS.
3027         (_iopl): Simplify.
3028         (_hae_shift): Calculate it here.
3029         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove sethae,
3030         add pciconfig_iobase.
3031
3032 2000-03-20  Roland McGrath  <roland@baalperazim.frob.com>
3033
3034         * locale/programs/ld-time.c (time_finish): Use %Z instead of %z.
3035         * locale/programs/ld-ctype.c (ctype_finish, ctype_class_new): Likewise.
3036
3037         * scripts/versions.awk: Fixed version renaming code to distinguish
3038         libraries properly.
3039
3040 2000-03-19  Ulrich Drepper  <drepper@redhat.com>
3041
3042         * include/stdlib.h: Add prototype for __cxa_atexit.
3043
3044         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Update comment about
3045         _SLOWDOWN flags.  Patch by Jim Blandy <jimb@cygnus.com>.
3046
3047 2000-03-17  Cristian Gafton  <gafton@redhat.com>
3048
3049         * elf/Makefile ($(rtld-version-installed-name)): Delay replacing
3050         existing rtld-installed-name.
3051         ($(rtld-installed-name)): Request libc-$(version) be installed too.
3052         replace existing rtld-installed-name using $(symbolic-link-prog).
3053
3054 2000-03-17  Roland McGrath  <roland@baalperazim.frob.com>
3055
3056         * locale/programs/ld-collate.c (collate_read): Remove bogus cast.
3057         (insert_value, handle_ellipsis, collate_read): Replace %zu in format
3058         strings with %Zu, because gcc-2.95.2's -Wformat knows about the latter
3059         but not the former.
3060
3061 2000-03-19  Ulrich Drepper  <drepper@redhat.com>
3062
3063         * sysdeps/generic/glob.c [_LIBC]: Always use __xstat64, not only for
3064         glob64.  Since there is no glob64 in the LFS proposal applications
3065         can assume that glob handles LFS situations.  glob64 is only needed
3066         if alternative filesystem functions are used.
3067
3068 2000-03-19  Geoff Clare  <gwc@unisoft.com>
3069
3070         * sysdeps/generic/glob.c: Correct gl_pathc value returned
3071         when GLOB_DOOFFS is set; correct handling of patterns
3072         containing escaped wildcards (and no unescaped ones);
3073         GLOB_ERR flag was being ignored in some situations.
3074
3075         * posix/globtest.c, posix/globtest.sh: Updated to include
3076         tests for the problems fixed by the above changes to glob.c.
3077
3078         * manual/pattern.texi (Calling Glob): Update description of gl_pathc.
3079
3080 2000-03-19  Roland McGrath  <roland@baalperazim.frob.com>
3081
3082         * Makeconfig (soversion.i): Use only first match for each lib.
3083
3084         * Makeconfig (soversion.i): Pass -undef to $(CC) -E.
3085
3086         * Makerules (Versions.all, sysd-versions): Test $(sysd-sorted-done)
3087         rather than $(sysd-dirs-done) to protect these rules.
3088
3089         * Makerules (version-renames.def): Target removed.
3090         (Versions.all): Depend on soversions.i directly and parse it.
3091
3092         * Makeconfig (soversions.i): New target, input-reading parts of
3093         soversions.mk generation moved here; result is a canonicalized
3094         list "LIB VERSION [SET]" for this configuration.
3095         (soversions.mk): Use that as input.  Don't emit map-firstversions.
3096         * Makerules (version-renames.def): New target, generated from
3097         soversions.i with contents that was in $(map-firstversions).
3098         (Versions.all): Don't depend on soversions.mk, depend on
3099         version-renames.def instead; just cat it into the input.
3100
3101         * Makerules (Versions.all): Use $(foreach ...) instead of sh for loop
3102         for $(map-firstversions), which better handles it being empty.
3103
3104         * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu*): Set earliest
3105         supported version for libc 0.2.90.libio to GLIBC_2.2.
3106
3107         * Makeconfig (soversions.mk): Grok new third column in shlib-versions,
3108         and use it to emit new variable `map-firstversions'.
3109         * scripts/firstversions.awk: New file.
3110         * Makerules (Versions.all): Use scripts/firstversions.awk and
3111         the $(map-firstversions) value to generate a modified versions list
3112         that includes renames in "A = B" syntax for each version set earlier
3113         than the "earliest symbol version" named in shlib-versions.
3114         * scripts/versions.awk: Recognize "A = B" lines in the input to mean
3115         rename version set A to B in the output to the intermediate file.
3116         * scripts/abi-versions.awk: New file.
3117         * Makerules (abi-versions.h): New target, generated by that script.
3118         [$(versioning) = yes] (before-compile): Prepend abi-versions.h.
3119         * include/shlib-compat.h: New file, uses that generated header.
3120
3121 2000-03-18  Roland McGrath  <roland@baalperazim.frob.com>
3122
3123         * Makeconfig (soversions.mk): Convert % -> # in shlib-versions
3124         after stripping # comments, and then run it through cpp.
3125         This allows things like "%ifdef FOO" based on config.h settings.
3126         * shlib-versions [USE_IN_LIBIO] (.*-.*-gnu-gnu*): libc=0.2.90.libio
3127
3128         * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): For MACH_SEND_INTERRUPTED
3129         and other errors that indicate a pseudo-receive happened, grok through
3130         the message buffer for port rights that need references fixed up.
3131
3132 2000-03-16  Andreas Jaeger  <aj@suse.de>
3133
3134         * sysdeps/unix/sysv/linux/syscalls.list: Added madvise and mincore.
3135
3136         * sysdeps/unix/sysv/linux/madvise.c: Remove.
3137
3138         * sysdeps/unix/sysv/linux/sparc/bits/mman.h (MADV_*): Add flags
3139         from latest Linux kernel.
3140         * sysdeps/unix/sysv/linux/i386/bits/mman.h (MADV_*): Likewise.
3141
3142         * misc/sys/mman.h: Add prototype for mincore.
3143
3144 2000-03-17  Ulrich Drepper  <drepper@redhat.com>
3145
3146         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add oldsetrlimit
3147         entry for GLIBC_2.0 version of setrlimit.
3148         Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
3149
3150 2000-03-16  Thorsten Kukuk  <kukuk@suse.de>
3151
3152         * nis/nss_nis/nis-ethers.c: Return with error if malloc fails.
3153         * nis/nss_compat/compat-initgroups.c: Likewise.
3154         * nis/nss_nis/nis-initgroups.c: Likewise.
3155         * nis/nss_nis/nis-netgrp.c: Likewise.
3156         * nis/nss_nis/nis-proto.c: Likewise.
3157         * nis/nss_nis/nis-rpc.c: Likewise.
3158         * nis/nss_nis/nis-service.c: Likewise.
3159         * nis/ypclnt.c: Likewise.
3160
3161 2000-03-16  Andreas Jaeger  <aj@suse.de>
3162
3163         * manual/Makefile: MAKEINFO is set to `:' from configure if it
3164         doesn't exist, correct checks.  Fixes PR libc/1649.
3165
3166 2000-03-16  Thorsten Kukuk  <kukuk@suse.de>
3167
3168         * nscd/hstcache.c: Restore correct UID.
3169         * nscd/pwdcache.c: Likewise.
3170         Patch from Gabor Gombas <gombasg@inf.elte.hu>.
3171
3172 2000-03-17  Roland McGrath  <roland@baalperazim.frob.com>
3173
3174         * sysdeps/i386/sys/ucontext.h: Prepend REG_ to enum values and
3175         macros for register names, in line with 2000-03-14 linux change.
3176
3177         * sysdeps/mach/sched_yield.c: New file.
3178
3179 2000-03-13  Roland McGrath  <roland@baalperazim.frob.com>
3180
3181         * sysdeps/generic/lockfile.c: Include <stdio.h>
3182         (_IO_flockfile, _IO_funlockfile, _IO_ftrylockfile): #undef these in
3183         case <libio.h> defined them.
3184         (__flockfile, __funlockfile, __ftrylockfile): Functions renamed
3185         from __internal_*.
3186         (flockfile, _IO_flockfile, funlockfile, _IO_funlockfile,
3187         ftrylockfile, _IO_ftrylockfile): Fix aliases accordingly.
3188
3189         * sysdeps/generic/bits/stdio-lock.h (_IO_lock_initializer): Use ...
3190         for more pleasing parse error.
3191
3192 2000-03-16  Ulrich Drepper  <drepper@redhat.com>
3193
3194         * locale/lc-time.c (_nl_init_era_entries): Correct allocation of
3195         memory for eras.
3196         Patch by Shinya Hanataka <hanataka@abyss.rim.or.jp>.
3197
3198         * elf/Makefile: Add rules to compile and run constload1 test.
3199         * elf/constload1.c: New file.
3200         * elf/constload2.c: New file.
3201         * elf/constload3.c: New file.
3202
3203 2000-03-15  Ulrich Drepper  <drepper@redhat.com>
3204
3205         * sysdeps/posix/open64.c: Make __open64 weak alias.
3206         * sysdeps/posix/pread64.c: Make __pread64 weak alias.
3207         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
3208         * sysdeps/unix/sysv/linux/i386/pread64.c: Likewise.
3209         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
3210         * sysdeps/unix/sysv/linux/powerpc/pread64.c: Likewise.
3211         * sysdeps/posix/pwrite64.c: Make __pwrite64 weak alias.
3212         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
3213         * sysdeps/unix/sysv/linux/i386/pwrite64.c: Likewise.
3214         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
3215         * sysdeps/unix/sysv/linux/powerpc/pwrite64.c: Likewise.
3216
3217 2000-03-14  Ulrich Drepper  <drepper@redhat.com>
3218
3219         * sysdeps/unix/sysv/linux/alpha/ioperm.c (platform): Add entry for
3220         Nautilus.  Patch by Soohoon Lee <soohoon.lee@alpha-processor.com>.
3221
3222 2000-03-16  Mark Kettenis  <kettenis@gnu.org>
3223
3224         * sysdeps/unix/sysv/linux/i386/sys/procfs.h (prfpregset_t):
3225         Typedef for elf_fpregset_t instead of `elf_fpregset_t *'.
3226
3227 2000-03-08  Andreas Jaeger  <aj@suse.de>
3228
3229         * sysdeps/unix/sysv/linux/scsi/sg.h: Sync with Linux 2.3.50.
3230
3231 2000-03-14  Ulrich Drepper  <drepper@redhat.com>
3232
3233         * timezone/africa: Update from tzdata2000d.
3234         * timezone/asia: Likewise.
3235         * timezone/australasia: Likewise.
3236         * timezone/europe: Likewise.
3237         * timezone/northamerica: Likewise.
3238         * timezone/southamerica: Likewise.
3239
3240         * po/fr.po: Update from translation team.
3241         * po/de.po: Likewise.
3242
3243         * elf/dl-deps.c (_dl_map_object_deps): Change return type and remove
3244         last parameter.  Move code to add map to global scope from here...
3245         * elf/dl-open.c (dl_open_worker): ...here.
3246         * elf/ldsodefs.h: Adjust declaration of _dl_map_object_deps.
3247         * elf/rtld.c: Adjust call to _dl_map_object_deps.
3248
3249         * locale/programs/ld-collate.c (collate_read): Fix warning.
3250
3251         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Prepend REG_ to enum
3252         values and macros for register names.
3253
3254         * libio/iofopncook.c (_IO_cookie_seek): Return error only if value
3255         returned by seek cookie function is -1.
3256
3257 2000-03-14  Andreas Jaeger  <aj@suse.de>
3258
3259         * locale/localeconv.c (localeconv): Fix typo.
3260         Reported by Andre Charbonneau <andrec@corel.com>.
3261
3262 2000-03-14  Ulrich Drepper  <drepper@redhat.com>
3263
3264         * iconv/skeleton.c: Increment __invocation_counter in inner loop
3265         since modules depend on it counting the number of times the conversion
3266         function got called.
3267
3268         * iconv/gconv_open.c: Optimize loop to setup step data structure.
3269
3270         * iconv/gconv.h: Pretty print.
3271
3272 2000-03-04  Ulrich Drepper  <drepper@redhat.com>
3273
3274         * posix/wordexp-test.c: Correct one of the tests added in the last
3275         change.  Really get the root passwd entry to check again ~root.
3276
3277 2000-03-10  Andreas Jaeger  <aj@suse.de>
3278
3279         * manual/filesys.texi (Working Directory): Fix last patch.
3280         Patch by Martin Buchholz  <martin@xemacs.org>.
3281
3282 2000-03-10  Andreas Jaeger  <aj@suse.de>
3283
3284         * manual/creature.texi (Feature Test Macros): Fix language.
3285
3286 2000-03-10  Roland McGrath  <roland@baalperazim.frob.com>
3287
3288         * mach/devstream.c (devstream_write, devstream_read): New functions.
3289         (input, output): Functions removed.
3290         (mach_open_devstream): Use devstream_{read,write} as cookie functions,
3291         using only the vanilla fopencookie interface.
3292
3293         * hurd/fopenport.c [! USE_IN_LIBIO] (cookie_io_functions_t): Define
3294         as macro for __io_functions.
3295         (funcsio): Use cookie_io_functions_t type name.
3296         (fopenport): Renamed from __fopenport.  Rewrite to call fopencookie.
3297
3298         * libio/iofopncook.c (_IO_cookie_init): New function, broken out of
3299         fopencookie.
3300         (fopencookie): Use it.
3301         * libio/libio.h: Declare _IO_cookie_init.
3302         * hurd/vpprintf.c (vpprintf) [USE_IN_LIBIO]: Implement using
3303         _IO_cookie_init.
3304
3305         * libio/libio.h (__io_seek_fn): Fix second argument type
3306         to be a pointer, in line with the manual and the old stdio.
3307         * libio/iofopncook.c (_IO_cookie_seek): Fix (sole) caller.
3308
3309         * sysdeps/generic/bits/stdio-lock.h: New file.
3310         This is a stub with #error, but that's better than no file at all.
3311
3312 2000-03-09  Martin Buchholz  <martin@xemacs.org>
3313
3314         * sysdeps/unix/sysv/linux/alpha/syscall.S:
3315         * manual/message.texi (Using gettextized software):
3316         * manual/message.texi (Message Translation): Doc Fixes.
3317         * manual/filesys.texi (File Size):
3318         * manual/charset.texi (glibc iconv Implementation):
3319         * locale/programs/ld-collate.c (collate_output):
3320         * iconv/gconv_db.c (find_derivation):
3321         * manual/install.texi:
3322         * manual/search.texi (Hash Search Function):
3323         * manual/stdio.texi (Output Conversion Syntax):
3324         * FAQ.in:
3325         * config.h.in:
3326         * sysdeps/generic/dl-sysdep.c:
3327         Doc Fixes.  `allows to' is not correct English.
3328
3329         * elf/rtld.c: Doc fixes.
3330         * manual/creature.texi (Feature Test Macros): Doc fixes.
3331         * manual/memory.texi (Hooks for Malloc): Doc Fixes.
3332
3333         * manual/filesys.texi (Working Directory): Check for ERANGE to
3334         avoid infloop.
3335
3336 2000-02-23  Roland McGrath  <roland@baalperazim.frob.com>
3337
3338         * string/argz-stringify.c (__argz_stringify): Fix loop termination
3339         conditions so as not to clobber the final '\0' when there is only one
3340         element in the vector.
3341
3342 2000-03-09  Roland McGrath  <roland@baalperazim.frob.com>
3343
3344         * io/sys/stat.h: Fix inverted sense of `defined __S_IFSOCK' test,
3345         broken by 2000-02-27 change.
3346
3347         * sysdeps/generic/bits/poll.h (POLLRDNORM, POLLRDBAND): New macros.
3348
3349 2000-02-23  Roland McGrath  <roland@baalperazim.frob.com>
3350
3351         * sysdeps/mach/hurd/sigstack.c (sigstack): Remove `const' from
3352         argument type, for 2000-02-22 change in signal/signal.h declaration.
3353
3354 2000-03-09  Roland McGrath  <roland@baalperazim.frob.com>
3355
3356         * sysdeps/generic/getdents64.c (__getdirentries64): Renamed
3357         to getdirentries64 (no __), since the Linux implementation
3358         has no __ name, and there is no declaration for the __ name.
3359
3360         * sysdeps/mach/bits/libc-lock.h (__libc_cleanup_end): New macro.
3361
3362         * sysdeps/mach/hurd/Makefile ($(common-objpfx)errnos.d): Tighten up
3363         sed regexp so as not to break directory names including /../ within.
3364
3365         * sysdeps/unix/bsd/bits/waitflags.h: File removed.
3366         The sysdeps/generic file is right for BSD.  This file was in fact the
3367         Hurd file, but the only difference was the WNOREAP flag that was never
3368         actually implemented or used anywhere.
3369
3370         * configure.in (PERL, INSTALL_INFO): Don't AC_SUBST these,
3371         since AC_PATH_PROG already does it for us.
3372         (PERL): Rewrite check added in 2000-02-29 change for syntactic
3373         correctness and sh portability.  I replaced the broken check
3374         with a more sensible implementation of the apparently intended
3375         semantics, which might still be questionable.  Using expr causes
3376         a non-numeric value for `perl -V:apiversion` to be accepted,
3377         refusing to use only a perl that reports a number less than 5;
3378         on my system, perl (5.004_04) -V:apiversion produces UNKNOWN.
3379         * configure: Regenerated.
3380
3381 2000-03-08  Andreas Jaeger  <aj@suse.de>
3382
3383         * manual/crypt.texi: Fix paths.
3384
3385 2000-03-07  Andreas Jaeger  <aj@suse.de>
3386
3387         * resolv/netdb.h: The descriptions of rresvport and rresvport_af
3388         were swapped.
3389         Patch by YOSHIFUJI Hideaki <yoshfuji@ecei.tohoku.ac.jp>, closes PR
3390         libc/1636.
3391
3392 2000-03-06  Andreas Jaeger  <aj@suse.de>
3393
3394         * sysdeps/i386/fpu/bits/mathinline.h: Fix union definition error
3395         in __sgn1l, otherwise g++ fails to parse this.
3396         Reported by Sean Chen <sean.chen@turbolinux.com>.
3397
3398 2000-03-03  Geoff Keating  <geoffk@cygnus.com>
3399
3400         * configure.in: Compute sizeof-long-double.
3401         * configure: Regenerated.
3402         * config.make.in: Make sizeof-long-double available to sub-makes.
3403
3404 2000-03-03  Ulrich Drepper  <drepper@cygnus.com>
3405
3406         * sysdeps/unix/sysv/linux/init-first.c: Remove trace of personality
3407         call.
3408
3409 2000-03-03  Geoff Keating  <geoffk@cygnus.com>
3410
3411         * Makeconfig (rpath-dirs): Add crypt.
3412         (all-subdirs): Remove md5crypt.
3413         * crypt/sysdeps/unix/crypt.c: Move to crypt/.
3414         * crypt/sysdeps/unix/crypt-entry.c: Move to crypt/.
3415         * sysdeps/generic/crypt-entry.c: Delete.
3416         * crypt/sysdeps/unix/crypt.h: Move to crypt/.
3417         * sysdeps/generic/crypt.h: Delete.
3418         * crypt/sysdeps/unix/crypt-private.h: Move to crypt/.
3419         * crypt/sysdeps/unix/crypt_util.c: Move to crypt/.
3420         * crypt/sysdeps/unix/des_impl.c: Move to sunrpc/.
3421         * sysdeps/generic/des_impl.c: Delete.
3422         * crypt/sysdeps/unix/ufc-crypt.h: Move to crypt/.
3423         * crypt/sysdeps: Delete.
3424         * crypt/crypt_util.c: Don't use `patchlevel.h'.
3425         * md5-crypt/Versions: Move to crypt/.
3426         * md5-crypt/md5-crypt.c: Move to crypt/.
3427         * md5-crypt/md5.c: Move to crypt/.
3428         * md5-crypt/md5c-test.c: Move to crypt/.
3429         * md5-crypt/md5test.c: Move to crypt/.
3430         * md5-crypt: Delete.
3431         * crypt/Makefile: Adjust for new structure.
3432
3433 2000-03-03  Paul Eggert  <eggert@twinsun.com>
3434
3435         * posix/regex.c (MB_LEN_MAX): Include <limits.h> to define;
3436         define to 1 if not defined.
3437
3438 2000-03-03  Andreas Jaeger  <aj@suse.de>
3439
3440         * sunrpc/xdr.c (xdr_hyper): Correctly handle lower half of llp.
3441
3442 2000-03-03  Andreas Jaeger  <aj@suse.de>
3443
3444         * sunrpc/xdr_intXX_t.c (xdr_uint16_t): Fix ENCODE and DECODE
3445         cases.
3446         (xdr_int64_t): Correctly handle lower half.
3447         Fix by Sten Dahlgren <stda@enea.se>, closes PR libc/1623.
3448
3449 2000-03-03  Ulrich Drepper  <drepper@cygnus.com>
3450
3451         * sysdeps/unix/sysv/linux/init-first.c: Remove trace of personality
3452         call.
3453
3454 2000-03-02  Andreas Jaeger  <aj@suse.de>
3455
3456         * sysdeps/unix/sysv/linux/scsi/sg.h: Integrate changes from Linux
3457         2.3.43.
3458
3459 2000-03-02  Andreas Jaeger  <aj@suse.de>
3460
3461         * resolv/Makefile (headers): Add arpa/nameser_compat.h.
3462
3463 2000-03-01  Andreas Jaeger  <aj@suse.de>
3464
3465         * time/Makefile (tst-getdate-ENV): New flag to pass DATEMSK.
3466         (tests): Added tst-getdate.
3467
3468         * time/tst-getdate.c: New file.
3469
3470         * time/datemsk: New file, needed for tst-getdate.
3471
3472 2000-02-29  Cristian Gafton  <gafton@redhat.com>
3473
3474         * configure.in (CCVERSION): Require at least veersion 5 of perl API.
3475
3476 2000-02-17  H.J. Lu  <hjl@gnu.org>
3477
3478         * sunrpc/rpc/svc.h (SVCXPRT): Add a "xp_pad" field at the end.
3479
3480         * sunrpc/svc_udp.c (svcudp_bufcreate): Turn on IP_PKTINFO if
3481         available.
3482         (svcudp_recv): Set up message with the new "xp_pad" field for
3483         IP_PKTINFO.
3484         (svcudp_reply): Support IP_PKTINFO if available.
3485
3486 2000-03-01  Andreas Jaeger  <aj@suse.de>
3487
3488         * time/getdate.c (check_mday): Fix check for february.
3489         Reported by ane@np.bs1.fc.nec.co.jp and Akira YOSHIYAMA
3490         <yosshy@cts.ne.jp>, closes PR libc/1617 and PR libc/1619.
3491
3492 2000-03-02  Andreas Jaeger  <aj@suse.de>
3493
3494         * posix/unistd.h: __THROW has to precede __attribute__, otherwise
3495         g++ fails to parse this.
3496         Reported by Sean Chen <sean.chen@turbolinux.com>.
3497
3498 2000-02-28  Ulrich Drepper  <drepper@redhat.com>
3499
3500         * io/creat.c: Moved to...
3501         * sysdeps/generic/creat.c: ...here.
3502         * io/creat64.c: Moved to...
3503         * sysdeps/generic/creat64.c: ...here.
3504         * io/lockf.c: Moved to...
3505         * sysdeps/generic/lockf.c: ...here.
3506
3507         * crypt/crypt.texi: Moved to...
3508         * manual/crypt.texi: ...here.
3509         * crypt/examples/genpass.c: Moved to...
3510         * manual/examples/genpass.c: ...here.
3511         * crypt/examples/mygenpass.c: Moved to...
3512         * manual/examples/mygenpass.c: ...here.
3513         * crypt/examples/testpass.c: Moved to...
3514         * manual/examples/testpass.c: ...here.
3515
3516         * manual/Makefile (chapters): Add crypt.
3517         * manual/conf.texi: Add usual header for not-last chapter.
3518         * manual/crypt.texi: Add special header for last chapter.
3519
3520 2000-02-28  Geoff Keating  <geoffk@cygnus.com>
3521
3522         * Makeconfig (all-subdirs): Add 'crypt' subdirectory.
3523         * sysdeps/unix/sysv/linux/configure.in (inhibit_glue): Don't
3524         complain if there is no crypt add-on.
3525         * crypt/configure: Removed.
3526
3527         * crypt/crypt.texi: Update documentation of US export restrictions
3528         to match the 14 Jan 2000 regulations.
3529
3530 2000-02-28  Geoff Keating  <geoffk@cygnus.com>
3531
3532         * crypt: New subdirectory, merged in from the crypt add-on.
3533
3534 2000-02-28  Ulrich Drepper  <drepper@redhat.com>
3535
3536         * include/unistd.h: Add __rmdir and __mkdir prototypes.
3537
3538
3539 See ChangeLog.10 for earlier changes.