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

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

int pthread_mutexattr_getkind_np(const pthread_mutexattr_t *attr, int *kind)
{
  __THREAD_INIT();

  *kind=attr->__mutexkind;
  return 0;
}