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_key_delete.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_key_delete.c')
-rw-r--r-- | pthread_key_delete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_key_delete.c b/pthread_key_delete.c index 0fb3fbb..4ea1180 100644 --- a/pthread_key_delete.c +++ b/pthread_key_delete.c @@ -77,7 +77,7 @@ pthread_key_delete (pthread_key_t key) /* * Run through all Thread<-->Key associations * for this key. - * If the pthread_t still exits (ie the assoc->thread + * If the pthread_t still exists (ie the assoc->thread * is not NULL) then leave the assoc for the thread to * destroy. * Notes: |