Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for pthread_cond_wait_trampoline (0.35 sec)

  1. src/runtime/sys_darwin.go

    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_cond_init_trampoline)), unsafe.Pointer(&c))
    	KeepAlive(c)
    	KeepAlive(attr)
    	return ret
    }
    func pthread_cond_init_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_cond_wait(c *pthreadcond, m *pthreadmutex) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_cond_wait_trampoline)), unsafe.Pointer(&c))
    	KeepAlive(c)
    	KeepAlive(m)
    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