LEFT | RIGHT |
(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 // +build ignore | 5 // +build ignore |
6 | 6 |
7 /* | 7 /* |
8 Input to godefs. See also mkerrors.sh and mkall.sh | 8 Input to godefs. See also mkerrors.sh and mkall.sh |
9 */ | 9 */ |
10 | 10 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 uvlong cyclefreq; // cycle clock frequency if there is one
, 0 otherwise | 106 uvlong cyclefreq; // cycle clock frequency if there is one
, 0 otherwise |
107 vlong kcycles; // cycles spent in kernel | 107 vlong kcycles; // cycles spent in kernel |
108 vlong pcycles; // cycles spent in process (kernel + use
r) | 108 vlong pcycles; // cycles spent in process (kernel + use
r) |
109 ulong pid; // might as well put the pid here | 109 ulong pid; // might as well put the pid here |
110 ulong clock; | 110 ulong clock; |
111 // top of stack is here | 111 // top of stack is here |
112 }; | 112 }; |
113 | 113 |
114 typedef struct Prof $Prof; | 114 typedef struct Prof $Prof; |
115 typedef struct Tos $Tos; | 115 typedef struct Tos $Tos; |
LEFT | RIGHT |