mirror of
https://github.com/golang/go
synced 2024-11-20 06:14:53 -07:00
d707a6e0e2
I introduced this build failure in golang.org/cl/9302 but failed to notice due to the other failures on the dashboard. Change-Id: I84bf00f664ba572c1ca722e0136d8a2cf21613ca Reviewed-on: https://go-review.googlesource.com/9363 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Minux Ma <minux@golang.org>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
// Copyright 2014 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"
|
|
|
|
//go:noescape
|
|
func setitimer(mode int32, new, old *itimerval)
|
|
|
|
//go:noescape
|
|
func sigaction(sig int32, new, old *sigactiont)
|
|
|
|
//go:noescape
|
|
func sigaltstack(new, old *sigaltstackt)
|
|
|
|
func sigfwd(fn uintptr, sig uint32, info *siginfo, ctx unsafe.Pointer) {
|
|
throw("sigfwd not implemented")
|
|
}
|
|
|
|
//go:noescape
|
|
func sigprocmask(mode int32, new, old *sigset)
|
|
|
|
//go:noescape
|
|
func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
|
|
|
|
func lwp_tramp()
|
|
|
|
func raise(sig int32)
|
|
func raiseproc(sig int32)
|
|
|
|
//go:noescape
|
|
func getcontext(ctxt unsafe.Pointer)
|
|
|
|
//go:noescape
|
|
func lwp_create(ctxt unsafe.Pointer, flags uintptr, lwpid unsafe.Pointer) int32
|
|
|
|
//go:noescape
|
|
func lwp_park(abstime *timespec, unpark int32, hint, unparkhint unsafe.Pointer) int32
|
|
|
|
//go:noescape
|
|
func lwp_unpark(lwp int32, hint unsafe.Pointer) int32
|
|
|
|
func lwp_self() int32
|
|
|
|
func osyield()
|