Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for syscall_fcntl1 (0.1 sec)

  1. src/runtime/syscall_aix.go

    //
    //go:linkname syscall_exit syscall.exit
    //go:nosplit
    func syscall_exit(code uintptr) {
    	syscall1(&libc_exit, code)
    }
    
    //go:linkname syscall_fcntl1 syscall.fcntl1
    //go:nosplit
    func syscall_fcntl1(fd, cmd, arg uintptr) (val, err uintptr) {
    	val, err = syscall3(&libc_fcntl, fd, cmd, arg)
    	return
    }
    
    //go:linkname syscall_forkx syscall.forkx
    //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)
  2. src/runtime/syscall_solaris.go

    //
    //go:nosplit
    //go:linkname syscall_exit
    func syscall_exit(code uintptr) {
    	sysvicall1(&libc_exit, code)
    }
    
    //go:nosplit
    //go:linkname syscall_fcntl
    //go:cgo_unsafe_args
    func syscall_fcntl(fd, cmd, arg uintptr) (val, err uintptr) {
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_fcntl)),
    		n:    3,
    		args: uintptr(unsafe.Pointer(&fd)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top