mirror of
https://github.com/golang/go.git
synced 2025-11-09 05:01:01 +00:00
os/signal depends on a few unexported runtime functions. This removes the assembly stubs it used to get access to these in favour of using //go:linkname in runtime to make the functions accessible to os/signal. This is motivated by ppc64le shared libraries, where you cannot BR to a symbol defined in a shared library (only BL), but it seems like an improvment anyway. Change-Id: I09361203ce38070bd3f132f6dc5ac212f2dc6f58 Reviewed-on: https://go-review.googlesource.com/15871 Run-TryBot: Michael Hudson-Doyle <michael.hudson@canonical.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Minux Ma <minux@golang.org> Reviewed-by: Dave Cheney <dave@cheney.net>
58 lines
982 B
Go
58 lines
982 B
Go
// Copyright 2012 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.
|
|
|
|
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris windows
|
|
|
|
package signal
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// Defined by the runtime package.
|
|
func signal_disable(uint32)
|
|
func signal_enable(uint32)
|
|
func signal_ignore(uint32)
|
|
func signal_recv() uint32
|
|
|
|
func loop() {
|
|
for {
|
|
process(syscall.Signal(signal_recv()))
|
|
}
|
|
}
|
|
|
|
func init() {
|
|
signal_enable(0) // first call - initialize
|
|
go loop()
|
|
}
|
|
|
|
const (
|
|
numSig = 65 // max across all systems
|
|
)
|
|
|
|
func signum(sig os.Signal) int {
|
|
switch sig := sig.(type) {
|
|
case syscall.Signal:
|
|
i := int(sig)
|
|
if i < 0 || i >= numSig {
|
|
return -1
|
|
}
|
|
return i
|
|
default:
|
|
return -1
|
|
}
|
|
}
|
|
|
|
func enableSignal(sig int) {
|
|
signal_enable(uint32(sig))
|
|
}
|
|
|
|
func disableSignal(sig int) {
|
|
signal_disable(uint32(sig))
|
|
}
|
|
|
|
func ignoreSignal(sig int) {
|
|
signal_ignore(uint32(sig))
|
|
}
|