vote up 0 vote down star

With no explicit scheduling, pthreads are scheduled to run by the kernel in a random manner.

Are there any scheduling methods defined in the pthread library for the same such as priorities?

flag

62% accept rate

1 Answer

vote up 1 vote down

The priority of a thread is specified as a delta which is added to the priority of the process. Changing the priority of the process, effects the priority of all of the threads within that process. The default priority for a thread is DEFAULT_PRIO_NP, which is no change from the process priority.

These Pthread APIs support only a scheduling policy of SCHED_OTHER.

  1. pthread_setschedparam (SCHED_OTHERonly supported)
  2. pthread_getschedparam
  3. pthread_attr_setschedparam
  4. pthread_attr_getschedparam

An AS/400 thread competes for scheduling resources against other threads in the system, not solely against other threads in the process. The scheduler is a delay cost scheduler based on several delay cost curves (priority ranges). The Posix standard and the Single Unix Specification refers to this as scheduling scope and scheduling policy, which on this implementation cannot be changed from the default of SCHED_OTHER.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.