diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-09 14:34:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-09 14:34:22 +0000 |
commit | 6a1db4ffb67ccb8c3861bb398bff5a033f2d7793 (patch) | |
tree | b185c6ef1324c87cf9917efbcd962c796f78d426 /linuxthreads/internals.h | |
parent | 56ad7b2ceccc199811378d9033a8fbb7bcc1cc4c (diff) | |
download | glibc-6a1db4ffb67ccb8c3861bb398bff5a033f2d7793.tar.gz glibc-6a1db4ffb67ccb8c3861bb398bff5a033f2d7793.tar.xz glibc-6a1db4ffb67ccb8c3861bb398bff5a033f2d7793.zip |
Update.
* elf/rtld.c: Split _dl_start in two pieces to prevent GOT usage before the relocation happened. Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
Diffstat (limited to 'linuxthreads/internals.h')
-rw-r--r-- | linuxthreads/internals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index db84707312..bcbfbcf5eb 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -74,6 +74,7 @@ struct _pthread_descr_struct { pthread_descr p_nextlive, p_prevlive; /* Double chaining of active threads */ pthread_descr p_nextwaiting; /* Next element in the queue holding the thr */ + pthread_descr p_nextlock; /* can be on a queue and waiting on a lock */ pthread_t p_tid; /* Thread identifier */ int p_pid; /* PID of Unix process */ int p_priority; /* Thread priority (== 0 if not realtime) */ |