Documentation
¶
Overview ¶
Package poll supports non-blocking I/O on file descriptors with polling. This supports I/O operations that block only a goroutine, not a thread. This is used by the net and os packages. It uses a poller built into the runtime, with support from the runtime scheduler.
Index ¶
- Variables
- func CopyFileRange(dst, src *FD, remain int64) (written int64, handled bool, err error)
- func DupCloseOnExec(fd int) (int, string, error)
- func IsPollDescriptor(fd uintptr) bool
- func SendFile(dstFD *FD, src int, remain int64) (int64, error)
- func Splice(dst, src *FD, remain int64) (written int64, handled bool, sc string, err error)
- type DeadlineExceededError