Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 2 Mar 2003 07:54:30 +0000 (07:54 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 2 Mar 2003 07:54:30 +0000 (07:54 +0000)
2003-03-01  Ulrich Drepper  <drepper@redhat.com>

* descr.h (struct pthread): Move cleanup field to the front.

nptl/ChangeLog
nptl/descr.h

index a3f0c94..f6f70fd 100644 (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.
index 121510a..f189a6e 100644 (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.  */