From d2b870cd9b6d91261a304e156819571acc309b55 Mon Sep 17 00:00:00 2001 From: rpj Date: Sat, 23 Feb 2002 02:01:11 +0000 Subject: * 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. --- pthread.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pthread.c') diff --git a/pthread.c b/pthread.c index 8fb39d7..476744f 100644 --- a/pthread.c +++ b/pthread.c @@ -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" -- cgit v1.2.3