diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-07 09:55:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-07 09:55:05 +0000 |
commit | bc6389ad568e161987060470c0f512b8a5853824 (patch) | |
tree | ad341bc60841d26c42dfe7ea4af5e1731ba2fcd2 /nptl/pthreadP.h | |
parent | 923e02eae45c3e4c9b6bdd2b8e5613718e8cb54b (diff) | |
download | glibc-bc6389ad568e161987060470c0f512b8a5853824.tar glibc-bc6389ad568e161987060470c0f512b8a5853824.tar.gz glibc-bc6389ad568e161987060470c0f512b8a5853824.tar.bz2 glibc-bc6389ad568e161987060470c0f512b8a5853824.zip |
Update.
2003-03-07 Ulrich Drepper <drepper@redhat.com>
* init.c (__static_tls_align_m1): Renamed from __static_tls_align.
(__pthread_initialize_minimal_internal): Change initialization of
__static_tls_align_m1 appropriately.
* pthreadP.h (__static_tls_align_m1): Renamed from
__static_tls_align.
* allocatestack.c (allocate_stack): Use __static_tls_align_m1
instead of __static_tls_align-1.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index e88b9591e4..c9f31e801a 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -39,7 +39,7 @@ extern size_t __default_stacksize attribute_hidden; /* Size and alignment of static TLS block. */ extern size_t __static_tls_size attribute_hidden; -extern size_t __static_tls_align attribute_hidden; +extern size_t __static_tls_align_m1 attribute_hidden; /* Thread descriptor handling. */ extern list_t __stack_user; |