#include <pthread.h> int pthread_attr_setschedparam( pthread_attr_t *attr, const struct sched_param param );
The pthread_attr_setschedparam
routine is used to set the
scheduler parameters field in the thread attribute object attr
to
the value specified by param
.
As required by POSIX, RTEMS defines the feature symbol
_POSIX_THREAD_PRIORITY_SCHEDULING
to indicate that the
family of routines to which this routine belongs is supported.
Copyright © 1988-2004 OAR Corporation