diff options
author | Sean Callanan <scallanan@apple.com> | 2011-10-12 02:08:07 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-10-12 02:08:07 +0000 |
commit | b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8 (patch) | |
tree | 81eda6ffe0a14872577ec166e33200a4f4a67814 /lldb/source/Plugins/OperatingSystem/Darwin-Kernel | |
parent | 88972243638da61c7807ef9715cc2ad10b80dd42 (diff) | |
download | bcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.tar.gz bcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.zip |
Added ClangNamespaceDecl * parameters to several
core Module functions that the expression parser
will soon be using.
llvm-svn: 141766
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Darwin-Kernel')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Darwin-Kernel/OperatingSystemDarwinKernel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Darwin-Kernel/OperatingSystemDarwinKernel.cpp b/lldb/source/Plugins/OperatingSystem/Darwin-Kernel/OperatingSystemDarwinKernel.cpp index c5f3e40bd34..7aa33c39aa2 100644 --- a/lldb/source/Plugins/OperatingSystem/Darwin-Kernel/OperatingSystemDarwinKernel.cpp +++ b/lldb/source/Plugins/OperatingSystem/Darwin-Kernel/OperatingSystemDarwinKernel.cpp @@ -19,6 +19,7 @@ #include "lldb/Core/PluginManager.h" #include "lldb/Core/RegisterValue.h" #include "lldb/Core/ValueObjectVariable.h" +#include "lldb/Symbol/ClangNamespaceDecl.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/VariableList.h" #include "lldb/Target/Process.h" @@ -131,7 +132,8 @@ OperatingSystemDarwinKernel::GetThreadListValueObject () Module *exe_module = m_process->GetTarget().GetExecutableModulePointer(); if (exe_module) { - if (exe_module->FindGlobalVariables (g_thread_list_name, + if (exe_module->FindGlobalVariables (g_thread_list_name, + NULL, append, max_matches, variable_list)) |