summaryrefslogtreecommitdiff
path: root/thread.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-05-17 19:10:46 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-05-17 19:10:46 +0000
commit026b9da668ef80098c6605ecf2edb65546562c4e (patch)
treeceeb3a3108c20b55eda53cc160ece1aea0ba3555 /thread.h
parent24b616965791b0bdc58cd14f68c59b427198082f (diff)
downloadperl-026b9da668ef80098c6605ecf2edb65546562c4e.tar.gz
Thinko noticed by Doug MacEachern.
p4raw-id: //depot/perl@10147
Diffstat (limited to 'thread.h')
-rw-r--r--thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.h b/thread.h
index b14907abd3..4744aa0bdd 100644
--- a/thread.h
+++ b/thread.h
@@ -252,7 +252,7 @@
/* Use an unchecked fetch of thread-specific data instead of a checked one.
* It would fail if the key were bogus, but if the key were bogus then
* Really Bad Things would be happening anyway. --dan */
-#if (defined(__ALPHA) && (__VMS_VER >= 70000000)) ||
+#if (defined(__ALPHA) && (__VMS_VER >= 70000000)) || \
(defined(__alpha) && defined(__osf__)) /* Available only on >= 4.0 */
# define HAS_PTHREAD_UNCHECKED_GETSPECIFIC_NP /* Configure test needed */
#endif