diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-04-10 19:21:13 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2008-04-10 19:21:13 +0000 |
commit | b0c50524f1fb93adbd52e9950f92650e020b0d59 (patch) | |
tree | fd9af5238c7ebb9bb27ffafb3e47be9ed5ca2680 /nptl | |
parent | 3a2e541ba348de2bbab7b65328694403e61e5dff (diff) | |
download | glibc-b0c50524f1fb93adbd52e9950f92650e020b0d59.zip glibc-b0c50524f1fb93adbd52e9950f92650e020b0d59.tar.gz glibc-b0c50524f1fb93adbd52e9950f92650e020b0d59.tar.bz2 |
Updated to fedora-glibc-20080410T1907
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/pthread_create.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 5fda52a..63b0eab 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2007-11-26 Daniel Jacobowitz <dan@codesourcery.com> + + * pthread_create.c: Require pthread_mutex_trylock and + pthread_key_delete for libgcc. + 2008-04-08 Jakub Jelinek <jakub@redhat.com> [BZ #6020] diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index e08b76a..5fcc72c 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc. +/* Copyright (C) 2002-2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -598,11 +598,13 @@ compat_symbol (libpthread, __pthread_create_2_0, pthread_create, /* If pthread_create is present, libgcc_eh.a and libsupc++.a expects some other POSIX thread functions to be present as well. */ PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_lock) +PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_trylock) PTHREAD_STATIC_FN_REQUIRE (pthread_mutex_unlock) PTHREAD_STATIC_FN_REQUIRE (pthread_once) PTHREAD_STATIC_FN_REQUIRE (pthread_cancel) PTHREAD_STATIC_FN_REQUIRE (pthread_key_create) +PTHREAD_STATIC_FN_REQUIRE (pthread_key_delete) PTHREAD_STATIC_FN_REQUIRE (pthread_setspecific) PTHREAD_STATIC_FN_REQUIRE (pthread_getspecific) |