mirror of
https://github.com/golang/go
synced 2024-11-20 04:44:40 -07:00
9fb79380f0
This change splits signal_unix.go into signal_unix.go and signal2_unix.go and removes the fake symbol sigfwd from signal forwarding unsupported platforms for clarification purpose. Change-Id: I205eab5cf1930fda8a68659b35cfa9f3a0e67ca6 Reviewed-on: https://go-review.googlesource.com/12062 Reviewed-by: Ian Lance Taylor <iant@golang.org>
36 lines
830 B
Go
36 lines
830 B
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 thr_new(param *thrparam, size int32)
|
|
|
|
//go:noescape
|
|
func sigaltstack(new, old *stackt)
|
|
|
|
//go:noescape
|
|
func sigaction(sig int32, new, old *sigactiont)
|
|
|
|
//go:noescape
|
|
func sigprocmask(how int32, new, old *sigset)
|
|
|
|
//go:noescape
|
|
func setitimer(mode int32, new, old *itimerval)
|
|
|
|
//go:noescape
|
|
func sysctl(mib *uint32, miblen uint32, out *byte, size *uintptr, dst *byte, ndst uintptr) int32
|
|
|
|
//go:noescape
|
|
func getrlimit(kind int32, limit unsafe.Pointer) int32
|
|
func raise(sig int32)
|
|
func raiseproc(sig int32)
|
|
|
|
//go:noescape
|
|
func sys_umtx_op(addr *uint32, mode int32, val uint32, ptr2, ts *timespec) int32
|
|
|
|
func osyield()
|