diff options
Diffstat (limited to 'nptl/descr.h')
-rw-r--r-- | nptl/descr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index e96f538c68..121510ab2b 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -76,6 +76,10 @@ struct pthread void *__padding[16]; } header; + /* Thread ID - which is also a 'is this thread descriptor (and + therefore stack) used' flag. */ + pid_t tid; + /* Two-level array for the thread-specific data. */ struct pthread_key_data { @@ -153,10 +157,6 @@ struct pthread sigjmp_buf cancelbuf; #define HAVE_CANCELBUF 1 - /* Thread ID - which is also a 'is this thread descriptor (and - therefore stack) used' flag. */ - pid_t tid; - /* Flags. Including those copied from the thread attribute. */ int flags; |