Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pthread_attr_getstacksize_trampoline (0.23 sec)

  1. src/runtime/sys_openbsd.go

    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_getstacksize(attr *pthreadattr, size *uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_attr_getstacksize_trampoline)), unsafe.Pointer(&attr))
    	KeepAlive(attr)
    	KeepAlive(size)
    	return ret
    }
    func pthread_attr_getstacksize_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_setdetachstate(attr *pthreadattr, state int) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin.go

    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_getstacksize(attr *pthreadattr, size *uintptr) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(pthread_attr_getstacksize_trampoline)), unsafe.Pointer(&attr))
    	KeepAlive(attr)
    	KeepAlive(size)
    	return ret
    }
    func pthread_attr_getstacksize_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_setdetachstate(attr *pthreadattr, state int) int32 {
    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