summaryrefslogtreecommitdiff
path: root/src/pkg/os/mkunixsignals.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/os/mkunixsignals.sh')
-rwxr-xr-xsrc/pkg/os/mkunixsignals.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pkg/os/mkunixsignals.sh b/src/pkg/os/mkunixsignals.sh
new file mode 100755
index 000000000..6ec764cbd
--- /dev/null
+++ b/src/pkg/os/mkunixsignals.sh
@@ -0,0 +1,24 @@
+#!/usr/bin/env bash
+# Copyright 2010 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.
+
+echo '// ./mkunix.sh' "$1"
+echo '// MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT'
+echo
+
+cat <<EOH
+package os
+
+import (
+ "syscall"
+)
+
+var _ = syscall.Syscall // in case there are zero signals
+
+const (
+EOH
+
+sed -n 's/^[ ]*\(SIG[A-Z0-9][A-Z0-9]*\)[ ].*/ \1 = UnixSignal(syscall.\1)/p' "$1"
+
+echo ")"