Home | History | Annotate | Download | only in syscall

Lines Matching refs:who

545 func Getpriority(which int, who int) (prio int, err error) {
546 r0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)
556 func Getrusage(who int, rusage *Rusage) (err error) {
557 _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
900 func Setpriority(which int, who int, prio int) (err error) {
901 _, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))