File: pthread_setschedparam.c

package info (click to toggle)
dietlibc 0.34~cvs20160606-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 11,336 kB
  • sloc: ansic: 71,631; asm: 13,006; cpp: 1,860; makefile: 799; sh: 292; perl: 62
file content (22 lines) | stat: -rw-r--r-- 650 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <unistd.h>
#include <errno.h>

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

/* set thread schedul parameters */
int pthread_setschedparam(pthread_t th,int policy,const struct sched_param*param) {
  int ret=ESRCH;
  _pthread_descr td,this=__thread_self();
  __NO_ASYNC_CANCEL_BEGIN_(this);
  if ((td=__thread_find(th))) {
    UNLOCK(td);
    ret=EINVAL;
    if (((policy==SCHED_OTHER)&&(param->sched_priority==0)) ||
	(((policy==SCHED_RR)||(policy==SCHED_FIFO))&&
	 ((param->sched_priority>0)&&(param->sched_priority<100))))
      ret=(sched_setscheduler(th,policy,param))?_errno_:0;
  }
  __NO_ASYNC_CANCEL_END_(this);
  return ret;
}