Returns the schedule parameters for the specified thread.
#include <pthread.h>
int pthread_getschedparam (
pthread_t thread,
int *policy,
struct sched_param *param);
(IN) Specifies the thread.
(OUT) Points to the policy. For a list of possible values, see Section 55.1.1, Schedule Policies.
(OUT) Points to the schedule parameters for the policy.
If successful, returns 0; otherwise, returns a nonzero error code:
NetWare does not currently support multiple scheduling policies. It uses a default policy of FIFO.