summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_setschedpolicy.c
blob: 227d3f7ad3cb4cc96c60367e6679ea65e6e7055b (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
#include <unistd.h>
#include <errno.h>

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

int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
{
  __THREAD_INIT();

  if (policy==SCHED_OTHER) {
    attr->__schedpolicy=policy;
    return 0;
  }
  if ((policy==SCHED_FIFO) || (policy==SCHED_RR)) {
    if (geteuid()==0) {
      attr->__schedpolicy=policy;
      return 0;
    }
    return ENOTSUP;
  }
  else
    return EINVAL;
}