mirror of
https://github.com/golang/go
synced 2024-11-08 10:56:23 -07:00
67 lines
2.2 KiB
Go
67 lines
2.2 KiB
Go
|
// Copyright 2018 The Go Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package runtime
|
||
|
|
||
|
import "unsafe"
|
||
|
|
||
|
// The *_trampoline functions convert from the Go calling convention to the C calling convention
|
||
|
// and then call the underlying libc function. They are defined in sys_darwin_$ARCH.s.
|
||
|
|
||
|
//go:nowritebarrier
|
||
|
func pthread_attr_init(attr *pthreadattr) (errno int32) {
|
||
|
systemstack(func() {
|
||
|
errno = pthread_attr_init_trampoline(attr)
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
//go:noescape
|
||
|
func pthread_attr_init_trampoline(attr *pthreadattr) int32
|
||
|
|
||
|
//go:nowritebarrier
|
||
|
func pthread_attr_setstack(attr *pthreadattr, addr unsafe.Pointer, size uintptr) (errno int32) {
|
||
|
systemstack(func() {
|
||
|
errno = pthread_attr_setstack_trampoline(attr, addr, size)
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
//go:noescape
|
||
|
func pthread_attr_setstack_trampoline(attr *pthreadattr, addr unsafe.Pointer, size uintptr) int32
|
||
|
|
||
|
//go:nowritebarrier
|
||
|
func pthread_attr_setdetachstate(attr *pthreadattr, state int) (errno int32) {
|
||
|
systemstack(func() {
|
||
|
errno = pthread_attr_setdetachstate_trampoline(attr, state)
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
//go:noescape
|
||
|
func pthread_attr_setdetachstate_trampoline(attr *pthreadattr, state int) int32
|
||
|
|
||
|
//go:nowritebarrier
|
||
|
func pthread_create(attr *pthreadattr, start uintptr, arg unsafe.Pointer) (t pthread, errno int32) {
|
||
|
systemstack(func() {
|
||
|
errno = pthread_create_trampoline(&t, attr, start, arg)
|
||
|
})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
//go:noescape
|
||
|
func pthread_create_trampoline(t *pthread, attr *pthreadattr, start uintptr, arg unsafe.Pointer) int32
|
||
|
|
||
|
// Tell the linker that the libc_* functions are to be found
|
||
|
// in a system library, with the libc_ prefix missing.
|
||
|
|
||
|
//go:cgo_import_dynamic libc_pthread_attr_init pthread_attr_init "/usr/lib/libSystem.B.dylib"
|
||
|
//go:cgo_import_dynamic libc_pthread_attr_setstack pthread_attr_setstack "/usr/lib/libSystem.B.dylib"
|
||
|
//go:cgo_import_dynamic libc_pthread_attr_setdetachstate pthread_attr_setdetachstate "/usr/lib/libSystem.B.dylib"
|
||
|
//go:cgo_import_dynamic libc_pthread_create pthread_create "/usr/lib/libSystem.B.dylib"
|
||
|
|
||
|
// Magic incantation to get libSystem actually dynamically linked.
|
||
|
// TODO: Why does the code require this? See cmd/compile/internal/ld/go.go:210
|
||
|
//go:cgo_import_dynamic _ _ "/usr/lib/libSystem.B.dylib"
|