diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2004-03-18 02:44:20 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-04-06 22:16:47 +0200 |
commit | 87bbfdf3b5718544942498f0d980e13a0f4110da (patch) | |
tree | e9693b1d7ee1054b965068fed171be6f1aa0822e /sysdeps/hurd/pt-getspecific.c | |
parent | 01d0d4c7d07b28326d2de95dd9000f876f661707 (diff) |
2004-03-17 Marcus Brinkmann <marcus@gnu.org>
* libpthread: New directory, populated with Neal H. Walfields
pthread implementation.
Diffstat (limited to 'sysdeps/hurd/pt-getspecific.c')
-rw-r--r-- | sysdeps/hurd/pt-getspecific.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/hurd/pt-getspecific.c b/sysdeps/hurd/pt-getspecific.c index b5b5f5e5..30605984 100644 --- a/sysdeps/hurd/pt-getspecific.c +++ b/sysdeps/hurd/pt-getspecific.c @@ -33,5 +33,5 @@ pthread_getspecific (pthread_key_t key) if (! self->thread_specifics) return 0; - return ihash_find (self->thread_specifics, key); + return hurd_ihash_find (self->thread_specifics, key); } |