Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(457)

Side by Side Diff: src/pkg/os/signal/signal_unix.go

Issue 5656048: code review 5656048: runtime, syscall, os/signal: fix windows build (Closed)
Patch Set: diff -r 15d7c8abf2ba https://go.googlecode.com/hg/ Created 13 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/net/dial_test.go ('k') | src/pkg/os/signal/signal_windows_test.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « src/pkg/net/dial_test.go ('k') | src/pkg/os/signal/signal_windows_test.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b