Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sigaction_trampoline (0.29 sec)

  1. src/runtime/sys_openbsd2.go

    func kevent_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sigaction(sig uint32, new *sigactiont, old *sigactiont) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(sigaction_trampoline)), unsafe.Pointer(&sig))
    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigaction_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sigprocmask(how uint32, new *sigset, old *sigset) {
    	// sigprocmask is called from sigsave, which is called from needm.
    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

    //go:nosplit
    //go:cgo_unsafe_args
    func sigaction(sig uint32, new *usigactiont, old *usigactiont) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(sigaction_trampoline)), unsafe.Pointer(&sig))
    	KeepAlive(new)
    	KeepAlive(old)
    }
    func sigaction_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func sigprocmask(how uint32, new *sigset, old *sigset) {
    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