Home
last modified time | relevance | path

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

/openbmc/qemu/linux-user/
H A Dsyscall.c11869 struct sched_param schp; in _syscall2() local
11877 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2()
11879 return get_errno(sys_sched_setparam(arg1, &schp)); in _syscall2()
11884 struct sched_param schp; in _syscall2() local
11889 ret = get_errno(sys_sched_getparam(arg1, &schp)); in _syscall2()
11894 target_schp->sched_priority = tswap32(schp.sched_priority); in _syscall2()
11902 struct sched_param schp; in _syscall2() local
11909 schp.sched_priority = tswap32(target_schp->sched_priority); in _syscall2()
11911 return get_errno(sys_sched_setscheduler(arg1, arg2, &schp)); in _syscall2()