package syscall

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

Dependency Relation
	imports 2 packages, and imported by 3 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, which is exported)
/* sort exporteds 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 9, all are exported)
func Close(fd int) (errno uintptr)
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)
func Eventfd(initval, flags int32) (fd int32, errno uintptr)
func Open(path *byte, mode int, perm uint32) (fd int, errno uintptr)
func Pread(fd int, p []byte, offset int64) (n int, errno uintptr)
func Read(fd int, p []byte) (n int, errno uintptr)
Syscall6 calls system call number 'num' with arguments a1-6.
Package-Level Variables (only one, which is unexported)