diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-17 02:03:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-17 02:03:18 +0000 |
commit | bd499a3b46304d4900a6a6ba809f9b7f2c5a4afa (patch) | |
tree | 375cd9b66d7216238f0033c6e6a88e4ba11298d7 /nptl/init.c | |
parent | 64ab2317a89b3965e7d7230bb99cfc99a61f895f (diff) | |
download | glibc-bd499a3b46304d4900a6a6ba809f9b7f2c5a4afa.tar.gz glibc-bd499a3b46304d4900a6a6ba809f9b7f2c5a4afa.tar.xz glibc-bd499a3b46304d4900a6a6ba809f9b7f2c5a4afa.zip |
Update.
2002-12-17 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/i386/socket.S: Use SINGLE_THREAD_P macro instead of comparing %gs:MULTIPLE_THREADS_OFFSET directly. * iconvdata/iso-ir-165.c: Likewise. * iconvdata/jis0208.c: Likewise. * iconvdata/jis0212.c: Likewise.
Diffstat (limited to 'nptl/init.c')
-rw-r--r-- | nptl/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/init.c b/nptl/init.c index f0be750261..39cf41ee9b 100644 --- a/nptl/init.c +++ b/nptl/init.c @@ -56,7 +56,8 @@ extern void __libc_setup_tls (size_t tcbsize, size_t tcbalign); static struct pthread_functions pthread_functions = { .ptr_pthread_attr_destroy = __pthread_attr_destroy, - .ptr_pthread_attr_init = __pthread_attr_init_2_1, + .ptr_pthread_attr_init_2_0 = __pthread_attr_init_2_0, + .ptr_pthread_attr_init_2_1 = __pthread_attr_init_2_1, .ptr_pthread_attr_getdetachstate = __pthread_attr_getdetachstate, .ptr_pthread_attr_setdetachstate = __pthread_attr_setdetachstate, .ptr_pthread_attr_getinheritsched = __pthread_attr_getinheritsched, |