Searched refs:sched_param (Results 1 – 4 of 4) sorted by relevance
| /components/libc/posix/pthreads/ |
| A D | pthread.h | 79 struct sched_param struct 91 struct sched_param schedparam; /* sched parameter */ argument 147 int pthread_attr_setschedparam(pthread_attr_t *attr,struct sched_param const *param); 148 int pthread_attr_getschedparam(pthread_attr_t const *attr,struct sched_param *param); 181 int pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param); 182 int pthread_setschedparam(pthread_t thread, int policy, const struct sched_param *param);
|
| A D | pthread_attr.c | 238 struct sched_param const *param) in pthread_attr_setschedparam() 263 struct sched_param *param) in pthread_attr_getschedparam()
|
| A D | pthread.c | 822 int pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param) in pthread_getschedparam() 875 int pthread_setschedparam(pthread_t thread, int policy, const struct sched_param *param) in pthread_setschedparam() 919 struct sched_param param; in pthread_setschedprio()
|
| /components/lwp/ |
| A D | lwp_syscall.c | 8767 struct sched_param *sched_param = RT_NULL; in sys_sched_setparam() local 8776 sched_param = kmem_get(sizeof(struct sched_param)); in sys_sched_setparam() 8782 …if (lwp_get_from_user(sched_param, param, sizeof(struct sched_param)) != sizeof(struct sched_param… in sys_sched_setparam() 8797 kmem_put(sched_param); in sys_sched_setparam() 8837 struct sched_param *sched_param = RT_NULL; in sys_sched_getparam() local 8846 sched_param = kmem_get(sizeof(struct sched_param)); in sys_sched_getparam() 8862 lwp_put_to_user((void *)param, sched_param, sizeof(struct sched_param)); in sys_sched_getparam() 8863 kmem_put(sched_param); in sys_sched_getparam() 8941 struct sched_param *sched_param = RT_NULL; in sys_sched_setscheduler() local 8949 sched_param = kmem_get(sizeof(struct sched_param)); in sys_sched_setscheduler() [all …]
|
Completed in 22 milliseconds