diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-06-30 20:41:34 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-06-30 20:41:34 -0400 |
commit | 6f8326cacd08bf7d1966743086855fc36574bf74 (patch) | |
tree | 0e974e28ad3c04a712cfe18b2a33ad46ac0ba27f /nptl/pthreadP.h | |
parent | 89f654c57b3b9a6aee480e25e37f88f06c898901 (diff) | |
download | glibc-6f8326cacd08bf7d1966743086855fc36574bf74.zip glibc-6f8326cacd08bf7d1966743086855fc36574bf74.tar.gz glibc-6f8326cacd08bf7d1966743086855fc36574bf74.tar.bz2 |
Fix robust mutex handling after fork
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 43ca44c..df4f4d7 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2007, 2009 Free Software Foundation, Inc. +/* Copyright (C) 2002-2007, 2009, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -555,17 +555,20 @@ extern void __pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *buffe /* Old cleanup interfaces, still used in libc.so. */ extern void _pthread_cleanup_push (struct _pthread_cleanup_buffer *buffer, - void (*routine) (void *), void *arg); + void (*routine) (void *), void *arg); extern void _pthread_cleanup_pop (struct _pthread_cleanup_buffer *buffer, - int execute); + int execute); extern void _pthread_cleanup_push_defer (struct _pthread_cleanup_buffer *buffer, - void (*routine) (void *), void *arg); + void (*routine) (void *), void *arg); extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *buffer, - int execute); + int execute); extern void __nptl_deallocate_tsd (void) attribute_hidden; extern int __nptl_setxid (struct xid_command *cmdp) attribute_hidden; +#ifndef SHARED +extern void __nptl_set_robust (struct pthread *self); +#endif extern void __free_stacks (size_t limit) attribute_hidden; |