Index: syzygy/agent/asan/memory_interceptors.h |
diff --git a/syzygy/agent/asan/memory_interceptors.h b/syzygy/agent/asan/memory_interceptors.h |
index 52baad0fd376e0630b875fb01efaa7d2d2a87bf3..8904457fb5dc1d3fd3e3a24b4e23fcac136b8820 100644 |
--- a/syzygy/agent/asan/memory_interceptors.h |
+++ b/syzygy/agent/asan/memory_interceptors.h |
@@ -190,6 +190,20 @@ extern "C" { |
void asan_no_check(); |
#endif |
+// The following functions are added for compatibility |
+// but are not implemented yet. |
Sébastien Marchand
2017/06/20 22:06:14
Some of this text could be moved to the previous l
njanevsk
2017/06/21 14:39:30
Done.
|
+void asan_init(); |
+int asan_set_seh_filter(); |
+int asan_should_detect_stack_use_after_return(); |
+void asan_version_mismatch_check_v8(); |
+void asan_handle_no_return(); |
+ |
+// The Clang no-op memory access checker. |
+void asan_clang_no_check(const void*); |
+ |
+// The no-op string instruction memory access checker. |
Sébastien Marchand
2017/06/20 22:06:14
These 2 functions are already declared, remove the
njanevsk
2017/06/21 14:39:30
Done.
|
+void asan_string_no_check(); |
+ |
// The Clang no-op memory access checker. |
void asan_clang_no_check(const void*); |