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

Side by Side Diff: src/pkg/os/signal/mkunix.sh

Issue 183142: code review 183142: Replicate signal names from syscall in os/signal. (Closed)
Patch Set: code review 183142: Replicate signal names from syscall in os/signal. Created 15 years, 2 months 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/os/signal/Makefile ('k') | src/pkg/os/signal/signal_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
(Empty)
1 #!/usr/bin/env bash
2 # Copyright 2010 The Go Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style
4 # license that can be found in the LICENSE file.
5
6 echo '// ./mkunix.sh' "$1"
7 echo '// MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT'
8 echo
9
10 cat <<EOH
11 package signal
12
13 import (
14 "syscall"
15 )
16
17 var _ = syscall.Syscall // in case there are zero signals
18
19 const (
20 EOH
21
22 sed -n 's/^[ ]*\(SIG[A-Z0-9][A-Z0-9]*\).*/ \1 = UnixSignal(syscall.\1)/p' "$ 1"
23
24 echo ")"
OLDNEW
« no previous file with comments | « src/pkg/os/signal/Makefile ('k') | src/pkg/os/signal/signal_test.go » ('j') | no next file with comments »

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