diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 15:52:08 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 15:52:08 +0000 |
commit | 701a00d39126f3bfe36b88a31b846d4b6cf67c4e (patch) | |
tree | 6e1bcda2633d6c3c5872becd9acdf1fb00815b8a /TSRM | |
parent | 5a5ef06c57ad01c06fdecab2aaac86c8dcac0371 (diff) | |
download | php-git-701a00d39126f3bfe36b88a31b846d4b6cf67c4e.tar.gz |
THREAD_T refers to thread ids, not attributes
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/TSRM.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h index 7b0ce30753..4d2a2c2595 100644 --- a/TSRM/TSRM.h +++ b/TSRM/TSRM.h @@ -51,7 +51,7 @@ typedef int ts_rsrc_id; # define THREAD_T DWORD # define MUTEX_T CRITICAL_SECTION * #elif defined(GNUPTH) -# define THREAD_T pth_attr_t +# define THREAD_T pth_t # define MUTEX_T pth_mutex_t * #elif defined(PTHREADS) # define THREAD_T pthread_t |