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

Side by Side Diff: src/runtime/signal_openbsd.go

Issue 171660043: [dev.cc] code review 171660043: [dev.cc] runtime: convert openbsd/amd64 runtime from C to Go (Closed)
Patch Set: diff -r 77165825584c31af5768f2f5d7783981b105c655 https://go.googlecode.com/hg/ Created 10 years, 4 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/runtime/os_openbsd.go ('k') | src/runtime/signal_openbsd_amd64.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 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 #include "textflag.h" 5 package runtime
6 6
7 #define N SigNotify 7 type sigTabT struct {
8 #define K SigKill 8 » flags int32
9 #define T SigThrow 9 » name string
10 #define P SigPanic 10 }
11 #define D SigDefault
12 11
13 #pragma dataflag NOPTR 12 var sigtable = [...]sigTabT{
14 SigTab runtime·sigtab[] = { 13 » /* 0 */ {0, "SIGNONE: no trap"},
15 » /* 0 */» 0, "SIGNONE: no trap", 14 » /* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
16 » /* 1 */» N+K, "SIGHUP: terminal line hangup", 15 » /* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
17 » /* 2 */» N+K, "SIGINT: interrupt", 16 » /* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
18 » /* 3 */» N+T, "SIGQUIT: quit", 17 » /* 4 */ {_SigThrow, "SIGILL: illegal instruction"},
19 » /* 4 */» T, "SIGILL: illegal instruction", 18 » /* 5 */ {_SigThrow, "SIGTRAP: trace trap"},
20 » /* 5 */» T, "SIGTRAP: trace trap", 19 » /* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
21 » /* 6 */» N+T, "SIGABRT: abort", 20 » /* 7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
22 » /* 7 */» T, "SIGEMT: emulate instruction executed", 21 » /* 8 */ {_SigPanic, "SIGFPE: floating-point exception"},
23 » /* 8 */» P, "SIGFPE: floating-point exception", 22 » /* 9 */ {0, "SIGKILL: kill"},
24 » /* 9 */» 0, "SIGKILL: kill", 23 » /* 10 */ {_SigPanic, "SIGBUS: bus error"},
25 » /* 10 */» P, "SIGBUS: bus error", 24 » /* 11 */ {_SigPanic, "SIGSEGV: segmentation violation"},
26 » /* 11 */» P, "SIGSEGV: segmentation violation", 25 » /* 12 */ {_SigThrow, "SIGSYS: bad system call"},
27 » /* 12 */» T, "SIGSYS: bad system call", 26 » /* 13 */ {_SigNotify, "SIGPIPE: write to broken pipe"},
28 » /* 13 */» N, "SIGPIPE: write to broken pipe", 27 » /* 14 */ {_SigNotify, "SIGALRM: alarm clock"},
29 » /* 14 */» N, "SIGALRM: alarm clock", 28 » /* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
30 » /* 15 */» N+K, "SIGTERM: termination", 29 » /* 16 */ {_SigNotify, "SIGURG: urgent condition on socket"},
31 » /* 16 */» N, "SIGURG: urgent condition on socket", 30 » /* 17 */ {0, "SIGSTOP: stop"},
32 » /* 17 */» 0, "SIGSTOP: stop", 31 » /* 18 */ {_SigNotify + _SigDefault, "SIGTSTP: keyboard stop"},
33 » /* 18 */» N+D, "SIGTSTP: keyboard stop", 32 » /* 19 */ {0, "SIGCONT: continue after stop"},
34 » /* 19 */» 0, "SIGCONT: continue after stop", 33 » /* 20 */ {_SigNotify, "SIGCHLD: child status has changed"},
35 » /* 20 */» N, "SIGCHLD: child status has changed", 34 » /* 21 */ {_SigNotify + _SigDefault, "SIGTTIN: background read from tty"} ,
36 » /* 21 */» N+D, "SIGTTIN: background read from tty", 35 » /* 22 */ {_SigNotify + _SigDefault, "SIGTTOU: background write to tty"},
37 » /* 22 */» N+D, "SIGTTOU: background write to tty", 36 » /* 23 */ {_SigNotify, "SIGIO: i/o now possible"},
38 » /* 23 */» N, "SIGIO: i/o now possible", 37 » /* 24 */ {_SigNotify, "SIGXCPU: cpu limit exceeded"},
39 » /* 24 */» N, "SIGXCPU: cpu limit exceeded", 38 » /* 25 */ {_SigNotify, "SIGXFSZ: file size limit exceeded"},
40 » /* 25 */» N, "SIGXFSZ: file size limit exceeded", 39 » /* 26 */ {_SigNotify, "SIGVTALRM: virtual alarm clock"},
41 » /* 26 */» N, "SIGVTALRM: virtual alarm clock", 40 » /* 27 */ {_SigNotify, "SIGPROF: profiling alarm clock"},
42 » /* 27 */» N, "SIGPROF: profiling alarm clock", 41 » /* 28 */ {_SigNotify, "SIGWINCH: window size change"},
43 » /* 28 */» N, "SIGWINCH: window size change", 42 » /* 29 */ {_SigNotify, "SIGINFO: status request from keyboard"},
44 » /* 29 */» N, "SIGINFO: status request from keyboard", 43 » /* 30 */ {_SigNotify, "SIGUSR1: user-defined signal 1"},
45 » /* 30 */» N, "SIGUSR1: user-defined signal 1", 44 » /* 31 */ {_SigNotify, "SIGUSR2: user-defined signal 2"},
46 » /* 31 */» N, "SIGUSR2: user-defined signal 2", 45 » /* 32 */ {_SigNotify, "SIGTHR: reserved"},
47 » /* 32 */» N, "SIGTHR: reserved", 46 }
48 };
49
50 #undef N
51 #undef K
52 #undef T
53 #undef P
54 #undef D
OLDNEW
« no previous file with comments | « src/runtime/os_openbsd.go ('k') | src/runtime/signal_openbsd_amd64.go » ('j') | no next file with comments »

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