From 55c11fbdb046ec06fb9f9bca2ae772a413354c74 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 14 Mar 2003 22:34:02 +0000 Subject: 2003-03-14 Roland McGrath * descr.h (struct pthread): Move the union out of [!TLS_DTV_AT_TP], so we always define the padding space. [!TLS_DTV_AT_TP]: Give tcbhead_t field a name, `header', since GCC stopped supporting its own extensions fully. [TLS_MULTIPLE_THREADS_IN_TCB]: Put `multiple_threads' inside a wrapper struct also called `header', so `header.multiple_threads' is the field name to use on all machines. * allocatestack.c (allocate_stack): Use `header.' prefix. * sysdeps/pthread/createthread.c (create_thread): Likewise. * pthread_create.c (__pthread_create_2_1): Likewise. * sysdeps/i386/tls.h (INSTALL_NEW_DTV, THREAD_DTV): Likewise. (THREAD_SELF): Likewise. * sysdeps/x86_64/tls.h: Likewise. * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (SINGLE_THREAD_P): Likewise. * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (SINGLE_THREAD_P): Likewise. * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (SINGLE_THREAD_P): Likewise. --- nptl/allocatestack.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nptl/allocatestack.c') diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index 14a2ab09df..8e77543927 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -321,14 +321,14 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, #ifdef TLS_MULTIPLE_THREADS_IN_TCB /* This is at least the second thread. */ - pd->multiple_threads = 1; + pd->header.multiple_threads = 1; #else __pthread_multiple_threads = *__libc_multiple_threads_ptr = 1; #endif #ifdef NEED_DL_SYSINFO /* Copy the sysinfo value from the parent. */ - pd->sysinfo = THREAD_GETMEM (THREAD_SELF, sysinfo); + pd->header.sysinfo = THREAD_GETMEM (THREAD_SELF, header.sysinfo); #endif /* Allocate the DTV for this thread. */ @@ -446,14 +446,14 @@ allocate_stack (const struct pthread_attr *attr, struct pthread **pdp, #ifdef TLS_MULTIPLE_THREADS_IN_TCB /* This is at least the second thread. */ - pd->multiple_threads = 1; + pd->header.multiple_threads = 1; #else __pthread_multiple_threads = *__libc_multiple_threads_ptr = 1; #endif #ifdef NEED_DL_SYSINFO /* Copy the sysinfo value from the parent. */ - pd->sysinfo = THREAD_GETMEM (THREAD_SELF, sysinfo); + pd->header.sysinfo = THREAD_GETMEM (THREAD_SELF, header.sysinfo); #endif /* Allocate the DTV for this thread. */ -- cgit v1.2.3