| // Copyright 2009 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. |
| // This file implements runtime support for signal handling. |
| func (q *noteQueue) push(item *byte) bool { |
| func (q *noteQueue) pop() *byte { |
| // Called from sighandler to send a signal back out of the signal handling thread. |
| // Reports whether the signal was sent. If not, the caller typically crashes the program. |
| func sendNote(s *byte) bool { |
| // Add signal to outgoing queue. |
| // Called to receive the next queued signal. |
| // Must only be called from a single goroutine at a time. |
| func signal_recv() string { |
| notetsleepg(&sig.note, -1) |
| // Must only be called from a single goroutine at a time. |
| func signal_enable(s uint32) { |
| // The first call to signal_enable is for us |
| // to use for initialization. It does not pass |
| // signal information in m. |
| sig.inuse = true // enable reception of signals; cannot disable |
| // Must only be called from a single goroutine at a time. |
| func signal_disable(s uint32) { |