func syscall.Pipe2
5 uses
syscall (current package)
forkpipe2.go#L14: return Pipe2(p, O_CLOEXEC)
syscall_linux.go#L282: return Pipe2(p, 0)
syscall_linux.go#L287: func Pipe2(p []int, flags int) error {
internal/poll
splice_linux.go#L232: if err := syscall.Pipe2(fds[:], syscall.O_CLOEXEC|syscall.O_NONBLOCK); err != nil {
os
pipe2_unix.go#L16: e := syscall.Pipe2(p[0:], syscall.O_CLOEXEC)
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. |