diff options
author | rpj <rpj> | 1999-08-13 16:17:01 +0000 |
---|---|---|
committer | rpj <rpj> | 1999-08-13 16:17:01 +0000 |
commit | b1972e47c0359b818522f6aa822f3457be938060 (patch) | |
tree | a220b5937fe11341089082e732dfbd91fa8c24ed /exit.c | |
parent | d37b631a2d6ad1e86b39fac166229a02cd2c78bf (diff) |
1999-08-14 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* exit.c (pthread_exit): Don't call pthread_self() but
get thread handle directly for efficiency.
Diffstat (limited to 'exit.c')
-rw-r--r-- | exit.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -51,7 +51,7 @@ pthread_exit (void *value_ptr) * ------------------------------------------------------ */ { - pthread_t self = pthread_self(); + pthread_t self; /* If the current thread is implicit it was not started through pthread_create(), therefore we cleanup and end the thread @@ -60,7 +60,9 @@ pthread_exit (void *value_ptr) which will cleanup and end the thread for us. */ - if (self->implicit) + self = (pthread_t) pthread_getspecific (_pthread_selfThreadKey); + + if (self == NULL || self->implicit) { _pthread_callUserDestroyRoutines(self); |