head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.08.22.18.49.07; author bsiegert; state Exp; branches; next ; commitid S80wl0ktjWneiFSG; desc @@ 1.1 log @go: add Go 1.27.0 as lang/go127 To find out what has changed in Go 1.27, read the release notes: https://go.dev/doc/go1.27 @ text @$NetBSD: patch-src_syscall_syscall__solaris.go,v 1.1 2026/02/22 15:20:08 bsiegert Exp $ Implement syscall.Mkfifo(). --- src/syscall/syscall_solaris.go.orig 2024-04-02 09:32:01.070235927 +0000 +++ src/syscall/syscall_solaris.go @@@@ -279,6 +279,10 @@@@ func Wait4(pid int, wstatus *WaitStatus, return int(r0), err } +func Mkfifo(path string, mode uint32) (err error) { + return Mknod(path, mode|S_IFIFO, 0) +} + func gethostname() (name string, err uintptr) func Gethostname() (name string, err error) { @