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

Delta Between Two Patch Sets: src/pkg/runtime/windows/defs.c

Issue 5156042: code review 5156042: runtime: fix windows build (Closed)
Left Patch Set: Created 13 years, 6 months ago
Right Patch Set: diff -r 99142734db76 https://go.googlecode.com/hg/ Created 13 years, 6 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/windows/amd64/defs.h ('k') | src/pkg/runtime/windows/thread.c » ('j') | 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 #include <signal.h> 5 #include <signal.h>
6 #include <stdarg.h> 6 #include <stdarg.h>
7 #include <windef.h> 7 #include <windef.h>
8 #include <winbase.h> 8 #include <winbase.h>
9 #include <wincon.h> 9 #include <wincon.h>
10 10
(...skipping 20 matching lines...) Expand all
31 $EXCEPTION_BREAKPOINT = STATUS_BREAKPOINT, 31 $EXCEPTION_BREAKPOINT = STATUS_BREAKPOINT,
32 $EXCEPTION_FLT_DENORMAL_OPERAND = STATUS_FLOAT_DENORMAL_OPERAND, 32 $EXCEPTION_FLT_DENORMAL_OPERAND = STATUS_FLOAT_DENORMAL_OPERAND,
33 $EXCEPTION_FLT_DIVIDE_BY_ZERO = STATUS_FLOAT_DIVIDE_BY_ZERO, 33 $EXCEPTION_FLT_DIVIDE_BY_ZERO = STATUS_FLOAT_DIVIDE_BY_ZERO,
34 $EXCEPTION_FLT_INEXACT_RESULT = STATUS_FLOAT_INEXACT_RESULT, 34 $EXCEPTION_FLT_INEXACT_RESULT = STATUS_FLOAT_INEXACT_RESULT,
35 $EXCEPTION_FLT_OVERFLOW = STATUS_FLOAT_OVERFLOW, 35 $EXCEPTION_FLT_OVERFLOW = STATUS_FLOAT_OVERFLOW,
36 $EXCEPTION_FLT_UNDERFLOW = STATUS_FLOAT_UNDERFLOW, 36 $EXCEPTION_FLT_UNDERFLOW = STATUS_FLOAT_UNDERFLOW,
37 $EXCEPTION_INT_DIVIDE_BY_ZERO = STATUS_INTEGER_DIVIDE_BY_ZERO, 37 $EXCEPTION_INT_DIVIDE_BY_ZERO = STATUS_INTEGER_DIVIDE_BY_ZERO,
38 $EXCEPTION_INT_OVERFLOW = STATUS_INTEGER_OVERFLOW, 38 $EXCEPTION_INT_OVERFLOW = STATUS_INTEGER_OVERFLOW,
39 }; 39 };
40 40
41 typedef SYSTEM_INFO $SystemInfo;
41 typedef EXCEPTION_RECORD $ExceptionRecord; 42 typedef EXCEPTION_RECORD $ExceptionRecord;
42 #ifdef _X86_ 43 #ifdef _X86_
43 typedef FLOATING_SAVE_AREA $FloatingSaveArea; 44 typedef FLOATING_SAVE_AREA $FloatingSaveArea;
44 #endif 45 #endif
45 #ifdef _AMD64_ 46 #ifdef _AMD64_
46 typedef M128A $M128a; 47 typedef M128A $M128a;
47 #endif 48 #endif
48 typedef CONTEXT $Context; 49 typedef CONTEXT $Context;
LEFTRIGHT

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