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

Delta Between Two Patch Sets: src/pkg/runtime/export_test.go

Issue 74790043: code review 74790043: runtime: use VEH, not SEH, for windows/386 exception ha... (Closed)
Left Patch Set: Created 10 years ago
Right Patch Set: diff -r f60620ad71fa https://code.google.com/p/go/ Created 10 years 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
LEFTRIGHT
(no file at all)
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 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 // Export guts for testing. 5 // Export guts for testing.
6 6
7 package runtime 7 package runtime
8 8
9 var Fadd64 = fadd64 9 var Fadd64 = fadd64
10 var Fsub64 = fsub64 10 var Fsub64 = fsub64
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 var hashLoad float64 // declared in hashmap.c 83 var hashLoad float64 // declared in hashmap.c
84 var HashLoad = &hashLoad 84 var HashLoad = &hashLoad
85 85
86 func memclrBytes(b []byte) 86 func memclrBytes(b []byte)
87 87
88 var MemclrBytes = memclrBytes 88 var MemclrBytes = memclrBytes
89 89
90 func gogoBytes() int32 90 func gogoBytes() int32
91 91
92 var GogoBytes = gogoBytes 92 var GogoBytes = gogoBytes
93
94 func getseh_go() uintptr
95
96 var GetSEH = getseh_go
LEFTRIGHT

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