blob: 0d4e736f93a3492af7d045e6788cc9d02946a42a [file] [log] [blame]
// Copyright 2016 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 signal
import "os"
const numSig = 65
func signum(sig os.Signal) int {
panic("TODO")
}
func enableSignal(sig int) {
panic("TODO")
}
func disableSignal(sig int) {
panic("TODO")
}
func ignoreSignal(sig int) {
panic("TODO")
}
func signalIgnored(sig int) bool {
panic("TODO")
}