diff options
author | rpj <rpj> | 2001-06-05 07:48:19 +0000 |
---|---|---|
committer | rpj <rpj> | 2001-06-05 07:48:19 +0000 |
commit | b77a92d5dbb0147c8dd872c0be8f4fe73a750490 (patch) | |
tree | 69e6c711d510a6c505cb6b26dceab6588f392403 /pthread.def | |
parent | 1451ff5c2051b5cadf84bd8e965dcda757101b13 (diff) |
* nonportable.c (pthread_mutex_setdefaultkind_np):
Remove - should not have been included in the first place.
(pthread_mutex_getdefaultkind_np): Likewise.
* global.c (ptw32_mutex_default_kind): Likewise.
* mutex.c (pthread_mutex_init): Remove use of
ptw32_mutex_default_kind.
* pthread.h (pthread_mutex_setdefaultkind_np): Likewise.
(pthread_mutex_getdefaultkind_np): Likewise.
* pthread.def (pthread_mutexattr_setkind_np): Added.
(pthread_mutexattr_getkind_np): Likewise.
* README: Many changes that should have gone in before
the last snapshot.
* README.NONPORTABLE: New - referred to by ANNOUNCE
but never created; documents the non-portable routines
included in the library - moved from README with new
routines added.
* ANNOUNCE (pthread_mutexattr_setkind_np): Added to
compliance list.
(pthread_mutexattr_getkind_np): Likewise.
Diffstat (limited to 'pthread.def')
-rw-r--r-- | pthread.def | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/pthread.def b/pthread.def index 623dc17..15383aa 100644 --- a/pthread.def +++ b/pthread.def @@ -1,5 +1,5 @@ ; pthread.def
-; Last updated: $Date: 2001/05/31 02:01:47 $
+; Last updated: $Date: 2001/06/05 07:48:19 $
; Currently unimplemented functions are commented out.
@@ -103,10 +103,15 @@ pthread_rwlock_rdlock pthread_rwlock_wrlock
pthread_rwlock_unlock
;
-; Non-portable but useful
+; Non-portable/compatibility with other implementations
;
-pthread_getw32threadhandle_np
pthread_delay_np
+pthread_mutexattr_getkind_np
+pthread_mutexattr_setkind_np
+;
+; Non-portable local implementation only
+;
+pthread_getw32threadhandle_np
pthreadCancelableWait
pthreadCancelableTimedWait
; For use when linking statically
|