diff options
author | Nicholas Clark <nick@ccl4.org> | 2012-08-30 18:25:53 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2012-08-31 14:13:01 +0200 |
commit | 043fec90e88a2e23823af40a5c0b59539fc58069 (patch) | |
tree | 217d8ca6d7f6e18200a6b3f9c3d96199422d4243 /thread.h | |
parent | 63d7ac5fa5ef436afa9865a56b7c84e54a112722 (diff) | |
download | perl-043fec90e88a2e23823af40a5c0b59539fc58069.tar.gz |
Remove the VM/ESA port.
VM/ESA was a mainframe OS. IBM ended service on it in June 2003. It was
superseded by Z/VM.
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -40,9 +40,6 @@ # define NEED_PTHREAD_INIT # define PTHREAD_CREATE_JOINABLE (1) # endif -# ifdef __OPEN_VM -# define pthread_addr_t void * -# endif # ifdef OEMVS # define pthread_addr_t void * # define pthread_create(t,a,s,d) pthread_create(t,&(a),s,d) @@ -65,7 +62,7 @@ # define pthread_mutexattr_init(a) pthread_mutexattr_create(a) # define pthread_mutexattr_settype(a,t) pthread_mutexattr_setkind_np(a,t) # endif -# if defined(DJGPP) || defined(__OPEN_VM) || defined(OEMVS) +# if defined(DJGPP) || defined(OEMVS) # define PTHREAD_ATTR_SETDETACHSTATE(a,s) pthread_attr_setdetachstate(a,&(s)) # define YIELD pthread_yield(NULL) # endif |