summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_attr_getschedparam.c
blob: f0a9a07d1dc49cc918136065e7b46a12464f4024 (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_getschedparam(const pthread_attr_t *attr, struct sched_param *param)
{
  __THREAD_INIT();

  param->sched_priority=attr->__schedparam.sched_priority;
  return 0;
}