Home | History | Annotate | Download | only in syscall

Lines Matching refs:who

648 func Getpriority(which int, who int) (prio int, err error) {
649 r0, _, e1 := Syscall(SYS_GETPRIORITY, uintptr(which), uintptr(who), 0)
669 func Getrusage(who int, rusage *Rusage) (err error) {
670 _, _, e1 := RawSyscall(SYS_GETRUSAGE, uintptr(who), uintptr(unsafe.Pointer(rusage)), 0)
1136 func Setpriority(which int, who int, prio int) (err error) {
1137 _, _, e1 := Syscall(SYS_SETPRIORITY, uintptr(which), uintptr(who), uintptr(prio))