File: mkfifo_nosolaris.go

package info (click to toggle)
golang-github-containerd-fifo 0.0~git20170714.fbfb6a1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 124 kB
  • sloc: makefile: 11
file content (9 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
// +build !solaris

package fifo

import "syscall"

func mkfifo(path string, mode uint32) (err error) {
	return syscall.Mkfifo(path, mode)
}