Home
last modified time | relevance | path

Searched refs:schp (Results 1 – 1 of 1) sorted by relevance

/qemu/linux-user/
H A Dsyscall.c11328 struct sched_param schp; in _syscall2() local
11336 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2()
11338 return get_errno(sys_sched_setparam(arg1, &schp)); in _syscall2()
11343 struct sched_param schp; in _syscall2() local
11348 ret = get_errno(sys_sched_getparam(arg1, &schp)); in _syscall2()
11353 target_schp->sched_priority = tswap32(schp.sched_priority); in _syscall2()
11361 struct sched_param schp; in _syscall2() local
11368 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2()
11370 return get_errno(sys_sched_setscheduler(arg1, arg2, &schp)); in _syscall2()