summaryrefslogtreecommitdiff
path: root/lib/interception/interception_mac.h
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2013-02-05 15:57:12 +0000
committerAlexander Potapenko <glider@google.com>2013-02-05 15:57:12 +0000
commit69563986ca570ce750111a82264d51ddbf4107ba (patch)
tree9df59b792c8e8db1b63c7ce63bcff557fed1621a /lib/interception/interception_mac.h
parentf97a1fef66c59ee45e4a286be64c852d0e82275f (diff)
downloadcompiler-rt-69563986ca570ce750111a82264d51ddbf4107ba.tar.gz
compiler-rt-69563986ca570ce750111a82264d51ddbf4107ba.tar.bz2
compiler-rt-69563986ca570ce750111a82264d51ddbf4107ba.tar.xz
[ASan] Delete the code related to static runtime on OS X.
Nuke lib/interception/mach_override. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@174383 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/interception/interception_mac.h')
-rw-r--r--lib/interception/interception_mac.h24
1 files changed, 1 insertions, 23 deletions
diff --git a/lib/interception/interception_mac.h b/lib/interception/interception_mac.h
index 6e9e8081..50594898 100644
--- a/lib/interception/interception_mac.h
+++ b/lib/interception/interception_mac.h
@@ -21,29 +21,7 @@
#ifndef INTERCEPTION_MAC_H
#define INTERCEPTION_MAC_H
-#include <mach/mach_error.h>
-#include <stddef.h>
-
-// Allocate memory for the escape island. This cannot be moved to
-// mach_override, because each user of interceptors may specify its
-// own memory range for escape islands.
-extern "C" {
-mach_error_t __interception_allocate_island(void **ptr, size_t unused_size,
- void *unused_hint);
-mach_error_t __interception_deallocate_island(void *ptr);
-} // extern "C"
-
-namespace __interception {
-// returns true if the old function existed.
-bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func);
-} // namespace __interception
-
-# define OVERRIDE_FUNCTION_MAC(old_func, new_func) \
- ::__interception::OverrideFunction( \
- (::__interception::uptr)old_func, \
- (::__interception::uptr)new_func, \
- (::__interception::uptr*)((::__interception::uptr)&REAL(old_func)))
-# define INTERCEPT_FUNCTION_MAC(func) OVERRIDE_FUNCTION_MAC(func, WRAP(func))
+#define INTERCEPT_FUNCTION_MAC(func)
#endif // INTERCEPTION_MAC_H
#endif // __APPLE__