OLD | NEW |
1 // Copyright 2012 The Go Authors. All rights reserved. | 1 // Copyright 2012 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // +build darwin freebsd linux netbsd openbsd | 5 // +build darwin freebsd linux netbsd openbsd windows |
6 | 6 |
7 package signal | 7 package signal |
8 | 8 |
9 import ( | 9 import ( |
10 "os" | 10 "os" |
11 "syscall" | 11 "syscall" |
12 ) | 12 ) |
13 | 13 |
14 // In assembly. | 14 // In assembly. |
15 func signal_enable(uint32) | 15 func signal_enable(uint32) |
(...skipping 13 matching lines...) Expand all Loading... |
29 func enableSignal(sig os.Signal) { | 29 func enableSignal(sig os.Signal) { |
30 switch sig := sig.(type) { | 30 switch sig := sig.(type) { |
31 case nil: | 31 case nil: |
32 signal_enable(^uint32(0)) | 32 signal_enable(^uint32(0)) |
33 case syscall.Signal: | 33 case syscall.Signal: |
34 signal_enable(uint32(sig)) | 34 signal_enable(uint32(sig)) |
35 default: | 35 default: |
36 // Can ignore: this signal (whatever it is) will never come in. | 36 // Can ignore: this signal (whatever it is) will never come in. |
37 } | 37 } |
38 } | 38 } |
OLD | NEW |