2003-03-01  Ulrich Drepper  <drepper@redhat.com>

	* descr.h (struct pthread): Move cleanup field to the front.
This commit is contained in:
Ulrich Drepper 2003-03-02 07:54:30 +00:00
parent 748bec0865
commit 86bfff4d52
2 changed files with 7 additions and 2 deletions

View File

@ -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>
* sem_open.c (sem_open): Braino fix.

View File

@ -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. */