summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_getdetachstate.c
blob: ccdfc0e47edb446e9f87f994e69d1b100959e3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>
#include <errno.h>

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

int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate)
{
  __THREAD_INIT();

  *detachstate=attr->__detachstate;
  return 0;
}