pthread_scheduling.h

Scheduling parameters and policies of pthreads.

Note

None of these functions are implemented, yet.

Note

Do not include this header file directly, but pthread.h.

int pthread_setschedparam(pthread_threading.h::pthread_t target_thread, int policy, const struct sched_param * param)

Unimplemented.

Note

Due to the native of RIOT it is unlikely that this function will ever be implemented.

Parameters

target_thread:Unused
policy:Unused
param:Unused

Return values

  • The function is unimplemented. Using it will cause a link time error.
int pthread_getschedparam(pthread_threading.h::pthread_t target_thread, int * policy, struct sched_param * param)

Unimplemented.

Note

Due to the native of RIOT it is unlikely that this function will ever be implemented.

Parameters

target_thread:Unused
policy:Unused
param:Unused

Return values

  • The function is unimplemented. Using it will cause a link time error.
int pthread_setschedprio(pthread_threading.h::pthread_t target_thread, int prio)

Unimplemented.

Note

Due to the native of RIOT it is unlikely that this function will ever be implemented.

Parameters

target_thread:Unused
prio:Unused

Return values

  • The function is unimplemented. Using it will cause a link time error.