diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-19 14:34:13 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-03-19 14:34:13 +0530 |
commit | e903a7138b4a39904b9d17a1d7715ae7c17fd832 (patch) | |
tree | 3496f780b2da815263d381f31870564df323ac3e /nptl/pthreadP.h | |
parent | d3cfc668a3988168ccd9342e46cd884da511367b (diff) | |
download | glibc-e903a7138b4a39904b9d17a1d7715ae7c17fd832.tar.gz |
Move __default_stacksize into __default_pthread_attr
Make __default_pthread_attr object to store default attribute values
for threads.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index d08b219b5d..954b54a50a 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -147,8 +147,8 @@ enum /* Internal variables. */ -/* Default stack size. */ -extern size_t __default_stacksize attribute_hidden; +/* Default pthread attributes. */ +extern struct pthread_attr __default_pthread_attr attribute_hidden; /* Size and alignment of static TLS block. */ extern size_t __static_tls_size attribute_hidden; |