diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-17 22:43:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-17 22:43:33 +0000 |
commit | ef5d6645960b1ad8b1af244be5d32b3b0d65201d (patch) | |
tree | da5069e9fc385969fdb6198888ed08a0348d5686 /linuxthreads | |
parent | 4a3792163e0cbc2a04d0e8b81544976975d76439 (diff) | |
download | glibc-ef5d6645960b1ad8b1af244be5d32b3b0d65201d.tar.gz |
Update.
1999-10-17 Ulrich Drepper <drepper@cygnus.com>
* elf/elf.h: Add various platform and architecture extensions.
* locale/lc-collate.c (_nl_postload_collate): Disable code for now.
* locale/setlocale.c (setlocale): Don't call _nl_find_locale for
LC_ALL.
* socket/sys/socket.h: Remove K&R compatibility.
1999-10-16 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/bits/in.h: Added struct in_pktinfo.
1999-10-15 Andreas Jaeger <aj@suse.de>
* stdlib/Makefile (tests): Added tst-xpg-basename.
* stdlib/tst-xpg-basename.c: New test file.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/internals.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index faa2ec9420..b4a8cea5e0 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +1999-10-17 Ulrich Drepper <drepper@cygnus.com> + + * internals.h (PTHREAD_START_ARGS_INITIALIZER): Add cast. + 1999-10-14 Ulrich Drepper <drepper@cygnus.com> * pthread.c (__pthread_initial_thread): Pass argument to diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index b127512c11..4fa3381c72 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -72,7 +72,8 @@ struct pthread_key_struct { }; -#define PTHREAD_START_ARGS_INITIALIZER(fct) { fct, NULL, {{0, }}, 0, { 0 } } +#define PTHREAD_START_ARGS_INITIALIZER(fct) \ + { (void *(*) (void *)) fct, NULL, {{0, }}, 0, { 0 } } /* The type of thread descriptors */ |