summaryrefslogtreecommitdiff
path: root/src/thread/pthread_detach.c
blob: 4e45463489153a1ffdbae4858268a1d204356513 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "pthread_impl.h"

int __pthread_join(pthread_t, void **);

int __pthread_detach(pthread_t t)
{
	/* Cannot detach a thread that's already exiting */
	if (a_swap(t->exitlock, 1))
		return __pthread_join(t, 0);
	t->detached = 2;
	__unlock(t->exitlock);
	return 0;
}

weak_alias(__pthread_detach, pthread_detach);