Home | History | Annotate | Download | only in syscall

Lines Matching refs:epfd

346 func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) {
347 _, _, e1 := RawSyscall6(SYS_EPOLL_CTL, uintptr(epfd), uintptr(op), uintptr(fd), uintptr(unsafe.Pointer(event)), 0, 0)
356 func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) {
363 r0, _, e1 := Syscall6(SYS_EPOLL_WAIT, uintptr(epfd), uintptr(_p0), uintptr(len(events)), uintptr(msec), 0, 0)