summaryrefslogtreecommitdiff
path: root/src/cmd/go/signal_notunix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/go/signal_notunix.go')
-rw-r--r--src/cmd/go/signal_notunix.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cmd/go/signal_notunix.go b/src/cmd/go/signal_notunix.go
new file mode 100644
index 000000000..ef13c1919
--- /dev/null
+++ b/src/cmd/go/signal_notunix.go
@@ -0,0 +1,13 @@
+// Copyright 2012 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.
+
+// +build plan9 windows
+
+package main
+
+import (
+ "os"
+)
+
+var signalsToIgnore = []os.Signal{os.Interrupt}