mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 09:43:32 +08:00
Update.
2003-01-13 Ulrich Drepper <drepper@redhat.com> * locale/programs/charmap-dir.c (charmap_readdir): Use struct dirent64 instead of struct dirent for dirent. Call readdir64 instead of readdir. * locale/programs/locfile.c (siblings_uncached): Use struct dirent64 instead of struct dirent for other_dentry. Call readdir64 instead of readdir. * elf/ldconfig.c (direntry): Change type to struct dirent64. (search_dir): Use readdir64 instead of readdir. Patch by Zhangfan Xing <xing@pacific.jpl.nasa.gov>.
This commit is contained in:
parent
2b510e91dc
commit
9ef0a84048
14
ChangeLog
14
ChangeLog
@ -1,3 +1,17 @@
|
|||||||
|
2003-01-13 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* locale/programs/charmap-dir.c (charmap_readdir): Use struct
|
||||||
|
dirent64 instead of struct dirent for dirent. Call readdir64
|
||||||
|
instead of readdir.
|
||||||
|
|
||||||
|
* locale/programs/locfile.c (siblings_uncached): Use struct
|
||||||
|
dirent64 instead of struct dirent for other_dentry. Call
|
||||||
|
readdir64 instead of readdir.
|
||||||
|
|
||||||
|
* elf/ldconfig.c (direntry): Change type to struct dirent64.
|
||||||
|
(search_dir): Use readdir64 instead of readdir.
|
||||||
|
Patch by Zhangfan Xing <xing@pacific.jpl.nasa.gov>.
|
||||||
|
|
||||||
2003-01-12 Roland McGrath <roland@redhat.com>
|
2003-01-12 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use strtoul,
|
* hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use strtoul,
|
||||||
|
15
NEWS
15
NEWS
@ -1,5 +1,5 @@
|
|||||||
GNU C Library NEWS -- history of user-visible changes. 2002-12-2
|
GNU C Library NEWS -- history of user-visible changes. 2003-1-12
|
||||||
Copyright (C) 1992-2001, 2002 Free Software Foundation, Inc.
|
Copyright (C) 1992-2002, 2003 Free Software Foundation, Inc.
|
||||||
See the end for copying conditions.
|
See the end for copying conditions.
|
||||||
|
|
||||||
Please send GNU C library bug reports using the `glibcbug' script to
|
Please send GNU C library bug reports using the `glibcbug' script to
|
||||||
@ -33,6 +33,17 @@ Version 2.3.2
|
|||||||
|
|
||||||
* The `btowc' function should work at least twice as fast due to
|
* The `btowc' function should work at least twice as fast due to
|
||||||
specialized callbacks in the iconv modules. Implemented by Bruno Haible.
|
specialized callbacks in the iconv modules. Implemented by Bruno Haible.
|
||||||
|
|
||||||
|
* With approriate thread add-ons cancelable functions are now implemented
|
||||||
|
in libc.so as well. No need to call the function in libpthread. This
|
||||||
|
change allowed to finally disable the incorrect and expensive handling
|
||||||
|
of weak definition in ld.so.
|
||||||
|
|
||||||
|
* Yet more PLT entries in libc.so have been removed. We finally arrived
|
||||||
|
at the bare minimum. Startup times improved appropriately.
|
||||||
|
|
||||||
|
* Support for the new Linux/x86 system call interface was added. The
|
||||||
|
AT_SYSINFO auxiliary vector entry is recognized and handled.
|
||||||
|
|
||||||
Version 2.3
|
Version 2.3
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
|
/* Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -88,13 +88,13 @@ charmap_readdir (CHARMAP_DIR *cdir)
|
|||||||
{
|
{
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
struct dirent *dirent;
|
struct dirent64 *dirent;
|
||||||
size_t len;
|
size_t len;
|
||||||
size_t size;
|
size_t size;
|
||||||
char *filename;
|
char *filename;
|
||||||
mode_t mode;
|
mode_t mode;
|
||||||
|
|
||||||
dirent = readdir (cdir->dir);
|
dirent = readdir64 (cdir->dir);
|
||||||
if (dirent == NULL)
|
if (dirent == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (strcmp (dirent->d_name, ".") == 0)
|
if (strcmp (dirent->d_name, ".") == 0)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc.
|
/* Copyright (C) 1996-2001, 2002, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@gnu.org>, 1996.
|
Contributed by Ulrich Drepper <drepper@gnu.org>, 1996.
|
||||||
|
|
||||||
@ -389,12 +389,12 @@ siblings_uncached (const char *output_path)
|
|||||||
elems = NULL;
|
elems = NULL;
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
struct dirent *other_dentry;
|
struct dirent64 *other_dentry;
|
||||||
const char *other_name;
|
const char *other_name;
|
||||||
char *other_path;
|
char *other_path;
|
||||||
struct stat other_stat;
|
struct stat other_stat;
|
||||||
|
|
||||||
other_dentry = readdir (dirp);
|
other_dentry = readdir64 (dirp);
|
||||||
if (other_dentry == NULL)
|
if (other_dentry == NULL)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user