package syscall
Import Path
internal/runtime/syscall (on go.dev)
Dependency Relation
imports one package, and imported by 2 packages
Involved Source Files
defs_linux.go
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 5)
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 19)
const EFD_CLOEXEC = 524288 const EFD_NONBLOCK = 2048 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_EVENTFD2 = 290 const SYS_FCNTL = 72 const SYS_MPROTECT = 10
The pages are generated with Golds v0.7.0-preview. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |