From: Ulrich Drepper Date: Sun, 2 Mar 2003 07:54:30 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~19949 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86bfff4d52a03be3b5f6d8acfa47973fd2fc0bd1;p=external%2Fglibc.git Update. 2003-03-01 Ulrich Drepper * descr.h (struct pthread): Move cleanup field to the front. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index a3f0c94..f6f70fd 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,7 @@ +2003-03-01 Ulrich Drepper + + * descr.h (struct pthread): Move cleanup field to the front. + 2003-03-01 Roland McGrath * sem_open.c (sem_open): Braino fix. diff --git a/nptl/descr.h b/nptl/descr.h index 121510a..f189a6e 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. */