aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/defs_windows.go
diff options
context:
space:
mode:
authorAlex Brainman <alex.brainman@gmail.com>2014-10-09 16:52:28 +1100
committerAlex Brainman <alex.brainman@gmail.com>2014-10-09 16:52:28 +1100
commit17a108ba079cd3e94fa4d847d651d3a813569a9b (patch)
tree1938d7543dabac6ebe4b83efc58ef5b33bd2c01c /src/runtime/defs_windows.go
parent9ca836844496fe8723d8fe215d78530d1bba032e (diff)
downloadgo-17a108ba079cd3e94fa4d847d651d3a813569a9b.tar.gz
go-17a108ba079cd3e94fa4d847d651d3a813569a9b.zip
runtime: handle all windows exception
Fixes #8006. LGTM=rsc R=golang-codereviews, rsc CC=golang-codereviews https://golang.org/cl/145150043
Diffstat (limited to 'src/runtime/defs_windows.go')
-rw-r--r--src/runtime/defs_windows.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/defs_windows.go b/src/runtime/defs_windows.go
index cb0f54d8ab..c27cc41dc0 100644
--- a/src/runtime/defs_windows.go
+++ b/src/runtime/defs_windows.go
@@ -59,6 +59,9 @@ const (
INFINITE = C.INFINITE
WAIT_TIMEOUT = C.WAIT_TIMEOUT
+
+ EXCEPTION_CONTINUE_EXECUTION = C.EXCEPTION_CONTINUE_EXECUTION
+ EXCEPTION_CONTINUE_SEARCH = C.EXCEPTION_CONTINUE_SEARCH
)
type SystemInfo C.SYSTEM_INFO