5624732128
* Add a new lint rule to the Makefile Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> * Fix linter errors Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> * Allow replacing the default apt mirror Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
22 lines
540 B
Go
22 lines
540 B
Go
// +build linux,!arm64
|
|
|
|
package archutils
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// EpollCreate1 directly calls syscall.EpollCreate1
|
|
func EpollCreate1(flag int) (int, error) {
|
|
return syscall.EpollCreate1(flag)
|
|
}
|
|
|
|
// EpollCtl directly calls syscall.EpollCtl
|
|
func EpollCtl(epfd int, op int, fd int, event *syscall.EpollEvent) error {
|
|
return syscall.EpollCtl(epfd, op, fd, event)
|
|
}
|
|
|
|
// EpollWait directly calls syscall.EpollWait
|
|
func EpollWait(epfd int, events []syscall.EpollEvent, msec int) (int, error) {
|
|
return syscall.EpollWait(epfd, events, msec)
|
|
}
|