aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-02-08 16:18:46 +0000
committerEd Maste <emaste@FreeBSD.org>2015-02-08 16:18:46 +0000
commit17832a58a43e8456ec04d978d021bb3238b8e8d6 (patch)
tree6385c93b8bafd996d097d5f6607d6ba0ab40be4e /contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
parent7e79b605cb91cc0be84ed9120439c4810f49563f (diff)
Notes
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp')
-rw-r--r--contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
index 0e5ab5a8d8b1e..94c318c9feafa 100644
--- a/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
+++ b/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
@@ -29,7 +29,11 @@
#include "ProcessPOSIX.h"
#include "ProcessPOSIXLog.h"
#include "Plugins/Process/Utility/InferiorCallPOSIX.h"
+#if defined(__FreeBSD__)
+#include "Plugins/Process/FreeBSD/ProcessMonitor.h"
+#else
#include "Plugins/Process/Linux/ProcessMonitor.h"
+#endif
#include "POSIXThread.h"
using namespace lldb;