Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fcntl_trampoline (0.14 sec)

  1. src/runtime/sys_openbsd2.go

    	args := struct {
    		fd, cmd, arg int32
    		ret, errno   int32
    	}{fd, cmd, arg, 0, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(fcntl_trampoline)), unsafe.Pointer(&args))
    	return args.ret, args.errno
    }
    func fcntl_trampoline()
    
    //go:nosplit
    func nanotime1() int64 {
    	var ts timespec
    	args := struct {
    		clock_id int32
    		tp       unsafe.Pointer
    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

    	args := struct {
    		fd, cmd, arg int32
    		ret, errno   int32
    	}{fd, cmd, arg, 0, 0}
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(fcntl_trampoline)), unsafe.Pointer(&args))
    	return args.ret, args.errno
    }
    func fcntl_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func kqueue() int32 {
    	v := libcCall(unsafe.Pointer(abi.FuncPCABI0(kqueue_trampoline)), nil)
    	return v
    }
    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