summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_getschedpolicy.c
blob: 53f1bed8c165422662cc24d4975a28f99248d36d (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_attr_getschedpolicy(const pthread_attr_t *attr, int *policy)
{
  __THREAD_INIT();

  *policy = attr->__schedpolicy;
  return 0;
}