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

Delta Between Two Patch Sets: src/pkg/runtime/signal_386.c

Issue 68150047: all: merge NaCl branch (part 1)
Left Patch Set: Created 11 years, 1 month ago
Right Patch Set: diff -r 737d232b573b ssh://hg@bitbucket.org/davecheney/go.nacl Created 11 years, 1 month 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:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/runtime/runtime.h ('k') | src/pkg/runtime/signal_nacl_386.h » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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 }
LEFTRIGHT

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