diff options
author | Artur Bergman <sky@nanisky.com> | 2001-10-12 14:55:08 +0000 |
---|---|---|
committer | Artur Bergman <sky@nanisky.com> | 2001-10-12 14:55:08 +0000 |
commit | 8359b7143a85d9f57ad6d9b585248d87f027781e (patch) | |
tree | 366857df2b8cc51eb1daa5b0dc58347cafdb6bc5 /ext | |
parent | df9156bbad76be5c6d9d4ee4be47e7b2a5cb5fad (diff) | |
download | perl-8359b7143a85d9f57ad6d9b585248d87f027781e.tar.gz |
Let us avoid being smart for now.
p4raw-id: //depot/perl@12408
Diffstat (limited to 'ext')
-rwxr-xr-x | ext/threads/threads.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/threads/threads.h b/ext/threads/threads.h index d8c0dabb2a..d3e9c8aa82 100755 --- a/ext/threads/threads.h +++ b/ext/threads/threads.h @@ -23,7 +23,7 @@ STMT_START {\ #include <thread.h> #define PERL_THREAD_SET_SPECIFIC(k,v) pthread_setspecific(k,v) -#define PERL_THREAD_GET_SPECIFIC(k) PTHREAD_GETSPECIFIC(k) +#define PERL_THREAD_GET_SPECIFIC(k) pthread_getspecific(k) #define PERL_THREAD_ALLOC_SPECIFIC(k) STMT_START {\ if(pthread_key_create(&(k),0)) {\ PerlIO_printf(PerlIO_stderr(), "panic threads.h: pthread_key_create");\ |