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 /pthread.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 'pthread.c')
-rw-r--r-- | pthread.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -42,9 +42,22 @@ #include "attr.c" #include "barrier.c" #include "cancel.c" +#include "cleanup.c" #include "condvar.c" +#include "create.c" +#include "dll.c" +#include "errno.c" +#include "exit.c" +#include "fork.c" +#include "global.c" #include "misc.c" #include "mutex.c" +#include "nonportable.c" #include "private.c" #include "rwlock.c" +#include "sched.c" #include "semaphore.c" +#include "signal.c" +#include "spin.c" +#include "sync.c" +#include "tsd.c" |