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/sysdeps/pthread | |
parent | 89f654c57b3b9a6aee480e25e37f88f06c898901 (diff) | |
download | glibc-6f8326cacd08bf7d1966743086855fc36574bf74.tar glibc-6f8326cacd08bf7d1966743086855fc36574bf74.tar.gz glibc-6f8326cacd08bf7d1966743086855fc36574bf74.tar.bz2 glibc-6f8326cacd08bf7d1966743086855fc36574bf74.zip |
Fix robust mutex handling after fork
Diffstat (limited to 'nptl/sysdeps/pthread')
-rw-r--r-- | nptl/sysdeps/pthread/pthread-functions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/sysdeps/pthread/pthread-functions.h b/nptl/sysdeps/pthread/pthread-functions.h index 0c404fcbb3..15a4dff142 100644 --- a/nptl/sysdeps/pthread/pthread-functions.h +++ b/nptl/sysdeps/pthread/pthread-functions.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -97,6 +97,7 @@ struct pthread_functions void (*ptr__nptl_deallocate_tsd) (void); int (*ptr__nptl_setxid) (struct xid_command *); void (*ptr_freeres) (void); + void (*ptr_set_robust) (struct pthread *); }; /* Variable in libc.so. */ |