diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-11-02 21:48:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-11-02 21:48:45 +0000 |
commit | e3e35cfc95cbfdc7829a5717af244d978d309f42 (patch) | |
tree | 562c7b56fae088592433bbb61e54c386b5f93ff9 /posix | |
parent | 160698e277bb4bc9a402c0f044289fd04f958089 (diff) | |
download | glibc-e3e35cfc95cbfdc7829a5717af244d978d309f42.tar.gz glibc-e3e35cfc95cbfdc7829a5717af244d978d309f42.tar.xz glibc-e3e35cfc95cbfdc7829a5717af244d978d309f42.zip |
Update.
* elf/Versions [libc, GLIBC_2.01]: Add _dl_global_scope_alloc. * elf/dl-open.c (_dl_global_scope_alloc): Move definition to * elf/dl-deps.c: ...here. * elf/dl-open.c (dl_open_worker): Call _dl_map_object_deps with new parameter and expect result. Remove code handling RTLD_GLOBAL. Add return value of _dl_map_object_deps to _dl_main_searchlist->r_nlist. * elf/dl-deps.c (_dl_map_object_deps): Change to return value. If we parameter GLOBAL is nonzero add object and dependencies to the global scope. * elf/ldsodefs.h: Adapt prototype for _dl_map_object_deps. * elf/rtld.c (dl_main): Call _dl_map_object_deps with new parameter. Mark all objects as in global scope. * elf/dl-object.c (_dl_new_object): Initialize l_global to zero. * sysdeps/unix/sysv/linux/bits/sockunion.h: Add Econet support. * sysdeps/unix/sysv/linux/i386/sysdep.h: Add .L prefix to symbols used in macro magic. 1998-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sysdeps/unix/sysv/linux/netatalk/at.h: Include <linux/atalk.h> before <sys/socket.h> to make sockaddr_at available to <sys/socket.h>. * posix/glob.h: Remove __P from parameter lists of declarations. 1998-11-02 Andreas Jaeger <aj@arthur.rhein-neckar.de> * time/tzset.c (tz_compute): Remove unused parameter timer. Change caller. 1998-11-02 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/generic/bits/types.h (__ipc_pid_t): New typedef. 1998-11-02 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'posix')
-rw-r--r-- | posix/glob.h | 6 | ||||
-rw-r--r-- | posix/ptestcases.h | 3 |
2 files changed, 5 insertions, 4 deletions
diff --git a/posix/glob.h b/posix/glob.h index 55208e1799..bf0759c077 100644 --- a/posix/glob.h +++ b/posix/glob.h @@ -150,7 +150,7 @@ typedef struct Otherwise, `glob' returns zero. */ #if _FILE_OFFSET_BITS != 64 extern int glob __P ((__const char *__pattern, int __flags, - int (*__errfunc) __P ((__const char *, int)), + int (*__errfunc) (__const char *, int), glob_t *__pglob)); /* Free storage allocated in PGLOB by a previous `glob' call. */ @@ -158,7 +158,7 @@ extern void globfree __P ((glob_t *__pglob)); #else # if __GNUC__ >= 2 extern int glob __P ((__const char *__pattern, int __flags, - int (*__errfunc) __P ((__const char *, int)), + int (*__errfunc) (__const char *, int), glob_t *__pglob)) __asm__ ("glob64"); extern void globfree __P ((glob_t *__pglob)) __asm__ ("globfree64"); @@ -170,7 +170,7 @@ extern void globfree __P ((glob_t *__pglob)) __asm__ ("globfree64"); #ifdef _LARGEFILE64_SOURCE extern int glob64 __P ((__const char *__pattern, int __flags, - int (*__errfunc) __P ((__const char *, int)), + int (*__errfunc) (__const char *, int), glob64_t *__pglob)); extern void globfree64 __P ((glob64_t *__pglob)); diff --git a/posix/ptestcases.h b/posix/ptestcases.h index e025ab870f..2f41178252 100644 --- a/posix/ptestcases.h +++ b/posix/ptestcases.h @@ -43,6 +43,7 @@ { -1, -1, "\\(^*b\\)", "a*b", }, { -1, -1, "\\(^*b\\)", "^*b", }, { 0, 0, "GA113(2)", NULL, }, + { -1, -1, "\\(^*ab\\)", "*ab", }, { -1, -1, "\\(^*ab\\)", "^*ab", }, { 1, 1, "\\(^*b\\)", "b", }, { 1, 3, "\\(^*b\\)", "^^b", }, @@ -66,7 +67,7 @@ { 1, 2, "\\$a", "$a", }, { 3, 3, "\\$$", "ab$", }, { 2, 6, "A\\([34]$[34]\\)B", "XA4$3BY", }, - { 0, 0, "2.8.3.1.3 Periods in BREs", NULL, }, + { 0, 0, "2.8.3.1.3 Perios in BREs", NULL, }, { 0, 0, "GA116", NULL, }, { 1, 1, ".", "abc", }, { -1, -1, ".ab", "abc", }, |