Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for open_trampoline (0.21 sec)

  1. src/runtime/sys_openbsd2.go

    }
    func madvise_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func open(name *byte, mode, perm int32) (ret int32) {
    	ret = libcCall(unsafe.Pointer(abi.FuncPCABI0(open_trampoline)), unsafe.Pointer(&name))
    	KeepAlive(name)
    	return
    }
    func open_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func closefd(fd int32) int32 {
    	return libcCall(unsafe.Pointer(abi.FuncPCABI0(close_trampoline)), unsafe.Pointer(&fd))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    }
    func write_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func open(name *byte, mode, perm int32) (ret int32) {
    	ret = libcCall(unsafe.Pointer(abi.FuncPCABI0(open_trampoline)), unsafe.Pointer(&name))
    	KeepAlive(name)
    	return
    }
    func open_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func nanotime1() int64 {
    	var r struct {
    		t            int64  // raw timer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top