Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for syscall_close (0.17 sec)

  1. src/runtime/syscall_solaris.go

    	}
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	return call.err
    }
    
    // like close, but must not split stack, for forkx.
    //
    //go:nosplit
    //go:linkname syscall_close
    func syscall_close(fd int32) int32 {
    	return int32(sysvicall1(&libc_close, uintptr(fd)))
    }
    
    const _F_DUP2FD = 0x9
    
    //go:nosplit
    //go:linkname syscall_dup2
    func syscall_dup2(oldfd, newfd uintptr) (val, err uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/syscall_aix.go

    //go:nosplit
    func syscall_chroot1(path uintptr) (err uintptr) {
    	_, err = syscall1(&libc_chroot, path)
    	return
    }
    
    // like close, but must not split stack, for fork.
    //
    //go:linkname syscall_closeFD syscall.closeFD
    //go:nosplit
    func syscall_closeFD(fd int32) int32 {
    	_, err := syscall1(&libc_close, uintptr(fd))
    	return int32(err)
    }
    
    //go:linkname syscall_dup2child syscall.dup2child
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    	Value  [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    	Value  [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    	Value  [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    	Value  [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go

    	Lwpid        int32
    	Event        int32
    	Flags        int32
    	Sigmask      Sigset_t
    	Siglist      Sigset_t
    	Siginfo      __PtraceSiginfo
    	Tdname       [20]int8
    	Child_pid    int32
    	Syscall_code uint32
    	Syscall_narg uint32
    }
    
    type __Siginfo struct {
    	Signo  int32
    	Errno  int32
    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   *byte
    	Value  [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top