diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-12-08 23:25:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-12-08 23:25:14 +0000 |
commit | 9e9b8cb84e9c3c3930273856c183ed3736cd59d3 (patch) | |
tree | 495ec5a33ffe8b462776703465004f74e6ec6180 | |
parent | d43b8bddb123fb3e27ba10bedf22026adfa47bd0 (diff) | |
download | glibc-9e9b8cb84e9c3c3930273856c183ed3736cd59d3.tar.gz glibc-9e9b8cb84e9c3c3930273856c183ed3736cd59d3.tar.xz glibc-9e9b8cb84e9c3c3930273856c183ed3736cd59d3.zip |
(struct pthread): Increase padding for tcbhead_t to 24 words.
-rw-r--r-- | nptl/descr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index 3c00e1418c..22e774ab7e 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 2002-2006, 2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -143,7 +143,7 @@ struct pthread is private and subject to change without affecting the official ABI. We just have it here in case it might be convenient for some implementation-specific instrumentation hack or suchlike. */ - void *__padding[16]; + void *__padding[24]; }; /* This descriptor's link on the `stack_used' or `__stack_user' list. */ |