Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mkfifoat (0.3 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_UtimesNanoAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·UtimesNano(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_MkfifoatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Mkfifoat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_ChtagAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Chtag(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_ReadlinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/internal/wasitest/nonblock_test.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Not all systems have syscall.Mkfifo.
    //go:build !aix && !plan9 && !solaris && !wasm && !windows
    
    package wasi_test
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"math/rand"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"syscall"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 15:35:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/os/fifo_test.go

    	"strconv"
    	"sync"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func TestFifoEOF(t *testing.T) {
    	t.Parallel()
    
    	dir := t.TempDir()
    	fifoName := filepath.Join(dir, "fifo")
    	if err := syscall.Mkfifo(fifoName, 0600); err != nil {
    		t.Fatal(err)
    	}
    
    	// Per https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html#tag_16_357_03:
    	//
    	// - “If O_NONBLOCK is clear, an open() for reading-only shall block the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/syscall/syscall_openbsd.go

    //sys	Link(path string, link string) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 10:34:00 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/syscall/syscall_netbsd.go

    //sys	Link(path string, link string) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. src/syscall/syscall_freebsd.go

    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	mknodat(fd int, path string, mode uint32, dev uint64) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. src/syscall/syscall_dragonfly.go

    //sys	Link(path string, link string) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Nanosleep(time *Timespec, leftover *Timespec) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top