about summary refs log tree commit diff
path: root/nptl/pthreadP.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-07 09:55:05 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-07 09:55:05 +0000
commitbc6389ad568e161987060470c0f512b8a5853824 (patch)
treead341bc60841d26c42dfe7ea4af5e1731ba2fcd2 /nptl/pthreadP.h
parent923e02eae45c3e4c9b6bdd2b8e5613718e8cb54b (diff)
downloadglibc-bc6389ad568e161987060470c0f512b8a5853824.tar.gz
glibc-bc6389ad568e161987060470c0f512b8a5853824.tar.xz
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.h2
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;