annotate libsanitizer/sanitizer_common/sanitizer_win.h @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 //===-- sanitizer_win.h -----------------------------------------*- C++ -*-===//
kono
parents:
diff changeset
2 //
kono
parents:
diff changeset
3 // This file is distributed under the University of Illinois Open Source
kono
parents:
diff changeset
4 // License. See LICENSE.TXT for details.
kono
parents:
diff changeset
5 //
kono
parents:
diff changeset
6 //===----------------------------------------------------------------------===//
kono
parents:
diff changeset
7 //
kono
parents:
diff changeset
8 // Windows-specific declarations.
kono
parents:
diff changeset
9 //
kono
parents:
diff changeset
10 //===----------------------------------------------------------------------===//
kono
parents:
diff changeset
11 #ifndef SANITIZER_WIN_H
kono
parents:
diff changeset
12 #define SANITIZER_WIN_H
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 #include "sanitizer_platform.h"
kono
parents:
diff changeset
15 #if SANITIZER_WINDOWS
kono
parents:
diff changeset
16 #include "sanitizer_internal_defs.h"
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 namespace __sanitizer {
kono
parents:
diff changeset
19 // Check based on flags if we should handle the exception.
kono
parents:
diff changeset
20 bool IsHandledDeadlyException(DWORD exceptionCode);
kono
parents:
diff changeset
21 } // namespace __sanitizer
kono
parents:
diff changeset
22
kono
parents:
diff changeset
23 #endif // SANITIZER_WINDOWS
kono
parents:
diff changeset
24 #endif // SANITIZER_WIN_H