From: Jarkko Hietaniemi Date: Mon, 19 Oct 1998 08:48:33 +0000 (+0000) Subject: VM/ESA (and OS390) are in between of OLD_PTHREADS_API and X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4a07db3e6be903a5c002af0bdc1fe318f4d66315;p=p5sagit%2Fp5-mst-13.2.git VM/ESA (and OS390) are in between of OLD_PTHREADS_API and the 'new' one (just like DJGPP, it seems). p4raw-id: //depot/cfgperl@2019 --- diff --git a/thread.h b/thread.h index 50d9fc3..f883ced 100644 --- a/thread.h +++ b/thread.h @@ -3,7 +3,10 @@ #ifdef WIN32 # include #else -# if defined(OLD_PTHREADS_API) && !defined(DJGPP) +/* XXX What we really need is Configure probing for all of these + * pthread thingies, old, medium, and new, not the blanket statement of + * OLD_PTHREADS_API. --jhi */ +# if defined(OLD_PTHREADS_API) && !defined(DJGPP) && !defined(__OPEN_VM) && !defined(OEMVS) /* POSIXish threads */ # define pthread_mutexattr_init(a) pthread_mutexattr_create(a) # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t)