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

Delta Between Two Patch Sets: src/runtime/extern.go

Issue 152570049: [dev.power64] code review 152570049: all: merge default into dev.power64 (Closed)
Left Patch Set: diff -r 36f7fc9495481ed67a159eea0eb2fac35b7c46a5 https://code.google.com/p/go Created 10 years, 4 months ago
Right Patch Set: diff -r 36f7fc9495481ed67a159eea0eb2fac35b7c46a5 https://code.google.com/p/go 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/runtime/export_test.go ('k') | src/runtime/funcdata.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
(Both sides are equal)
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 /* 5 /*
6 Package runtime contains operations that interact with Go's runtime system, 6 Package runtime contains operations that interact with Go's runtime system,
7 such as functions to control goroutines. It also includes the low-level type inf ormation 7 such as functions to control goroutines. It also includes the low-level type inf ormation
8 used by the reflect package; see reflect's documentation for the programmable 8 used by the reflect package; see reflect's documentation for the programmable
9 interface to the run-time type system. 9 interface to the run-time type system.
10 10
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 return theVersion 144 return theVersion
145 } 145 }
146 146
147 // GOOS is the running program's operating system target: 147 // GOOS is the running program's operating system target:
148 // one of darwin, freebsd, linux, and so on. 148 // one of darwin, freebsd, linux, and so on.
149 const GOOS string = theGoos 149 const GOOS string = theGoos
150 150
151 // GOARCH is the running program's architecture target: 151 // GOARCH is the running program's architecture target:
152 // 386, amd64, or arm. 152 // 386, amd64, or arm.
153 const GOARCH string = theGoarch 153 const GOARCH string = theGoarch
LEFTRIGHT

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