Loading...
Searching...
No Matches
pthread_scheduling.h File Reference

Scheduling parameters and policies of pthreads. More...

Detailed Description

Scheduling parameters and policies of pthreads.

Note
None of these functions are implemented, yet.
Do not include this header file directly, but pthread.h.

Definition in file pthread_scheduling.h.

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

int pthread_setschedparam (pthread_t target_thread, int policy, const struct sched_param *param)
 Unimplemented.
 
int pthread_getschedparam (pthread_t target_thread, int *policy, struct sched_param *param)
 Unimplemented.
 
int pthread_setschedprio (pthread_t target_thread, int prio)
 Unimplemented.
 

Function Documentation

◆ pthread_getschedparam()

int pthread_getschedparam ( 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
[in]target_threadUnused
[in,out]policyUnused
[out]paramUnused
Returns
The function is unimplemented. Using it will cause a link time error.

◆ pthread_setschedparam()

int pthread_setschedparam ( 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
[in]target_threadUnused
[in]policyUnused
[in]paramUnused
Returns
The function is unimplemented. Using it will cause a link time error.

◆ pthread_setschedprio()

int pthread_setschedprio ( 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
[in]target_threadUnused
[in]prioUnused
Returns
The function is unimplemented. Using it will cause a link time error.