This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 11b8388ae [build.py] Allow clang-cl to build files starting with '/U' new e9a520afd Move ProcessInfo from Host to Utility.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/lldb/Host/Host.h | 3 + include/lldb/Host/ProcessInfo.h | 101 ------- include/lldb/Host/ProcessLaunchInfo.h | 2 +- include/lldb/Host/posix/HostInfoPosix.h | 1 - include/lldb/Target/Platform.h | 4 + include/lldb/Target/Process.h | 148 +--------- include/lldb/Utility/ProcessInfo.h | 251 +++++++++++++++++ include/lldb/module.modulemap | 1 - source/API/SBProcess.cpp | 1 + source/API/SBProcessInfo.cpp | 2 +- source/API/SBTarget.cpp | 1 + source/Host/CMakeLists.txt | 1 - source/Host/common/ProcessInfo.cpp | 113 -------- source/Host/freebsd/Host.cpp | 6 +- source/Host/linux/Host.cpp | 5 +- source/Host/macosx/objcxx/Host.mm | 2 +- source/Host/netbsd/Host.cpp | 6 +- source/Host/openbsd/Host.cpp | 6 +- source/Host/posix/HostInfoPosix.cpp | 2 +- source/Host/windows/Host.cpp | 4 +- .../POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | 2 +- .../Platform/MacOSX/PlatformAppleTVSimulator.cpp | 6 +- .../MacOSX/PlatformAppleWatchSimulator.cpp | 6 +- source/Plugins/Platform/MacOSX/PlatformDarwin.cpp | 1 + .../Platform/MacOSX/PlatformiOSSimulator.cpp | 6 +- .../gdb-server/PlatformRemoteGDBServer.cpp | 1 + source/Target/Process.cpp | 203 +------------- source/Utility/CMakeLists.txt | 1 + source/Utility/ProcessInfo.cpp | 310 +++++++++++++++++++++ unittests/Host/CMakeLists.txt | 1 - unittests/Utility/CMakeLists.txt | 1 + unittests/{Host => Utility}/ProcessInfoTest.cpp | 2 +- 32 files changed, 621 insertions(+), 579 deletions(-) delete mode 100644 include/lldb/Host/ProcessInfo.h create mode 100644 include/lldb/Utility/ProcessInfo.h delete mode 100644 source/Host/common/ProcessInfo.cpp create mode 100644 source/Utility/ProcessInfo.cpp rename unittests/{Host => Utility}/ProcessInfoTest.cpp (94%)