diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 11:24:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-15 11:24:42 +0000 |
commit | 0d5f4929fe3cfb08225d8762a047c9661fcf8712 (patch) | |
tree | 520a853c054247e1fd85748e42e6b2d78e65fb6f /nptl/sysdeps | |
parent | 6ee8d3345646ab0bea91891362a2bbf15503edec (diff) | |
download | glibc-0d5f4929fe3cfb08225d8762a047c9661fcf8712.tar glibc-0d5f4929fe3cfb08225d8762a047c9661fcf8712.tar.gz glibc-0d5f4929fe3cfb08225d8762a047c9661fcf8712.tar.bz2 glibc-0d5f4929fe3cfb08225d8762a047c9661fcf8712.zip |
Update.
* sysdeps/unix/sysv/linux/libc_fatal.c: New file.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/i386/createthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/i386/createthread.c b/nptl/sysdeps/unix/sysv/linux/i386/createthread.c index f9abce2df2..be2ca829ab 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/createthread.c +++ b/nptl/sysdeps/unix/sysv/linux/i386/createthread.c @@ -146,7 +146,7 @@ create_thread (struct pthread *pd, STACK_VARIABLES_PARMS) return errno; /* We now have for sure more than one thread. */ - pd->header.data.multiple_threads = 1; + THREAD_SETMEM (THREAD_SELF, header.data.multiple_threads, 1); return 0; } |