LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2013 The Go Authors. All rights reserved. | 1 // Copyright 2013 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 dragonfly freebsd linux netbsd openbsd | 5 // +build darwin dragonfly freebsd linux nacl netbsd openbsd |
6 | 6 |
7 #include "runtime.h" | 7 #include "runtime.h" |
8 #include "defs_GOOS_GOARCH.h" | 8 #include "defs_GOOS_GOARCH.h" |
9 #include "os_GOOS.h" | 9 #include "os_GOOS.h" |
10 #include "signal_GOOS_GOARCH.h" | 10 #include "signal_GOOS_GOARCH.h" |
11 #include "signals_GOOS.h" | 11 #include "signals_GOOS.h" |
12 | 12 |
13 void | 13 void |
14 runtime·dumpregs(Siginfo *info, void *ctxt) | 14 runtime·dumpregs(Siginfo *info, void *ctxt) |
15 { | 15 { |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 runtime·tracebackothers(gp); | 116 runtime·tracebackothers(gp); |
117 runtime·printf("\n"); | 117 runtime·printf("\n"); |
118 runtime·dumpregs(info, ctxt); | 118 runtime·dumpregs(info, ctxt); |
119 } | 119 } |
120 ········ | 120 ········ |
121 if(crash) | 121 if(crash) |
122 runtime·crash(); | 122 runtime·crash(); |
123 | 123 |
124 runtime·exit(2); | 124 runtime·exit(2); |
125 } | 125 } |
LEFT | RIGHT |