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)
Package-Level Functions (total 4)
func EpollCreate1(flags int32) (fd int32, errno uintptr) func EpollCtl(epfd, op, fd int32, event *EpollEvent) (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
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |