diff options
author | Ilia K <ki.stfu@gmail.com> | 2015-03-24 14:30:28 +0000 |
---|---|---|
committer | Ilia K <ki.stfu@gmail.com> | 2015-03-24 14:30:28 +0000 |
commit | 667ef229202b29c4a31e3693a815adf8729f4fd1 (patch) | |
tree | c4ed7219c5bf41ae29d037e180bfaf72bfef40ec /lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | |
parent | 112b2622df351a245a8b48422cf7ab23033c7e89 (diff) | |
download | bcm5719-llvm-667ef229202b29c4a31e3693a815adf8729f4fd1.tar.gz bcm5719-llvm-667ef229202b29c4a31e3693a815adf8729f4fd1.zip |
Fix build on OS X after r233061
This includes following:
# Add a missing Process argument when calling GetSharedModule in DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule
# Fix PlatformDarwinKernel::GetSharedModule prototype
llvm-svn: 233084
Diffstat (limited to 'lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index 85e69358e4a..9100bf0caee 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -831,7 +831,7 @@ DynamicLoaderDarwinKernel::KextImageInfo::LoadImageUsingMemoryModule (Process *p ModuleSpec kext_bundle_module_spec(module_spec); FileSpec kext_filespec(m_name.c_str(), false); kext_bundle_module_spec.GetFileSpec() = kext_filespec; - platform_sp->GetSharedModule (kext_bundle_module_spec, m_module_sp, &target.GetExecutableSearchPaths(), NULL, NULL); + platform_sp->GetSharedModule (kext_bundle_module_spec, process, m_module_sp, &target.GetExecutableSearchPaths(), NULL, NULL); } } |