summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_detach.c
blob: 2f72b97a76f21553ab59c31851872f2f650b2fec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <errno.h>

#include <pthread.h>
#include "thread_internal.h"

int pthread_detach(pthread_t th)
{
  pthread_t j;
  _pthread_descr thread;

  __THREAD_INIT();

  j=__find_thread_id(th);

  if (j==-1) {
    return ESRCH;
  }
  thread = __get_thread_struct(j);

  if (thread->detached) {
    return EINVAL;
  }

  if (!thread->joined) {
    thread->detached=1;
  }

  return 0;
}