diff options
author | Jim Ingham <jingham@apple.com> | 2015-11-05 22:33:17 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-11-05 22:33:17 +0000 |
commit | 13c30d2f7d6802683e667a542c80e51eb6d7dcca (patch) | |
tree | b22e5adab51a86eb41607ec8d79bb9ec6b9f558b /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | ea26041bbbf9bf8318e2fdceeaf12b95cf8b56e7 (diff) | |
download | bcm5719-llvm-13c30d2f7d6802683e667a542c80e51eb6d7dcca.tar.gz bcm5719-llvm-13c30d2f7d6802683e667a542c80e51eb6d7dcca.zip |
Let the process help figure out the Host OS if nobody else
can figure it out.
llvm-svn: 252224
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index 0a0f32e69be..39d44212ab1 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -239,6 +239,11 @@ public: const ArchSpec& arch, ModuleSpec &module_spec) override; + bool + GetHostOSVersion(uint32_t &major, + uint32_t &minor, + uint32_t &update) override; + size_t LoadModules() override; |