mirror of git://sourceware.org/git/glibc.git
Update.
2003-03-01 Ulrich Drepper <drepper@redhat.com> * descr.h (struct pthread): Move cleanup field to the front.
This commit is contained in:
parent
748bec0865
commit
86bfff4d52
|
|
@ -1,3 +1,7 @@
|
||||||
|
2003-03-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* descr.h (struct pthread): Move cleanup field to the front.
|
||||||
|
|
||||||
2003-03-01 Roland McGrath <roland@redhat.com>
|
2003-03-01 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* sem_open.c (sem_open): Braino fix.
|
* sem_open.c (sem_open): Braino fix.
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,9 @@ struct pthread
|
||||||
therefore stack) used' flag. */
|
therefore stack) used' flag. */
|
||||||
pid_t tid;
|
pid_t tid;
|
||||||
|
|
||||||
|
/* List of cleanup buffers. */
|
||||||
|
struct _pthread_cleanup_buffer *cleanup;
|
||||||
|
|
||||||
/* Two-level array for the thread-specific data. */
|
/* Two-level array for the thread-specific data. */
|
||||||
struct pthread_key_data
|
struct pthread_key_data
|
||||||
{
|
{
|
||||||
|
|
@ -121,8 +124,6 @@ struct pthread
|
||||||
/* Check whether a thread is detached. */
|
/* Check whether a thread is detached. */
|
||||||
#define IS_DETACHED(pd) ((pd)->joinid == (pd))
|
#define IS_DETACHED(pd) ((pd)->joinid == (pd))
|
||||||
|
|
||||||
/* List of cleanup buffers. */
|
|
||||||
struct _pthread_cleanup_buffer *cleanup;
|
|
||||||
/* Flags determining processing of cancellation. */
|
/* Flags determining processing of cancellation. */
|
||||||
int cancelhandling;
|
int cancelhandling;
|
||||||
/* Bit set if cancellation is disabled. */
|
/* Bit set if cancellation is disabled. */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue