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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 int64 runtime·tickspersecond(void); | 846 int64 runtime·tickspersecond(void); |
847 void runtime·blockevent(int64, int32); | 847 void runtime·blockevent(int64, int32); |
848 extern int64 runtime·blockprofilerate; | 848 extern int64 runtime·blockprofilerate; |
849 void runtime·addtimer(Timer*); | 849 void runtime·addtimer(Timer*); |
850 bool runtime·deltimer(Timer*); | 850 bool runtime·deltimer(Timer*); |
851 G* runtime·netpoll(bool); | 851 G* runtime·netpoll(bool); |
852 void runtime·netpollinit(void); | 852 void runtime·netpollinit(void); |
853 int32 runtime·netpollopen(uintptr, PollDesc*); | 853 int32 runtime·netpollopen(uintptr, PollDesc*); |
854 int32 runtime·netpollclose(uintptr); | 854 int32 runtime·netpollclose(uintptr); |
855 void runtime·netpollready(G**, PollDesc*, int32); | 855 void runtime·netpollready(G**, PollDesc*, int32); |
| 856 uintptr runtime·netpollfd(PollDesc*); |
856 void runtime·crash(void); | 857 void runtime·crash(void); |
857 void runtime·parsedebugvars(void); | 858 void runtime·parsedebugvars(void); |
858 void _rt0_go(void); | 859 void _rt0_go(void); |
859 void* runtime·funcdata(Func*, int32); | 860 void* runtime·funcdata(Func*, int32); |
860 | 861 |
861 #pragma varargck argpos runtime·printf 1 | 862 #pragma varargck argpos runtime·printf 1 |
862 #pragma varargck type "c" int32 | 863 #pragma varargck type "c" int32 |
863 #pragma varargck type "d" int32 | 864 #pragma varargck type "d" int32 |
864 #pragma varargck type "d" uint32 | 865 #pragma varargck type "d" uint32 |
865 #pragma varargck type "D" int64 | 866 #pragma varargck type "D" int64 |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1049 extern float64 runtime·neginf; | 1050 extern float64 runtime·neginf; |
1050 extern uint64 ·nan; | 1051 extern uint64 ·nan; |
1051 extern uint64 ·posinf; | 1052 extern uint64 ·posinf; |
1052 extern uint64 ·neginf; | 1053 extern uint64 ·neginf; |
1053 #define ISNAN(f) ((f) != (f)) | 1054 #define ISNAN(f) ((f) != (f)) |
1054 | 1055 |
1055 enum | 1056 enum |
1056 { | 1057 { |
1057 UseSpanType = 1, | 1058 UseSpanType = 1, |
1058 }; | 1059 }; |
LEFT | RIGHT |