[Lldb-commits] [lldb] bfedb66 - [lldb/Host] s/FindProcesses/FindProcessesImpl/ in freebsd/Host.cpp
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Sun Mar 15 20:39:45 PDT 2020
Author: Jonas Devlieghere
Date: 2020-03-15T20:36:40-07:00
New Revision: bfedb663ccf70b511b8f9fcef91ecdb063fd4ab5
URL: https://github.com/llvm/llvm-project/commit/bfedb663ccf70b511b8f9fcef91ecdb063fd4ab5
DIFF: https://github.com/llvm/llvm-project/commit/bfedb663ccf70b511b8f9fcef91ecdb063fd4ab5.diff
LOG: [lldb/Host] s/FindProcesses/FindProcessesImpl/ in freebsd/Host.cpp
Fix the FreeBSD build. Thank you to Paulf for pointing this out.
Added:
Modified:
lldb/source/Host/freebsd/Host.cpp
Removed:
################################################################################
diff --git a/lldb/source/Host/freebsd/Host.cpp b/lldb/source/Host/freebsd/Host.cpp
index 1e8981b00e53..09547e48afa9 100644
--- a/lldb/source/Host/freebsd/Host.cpp
+++ b/lldb/source/Host/freebsd/Host.cpp
@@ -149,8 +149,8 @@ static bool GetFreeBSDProcessUserAndGroup(ProcessInstanceInfo &process_info) {
return false;
}
-uint32_t Host::FindProcesses(const ProcessInstanceInfoMatch &match_info,
- ProcessInstanceInfoList &process_infos) {
+uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info,
+ ProcessInstanceInfoList &process_infos) {
const ::pid_t our_pid = ::getpid();
const ::uid_t our_uid = ::getuid();
std::vector<struct kinfo_proc> kinfos;
More information about the lldb-commits
mailing list