File: mkfifo_solaris.go

package info (click to toggle)
golang-github-tonistiigi-fifo 0.0~git20161203.0.fe870cc-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • ctags: 36
  • 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)
}