#include <unistd.h>
#include <signal.h>
#include <errno.h>
#include <pthread.h>
#include <pthread_np.h>
#include "rthread.h"
int
pthread_getschedparam(pthread_t thread, int *policy,
struct sched_param *param)
{
if (!_threads_ready)
_rthread_init();
*policy = thread->attr.sched_policy;
if (param)
*param = thread->attr.sched_param;
return (0);
}
int
pthread_setschedparam(pthread_t thread, int policy,
const struct sched_param *param)
{
if (!_threads_ready)
_rthread_init();
if (policy != SCHED_OTHER && policy != SCHED_FIFO &&
policy != SCHED_RR)
return (EINVAL);
thread->attr.sched_policy = policy;
if (param)
thread->attr.sched_param = *param;
return (0);
}
int
pthread_attr_getschedparam(const pthread_attr_t *attrp,
struct sched_param *param)
{
*param = (*attrp)->sched_param;
return (0);
}
int
pthread_attr_setschedparam(pthread_attr_t *attrp,
const struct sched_param *param)
{
(*attrp)->sched_param = *param;
return (0);
}
int
pthread_attr_getschedpolicy(const pthread_attr_t *attrp, int *policy)
{
*policy = (*attrp)->sched_policy;
return (0);
}
int
pthread_attr_setschedpolicy(pthread_attr_t *attrp, int policy)
{
if (policy != SCHED_OTHER && policy != SCHED_FIFO &&
policy != SCHED_RR)
return (EINVAL);
(*attrp)->sched_policy = policy;
return (0);
}
int
pthread_attr_getinheritsched(const pthread_attr_t *attrp, int *inherit)
{
*inherit = (*attrp)->sched_inherit;
return (0);
}
int
pthread_attr_setinheritsched(pthread_attr_t *attrp, int inherit)
{
if (inherit != PTHREAD_INHERIT_SCHED &&
inherit != PTHREAD_EXPLICIT_SCHED)
return (EINVAL);
(*attrp)->sched_inherit = inherit;
return (0);
}
int
pthread_getprio(pthread_t thread)
{
if (!_threads_ready)
_rthread_init();
return (thread->attr.sched_param.sched_priority);
}
int
pthread_setprio(pthread_t thread, int priority)
{
if (!_threads_ready)
_rthread_init();
thread->attr.sched_param.sched_priority = priority;
return (0);
}
void
pthread_yield(void)
{
sched_yield();
}