Searched refs:sched_param (Results 1 – 11 of 11) sorted by relevance
/Zephyr-latest/include/zephyr/posix/ |
D | sched.h | 33 struct sched_param { struct 52 int sched_getparam(pid_t pid, struct sched_param *param); argument 55 int sched_setparam(pid_t pid, const struct sched_param *param); 56 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param);
|
D | pthread.h | 417 struct sched_param *schedparam); 419 struct sched_param *param); 443 const struct sched_param *schedparam); 445 const struct sched_param *param);
|
/Zephyr-latest/lib/posix/options/ |
D | sched.c | 37 int sched_getparam(pid_t pid, struct sched_param *param) in sched_getparam() 66 int sched_setparam(pid_t pid, const struct sched_param *param) in sched_setparam() 81 int sched_setscheduler(pid_t pid, int policy, const struct sched_param *param) in sched_setscheduler()
|
D | pthread.c | 325 int pthread_attr_setschedparam(pthread_attr_t *_attr, const struct sched_param *schedparam) in pthread_attr_setschedparam() 861 int pthread_setschedparam(pthread_t pthread, int policy, const struct sched_param *param) in pthread_setschedparam() 901 struct sched_param param; in pthread_setschedprio() 978 int pthread_getschedparam(pthread_t pthread, int *policy, struct sched_param *param) in pthread_getschedparam() 1401 int pthread_attr_getschedparam(const pthread_attr_t *_attr, struct sched_param *schedparam) in pthread_attr_getschedparam()
|
/Zephyr-latest/tests/posix/headers/src/ |
D | sched_h.c | 22 zassert_not_equal(-1, offsetof(struct sched_param, sched_priority)); in ZTEST()
|
/Zephyr-latest/tests/posix/common/src/ |
D | pthread.c | 62 struct sched_param schedparam; in thread_top_exec() 193 struct sched_param param, getschedparam; in thread_top_term() 465 struct sched_param param; in ZTEST() 481 struct sched_param param = { in ZTEST() 492 struct sched_param param = { in ZTEST() 594 struct sched_param param; in test_pthread_setschedprio_fn()
|
D | pthread_attr.c | 152 struct sched_param param = { in ZTEST() 174 struct sched_param param = {0}; in ZTEST() 329 struct sched_param param; in inheritsched_entry() 353 struct sched_param param; in test_pthread_attr_setinheritsched_common() 463 struct sched_param param; in ZTEST()
|
D | mutex.c | 53 struct sched_param schedparam; in test_mutex_common()
|
/Zephyr-latest/samples/posix/philosophers/src/ |
D | main.c | 91 struct sched_param param; in print_phil_state() 216 struct sched_param param; in start_threads()
|
/Zephyr-latest/tests/benchmarks/posix/threads/src/ |
D | main.c | 206 const struct sched_param param = { in setup()
|
/Zephyr-latest/doc/releases/ |
D | release-notes-1.14.rst | 1538 * :github:`13470` - Lack of POSIX compliance for sched_param struct
|