diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-18 18:25:18 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-06-02 10:32:37 +0200 |
commit | c2322a561f74b8fa41b9d9c6b8eb57e28de46f3e (patch) | |
tree | 85673d97ee3c4a1d79d67e3e267a12c63cf7946f /nptl/pthreadP.h | |
parent | 86ed0774cf0de1d281ca3c773758c9fe6f2784b4 (diff) | |
download | glibc-c2322a561f74b8fa41b9d9c6b8eb57e28de46f3e.zip glibc-c2322a561f74b8fa41b9d9c6b8eb57e28de46f3e.tar.gz glibc-c2322a561f74b8fa41b9d9c6b8eb57e28de46f3e.tar.bz2 |
nptl: Change type of __default_pthread_attr
union pthread_attr_transparent has always the correct size, even if
pthread_attr_t has padding that is not present in struct pthread_attr.
This should not result in an observable behavioral change. The
existing code appears to have been correct, but it was brittle because
it was not clear which functions were allowed to write to an entire
pthread_attr_t argument (e.g., by copying it).
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
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 9c6dd41..acc8e88 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -199,7 +199,7 @@ enum /* Default pthread attributes. */ -extern struct pthread_attr __default_pthread_attr attribute_hidden; +extern union pthread_attr_transparent __default_pthread_attr attribute_hidden; extern int __default_pthread_attr_lock attribute_hidden; /* Size and alignment of static TLS block. */ |