diff options
Diffstat (limited to 'exit.c')
-rw-r--r-- | exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,5 +69,5 @@ _pthread_exit(pthread_t thread, void * value, int return_code) void pthread_exit(void * value) { - _pthread_exit(pthread_this(), value, 0); + _pthread_exit(pthread_self(), value, 0); } |