diff options
Diffstat (limited to 'lldb/source/Host/freebsd/Host.cpp')
| -rw-r--r-- | lldb/source/Host/freebsd/Host.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lldb/source/Host/freebsd/Host.cpp b/lldb/source/Host/freebsd/Host.cpp index 8174015b828..dc092e86d78 100644 --- a/lldb/source/Host/freebsd/Host.cpp +++ b/lldb/source/Host/freebsd/Host.cpp @@ -39,8 +39,9 @@ #include "lldb/Core/DataExtractor.h" #include "lldb/Utility/CleanUp.h" -#include "llvm/Support/Host.h" +#include "Plugins/Process/Utility/FreeBSDSignals.h" +#include "llvm/Support/Host.h" extern "C" { extern char **environ; @@ -401,3 +402,11 @@ Host::GetAuxvData(lldb_private::Process *process) done: return buf_sp; } + +const UnixSignalsSP& +Host::GetUnixSignals () +{ + static const lldb_private::UnixSignalsSP s_unix_signals_sp (new FreeBSDSignals ()); + return s_unix_signals_sp; +} + |

