summaryrefslogtreecommitdiff
path: root/lib/interception/interception_linux.cc
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2014-02-24 08:37:41 +0000
committerKostya Serebryany <kcc@google.com>2014-02-24 08:37:41 +0000
commit3c74a2cb4cf2451f4bad7be9e5570d135d39969c (patch)
treef3692fd799049d579676590b2b293b8a332a1f53 /lib/interception/interception_linux.cc
parenta8a35a4f7c21ca44deaf546640c83dd111e7931c (diff)
[sanitizer] Interception macros for sanitizers on FreeBSD; patch by Viktor Kutuzov
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@202009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/interception/interception_linux.cc')
-rw-r--r--lib/interception/interception_linux.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/interception/interception_linux.cc b/lib/interception/interception_linux.cc
index 53f428810..6e908ac01 100644
--- a/lib/interception/interception_linux.cc
+++ b/lib/interception/interception_linux.cc
@@ -12,10 +12,10 @@
// Linux-specific interception methods.
//===----------------------------------------------------------------------===//
-#ifdef __linux__
+#if defined(__linux__) || defined(__FreeBSD__)
#include "interception.h"
-#include <dlfcn.h> // for dlsym
+#include <dlfcn.h> // for dlsym() and dlvsym()
namespace __interception {
bool GetRealFunctionAddress(const char *func_name, uptr *func_addr,
@@ -33,4 +33,4 @@ void *GetFuncAddrVer(const char *func_name, const char *ver) {
} // namespace __interception
-#endif // __linux__
+#endif // __linux__ || __FreeBSD__