summaryrefslogtreecommitdiff
path: root/src/thread/pthread_detach.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_detach.c')
-rw-r--r--src/thread/pthread_detach.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_detach.c b/src/thread/pthread_detach.c
index f0eae3e8..8ef03d51 100644
--- a/src/thread/pthread_detach.c
+++ b/src/thread/pthread_detach.c
@@ -3,7 +3,7 @@
int pthread_detach(pthread_t t)
{
/* Cannot detach a thread that's already exiting */
- if (a_xchg(&t->exitlock, 1))
+ if (a_swap(&t->exitlock, 1))
return pthread_join(t, 0);
t->detached = 1;
t->exitlock = 0;