diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-24 16:29:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-24 16:29:07 +0000 |
commit | ed3d9cc8056ecd4040741227b05f6c8df11cbcbb (patch) | |
tree | 3dbb25d0b25503651ab23374aff50753f65ae6e2 /linuxthreads | |
parent | 9f4b36ca59f86315f0c4d6042face1c6721eb1ec (diff) | |
download | glibc-ed3d9cc8056ecd4040741227b05f6c8df11cbcbb.tar.gz glibc-ed3d9cc8056ecd4040741227b05f6c8df11cbcbb.tar.xz glibc-ed3d9cc8056ecd4040741227b05f6c8df11cbcbb.zip |
(struct _pthread_descr_struct): Add p_condvar_avail.
Diffstat (limited to 'linuxthreads')
-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 118eecfff0..7335611669 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -170,6 +170,7 @@ struct _pthread_descr_struct { struct pthread_atomic p_resume_count; /* number of times restart() was called on thread */ char p_woken_by_cancel; /* cancellation performed wakeup */ + char p_condvar_avail; /* flag if conditional variable became avail */ pthread_extricate_if *p_extricate; /* See above */ pthread_readlock_info *p_readlock_list; /* List of readlock info structs */ pthread_readlock_info *p_readlock_free; /* Free list of structs */ |