LEFT | RIGHT |
(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 Loading... |
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 Loading... |
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 }; |
LEFT | RIGHT |