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

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

Issue 8454043: code review 8454043: runtime: reset dangling typed pointer (Closed)
Left Patch Set: Created 11 years, 12 months ago
Right Patch Set: diff -r 38009b76c220 https://dvyukov%40google.com@code.google.com/p/go/ Created 11 years, 12 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/proc.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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 uint32 locked; // tracking for LockOSThread 310 uint32 locked; // tracking for LockOSThread
311 M* nextwaitm; // next M waiting for lock 311 M* nextwaitm; // next M waiting for lock
312 uintptr waitsema; // semaphore for parking on locks 312 uintptr waitsema; // semaphore for parking on locks
313 uint32 waitsemacount; 313 uint32 waitsemacount;
314 uint32 waitsemalock; 314 uint32 waitsemalock;
315 GCStats gcstats; 315 GCStats gcstats;
316 bool racecall; 316 bool racecall;
317 bool needextram; 317 bool needextram;
318 void* racepc; 318 void* racepc;
319 void (*waitunlockf)(Lock*); 319 void (*waitunlockf)(Lock*);
320 » Lock*» waitlock; 320 » void*» waitlock;
321 uint32 moreframesize_minalloc; 321 uint32 moreframesize_minalloc;
322 322
323 uintptr settype_buf[1024]; 323 uintptr settype_buf[1024];
324 uintptr settype_bufsize; 324 uintptr settype_bufsize;
325 325
326 #ifdef GOOS_windows 326 #ifdef GOOS_windows
327 void* thread; // thread handle 327 void* thread; // thread handle
328 #endif 328 #endif
329 #ifdef GOOS_plan9 329 #ifdef GOOS_plan9
330 int8* notesig; 330 int8* notesig;
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 extern float64 runtime·neginf; 998 extern float64 runtime·neginf;
999 extern uint64 ·nan; 999 extern uint64 ·nan;
1000 extern uint64 ·posinf; 1000 extern uint64 ·posinf;
1001 extern uint64 ·neginf; 1001 extern uint64 ·neginf;
1002 #define ISNAN(f) ((f) != (f)) 1002 #define ISNAN(f) ((f) != (f))
1003 1003
1004 enum 1004 enum
1005 { 1005 {
1006 UseSpanType = 1, 1006 UseSpanType = 1,
1007 }; 1007 };
LEFTRIGHT

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