diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-02 07:54:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-02 07:54:30 +0000 |
commit | 86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1 (patch) | |
tree | 9493e52ddea8d6aa18beac671288fc5aacabea5e /nptl/descr.h | |
parent | 748bec0865432d32b673478c502e4e4e5bed5339 (diff) | |
download | glibc-86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1.tar glibc-86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1.tar.gz glibc-86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1.tar.bz2 glibc-86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1.zip |
Update.
2003-03-01 Ulrich Drepper <drepper@redhat.com>
* descr.h (struct pthread): Move cleanup field to the front.
Diffstat (limited to 'nptl/descr.h')
-rw-r--r-- | nptl/descr.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index 121510ab2b..f189a6ed7b 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -80,6 +80,9 @@ struct pthread therefore stack) used' flag. */ pid_t tid; + /* List of cleanup buffers. */ + struct _pthread_cleanup_buffer *cleanup; + /* Two-level array for the thread-specific data. */ struct pthread_key_data { @@ -121,8 +124,6 @@ struct pthread /* Check whether a thread is detached. */ #define IS_DETACHED(pd) ((pd)->joinid == (pd)) - /* List of cleanup buffers. */ - struct _pthread_cleanup_buffer *cleanup; /* Flags determining processing of cancellation. */ int cancelhandling; /* Bit set if cancellation is disabled. */ |