[Lldb-commits] [lldb] 20e36f3 - [lldb/Host] s/FindProcesses/FindProcessesImpl/ in windows/Host.cpp
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 13 10:07:27 PDT 2020
Author: Jonas Devlieghere
Date: 2020-03-13T10:07:15-07:00
New Revision: 20e36f31dfc1bb079dc6e6db5f692a4e90aa0c9d
URL: https://github.com/llvm/llvm-project/commit/20e36f31dfc1bb079dc6e6db5f692a4e90aa0c9d
DIFF: https://github.com/llvm/llvm-project/commit/20e36f31dfc1bb079dc6e6db5f692a4e90aa0c9d.diff
LOG: [lldb/Host] s/FindProcesses/FindProcessesImpl/ in windows/Host.cpp
Fix the Windows build.
Added:
Modified:
lldb/source/Host/windows/Host.cpp
Removed:
################################################################################
diff --git a/lldb/source/Host/windows/Host.cpp b/lldb/source/Host/windows/Host.cpp
index 29c96560af25..50617a8c4bb0 100644
--- a/lldb/source/Host/windows/Host.cpp
+++ b/lldb/source/Host/windows/Host.cpp
@@ -131,8 +131,8 @@ FileSpec Host::GetModuleFileSpecForHostAddress(const void *host_addr) {
return module_filespec;
}
-uint32_t Host::FindProcesses(const ProcessInstanceInfoMatch &match_info,
- ProcessInstanceInfoList &process_infos) {
+uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info,
+ ProcessInstanceInfoList &process_infos) {
process_infos.clear();
AutoHandle snapshot(CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0));
More information about the lldb-commits
mailing list