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

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

Issue 12436044: code review 12436044: runtime: use GetQueuedCompletionStatusEx on windows if ... (Closed)
Left Patch Set: diff -r 6423f26d0193 https://go.googlecode.com/hg/ Created 11 years, 7 months ago
Right Patch Set: diff -r b05fc0deff82 https://go.googlecode.com/hg/ Created 11 years, 7 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/os_windows.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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
LEFTRIGHT

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