diff options
Diffstat (limited to 'nptl/pthread_create.c')
-rw-r--r-- | nptl/pthread_create.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 49825f093e..f8ab269bdd 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -60,9 +60,6 @@ struct pthread_key_struct __pthread_keys[PTHREAD_KEYS_MAX] __attribute__ ((nocommon)); hidden_data_def (__pthread_keys) -/* This is for libthread_db only. */ -const int __pthread_pthread_sizeof_descr = sizeof (struct pthread); - struct pthread * internal_function __find_in_stack_list (pd) @@ -475,3 +472,7 @@ __pthread_create_2_0 (newthread, attr, start_routine, arg) compat_symbol (libpthread, __pthread_create_2_0, pthread_create, GLIBC_2_0); #endif + +/* Information for libthread_db. */ + +#include "../nptl_db/db_info.c" |