package syscall

Import Path
	runtime/internal/syscall (on go.dev)

Dependency Relation
	imports one package, and imported by one package

Involved Source Files defs_linux_amd64.go Package syscall provides the syscall primitives required for the runtime. asm_linux_amd64.s
Package-Level Type Names (only one)
/* sort by: | */
// unaligned uintptr Events uint32 func EpollCtl(epfd, op, fd int32, event *EpollEvent) (errno uintptr) func EpollWait(epfd int32, events []EpollEvent, maxev, waitms int32) (n int32, errno uintptr)
Package-Level Functions (total 4)
func EpollCreate1(flags int32) (fd int32, errno uintptr)
func EpollCtl(epfd, op, fd int32, event *EpollEvent) (errno uintptr)
func EpollWait(epfd int32, events []EpollEvent, maxev, waitms int32) (n int32, errno uintptr)
Syscall6 calls system call number 'num' with arguments a1-6.
Package-Level Constants (total 15)
const EPOLL_CLOEXEC = 524288
const EPOLL_CTL_ADD = 1
const EPOLL_CTL_DEL = 2
const EPOLL_CTL_MOD = 3
const EPOLLERR = 8
const EPOLLET = 2147483648
const EPOLLHUP = 16
const EPOLLIN = 1
const EPOLLOUT = 4
const EPOLLRDHUP = 8192
const SYS_EPOLL_CREATE1 = 291
const SYS_EPOLL_CTL = 233
const SYS_EPOLL_PWAIT = 281
const SYS_EPOLL_PWAIT2 = 441
const SYS_FCNTL = 72