blob: c27eba344079022f5fd64196f6aef6420406bc37 [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")
}