diff options
| author | Pavel Labath <labath@google.com> | 2017-07-18 14:03:47 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2017-07-18 14:03:47 +0000 |
| commit | f40f8fc4152f51678b5a7f1836acde024cf1c387 (patch) | |
| tree | 7ff19690e08a5abe3c37d70474f920bdbbc6fbae | |
| parent | 93008f01545f47bb6e07f4a6da88f2b5283ce6a0 (diff) | |
| download | bcm5719-llvm-f40f8fc4152f51678b5a7f1836acde024cf1c387.tar.gz bcm5719-llvm-f40f8fc4152f51678b5a7f1836acde024cf1c387.zip | |
Fix NetBSD/FreeBSD build after r308304
llvm-svn: 308307
| -rw-r--r-- | lldb/source/Host/common/Host.cpp | 1 | ||||
| -rw-r--r-- | lldb/source/Host/common/MainLoop.cpp | 1 | ||||
| -rw-r--r-- | lldb/source/Host/posix/ProcessLauncherPosixFork.cpp | 1 | ||||
| -rw-r--r-- | lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index 29e5991d31a..8248aa3c511 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -46,6 +46,7 @@ #endif // C++ Includes +#include <csignal> // Other libraries and framework includes // Project includes diff --git a/lldb/source/Host/common/MainLoop.cpp b/lldb/source/Host/common/MainLoop.cpp index c0c4471e735..d0e0d00a315 100644 --- a/lldb/source/Host/common/MainLoop.cpp +++ b/lldb/source/Host/common/MainLoop.cpp @@ -10,6 +10,7 @@ #include "llvm/Config/llvm-config.h" #include "lldb/Host/MainLoop.h" +#include "lldb/Host/PosixApi.h" #include "lldb/Utility/Status.h" #include <algorithm> #include <cassert> diff --git a/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp b/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp index 9b3f6fbf15c..66c0229e0da 100644 --- a/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp +++ b/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp @@ -22,6 +22,7 @@ #include <unistd.h> #include <sstream> +#include <csignal> #ifdef __ANDROID__ #include <android/api-level.h> diff --git a/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h b/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h index 71df238c842..1e3f587be5f 100644 --- a/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h +++ b/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h @@ -12,6 +12,7 @@ #include "lldb/Host/common/NativeThreadProtocol.h" +#include <csignal> #include <map> #include <string> |

