diff options
author | rpj <rpj> | 2002-02-23 02:01:11 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-02-23 02:01:11 +0000 |
commit | d2b870cd9b6d91261a304e156819571acc309b55 (patch) | |
tree | 4b56dbc20070a24a90c123daadc35ab628f21e8c /rwlock.c | |
parent | 09cf57ffcf96b3f0cf7d5ec959c455ba54245a65 (diff) |
* pthread_cond_destroy.c: Expand the time change
critical section to solve deadlock problem.
* pthread.c: Add all remaining C modules.
* pthread.h: Use dllexport/dllimport attributes on functions
to avoid using pthread.def.
* sched.h: Likewise.
* semaphore.h: Likewise.
* GNUmakefile: Add new targets for single translation
unit build to maximise inlining potential; generate
pthread.def automatically.
* Makefile: Likewise, but no longer uses pthread.def.
Diffstat (limited to 'rwlock.c')
-rw-r--r-- | rwlock.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -35,6 +35,7 @@ */ #include "ptw32_rwlock_check_need_init.c" +#include "ptw32_rwlock_cancelwrwait.c" #include "pthread_rwlock_init.c" #include "pthread_rwlock_destroy.c" #include "pthread_rwlockattr_init.c" @@ -42,7 +43,9 @@ #include "pthread_rwlockattr_getpshared.c" #include "pthread_rwlockattr_setpshared.c" #include "pthread_rwlock_rdlock.c" +#include "pthread_rwlock_timedrdlock.c" #include "pthread_rwlock_wrlock.c" +#include "pthread_rwlock_timedwrlock.c" #include "pthread_rwlock_unlock.c" #include "pthread_rwlock_tryrdlock.c" #include "pthread_rwlock_trywrlock.c" |