diff options
author | rpj <rpj> | 2003-09-01 04:53:45 +0000 |
---|---|---|
committer | rpj <rpj> | 2003-09-01 04:53:45 +0000 |
commit | a5f3d62017a8e705016d0083a24837d6a56f178d (patch) | |
tree | 9bf9e8208ddb23ddda41c7ca31887929e58ca49a /pthread_self.c | |
parent | bea8978fb8ab1a6d106fc6761b50fb55a98373d4 (diff) |
Reuse the thread struct on failure.
Diffstat (limited to 'pthread_self.c')
-rw-r--r-- | pthread_self.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pthread_self.c b/pthread_self.c index bd67e83..e7a81b8 100644 --- a/pthread_self.c +++ b/pthread_self.c @@ -110,7 +110,8 @@ pthread_self (void) FALSE, DUPLICATE_SAME_ACCESS ) ) { - free( self ); + /* Thread structs are never freed. */ + ptw32_threadReusePush(self); return (NULL); } #endif |