signal_unix.go 295 B

1234567891011121314
  1. // Copyright 2012 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build darwin dragonfly freebsd linux netbsd openbsd solaris
  5. package runtime
  6. func sigpipe()
  7. func os_sigpipe() {
  8. onM(sigpipe)
  9. }