File: mkfifo_solaris.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 (11 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
// +build solaris

package fifo

import (
	"golang.org/x/sys/unix"
)

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