2016-04-29 11:42:41 +00:00
|
|
|
// +build linux,!arm64
|
2016-04-13 09:29:20 +00:00
|
|
|
|
2016-11-29 23:37:06 +00:00
|
|
|
package sys
|
2016-04-06 03:17:30 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// EpollCreate1 directly calls syscall.EpollCreate1
|
2016-04-06 03:17:30 +00:00
|
|
|
func EpollCreate1(flag int) (int, error) {
|
|
|
|
return syscall.EpollCreate1(flag)
|
|
|
|
}
|
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// EpollCtl directly calls syscall.EpollCtl
|
2016-04-06 03:17:30 +00:00
|
|
|
func EpollCtl(epfd int, op int, fd int, event *syscall.EpollEvent) error {
|
|
|
|
return syscall.EpollCtl(epfd, op, fd, event)
|
|
|
|
}
|
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// EpollWait directly calls syscall.EpollWait
|
2016-04-06 03:17:30 +00:00
|
|
|
func EpollWait(epfd int, events []syscall.EpollEvent, msec int) (int, error) {
|
|
|
|
return syscall.EpollWait(epfd, events, msec)
|
|
|
|
}
|