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

Delta Between Two Patch Sets: src/pkg/os/exec_posix.go

Issue 5011046: code review 5011046: build: add build comments to core packages (Closed)
Left Patch Set: Created 12 years, 6 months ago
Right Patch Set: diff -r a12d99eb48bb https://go.googlecode.com/hg Created 12 years, 6 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:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/os/error_posix.go ('k') | src/pkg/os/exec_unix.go » ('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 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
5 // +build darwin freebsd linux openbsd windows
4 6
5 package os 7 package os
6 8
7 import ( 9 import (
8 "runtime" 10 "runtime"
9 "syscall" 11 "syscall"
10 ) 12 )
11 13
12 type UnixSignal int32 14 type UnixSignal int32
13 15
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 res += " (trap " + itod(w.TrapCause()) + ")" 140 res += " (trap " + itod(w.TrapCause()) + ")"
139 } 141 }
140 case w.Continued(): 142 case w.Continued():
141 res = "continued" 143 res = "continued"
142 } 144 }
143 if w.CoreDump() { 145 if w.CoreDump() {
144 res += " (core dumped)" 146 res += " (core dumped)"
145 } 147 }
146 return res 148 return res
147 } 149 }
LEFTRIGHT

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