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

Delta Between Two Patch Sets: src/pkg/runtime/runtime.h

Issue 37540043: code review 37540043: runtime: heap dump experiment (Closed)
Left Patch Set: diff -r 26aa53304a48 https://khr%40golang.org@code.google.com/p/go/ Created 11 years ago
Right Patch Set: diff -r ec2ac2c466aa https://khr%40golang.org@code.google.com/p/go/ Created 10 years, 11 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/runtime/mgc0.c ('k') | no next file » | 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 4
5 /* 5 /*
6 * basic types 6 * basic types
7 */ 7 */
8 typedef signed char int8; 8 typedef signed char int8;
9 typedef unsigned char uint8; 9 typedef unsigned char uint8;
10 typedef signed short int16; 10 typedef signed short int16;
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 void** runtime·netpolluser(PollDesc*); 943 void** runtime·netpolluser(PollDesc*);
944 bool runtime·netpollclosing(PollDesc*); 944 bool runtime·netpollclosing(PollDesc*);
945 void runtime·netpolllock(PollDesc*); 945 void runtime·netpolllock(PollDesc*);
946 void runtime·netpollunlock(PollDesc*); 946 void runtime·netpollunlock(PollDesc*);
947 void runtime·crash(void); 947 void runtime·crash(void);
948 void runtime·parsedebugvars(void); 948 void runtime·parsedebugvars(void);
949 void _rt0_go(void); 949 void _rt0_go(void);
950 void* runtime·funcdata(Func*, int32); 950 void* runtime·funcdata(Func*, int32);
951 int32 runtime·setmaxthreads(int32); 951 int32 runtime·setmaxthreads(int32);
952 G* runtime·timejump(void); 952 G* runtime·timejump(void);
953 void runtime·iterate_itabs(void (*callback)(Itab*));
954 void runtime·iterate_finq(void (*callback)(FuncVal*, byte*, uintptr, Type*, P trType*));
953 955
954 #pragma varargck argpos runtime·printf 1 956 #pragma varargck argpos runtime·printf 1
955 #pragma varargck type "c" int32 957 #pragma varargck type "c" int32
956 #pragma varargck type "d" int32 958 #pragma varargck type "d" int32
957 #pragma varargck type "d" uint32 959 #pragma varargck type "d" uint32
958 #pragma varargck type "D" int64 960 #pragma varargck type "D" int64
959 #pragma varargck type "D" uint64 961 #pragma varargck type "D" uint64
960 #pragma varargck type "x" int32 962 #pragma varargck type "x" int32
961 #pragma varargck type "x" uint32 963 #pragma varargck type "x" uint32
962 #pragma varargck type "X" int64 964 #pragma varargck type "X" int64
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
1130 extern float64 runtime·neginf; 1132 extern float64 runtime·neginf;
1131 extern uint64 ·nan; 1133 extern uint64 ·nan;
1132 extern uint64 ·posinf; 1134 extern uint64 ·posinf;
1133 extern uint64 ·neginf; 1135 extern uint64 ·neginf;
1134 #define ISNAN(f) ((f) != (f)) 1136 #define ISNAN(f) ((f) != (f))
1135 1137
1136 enum 1138 enum
1137 { 1139 {
1138 UseSpanType = 1, 1140 UseSpanType = 1,
1139 }; 1141 };
LEFTRIGHT

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