This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from b9bd853ca [Target] Use llvm::scope_exit to restore m_suppress_stop_hook [...] new bc2967e38 Add support to read aux vector values
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/common/NativeProcessProtocol.h | 4 + include/lldb/Target/Process.h | 4 +- .../Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h | 108 --------------------- .../DynamicLoader/POSIX-DYLD/CMakeLists.txt | 2 +- .../POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | 26 +++-- .../POSIX-DYLD/DynamicLoaderPOSIXDYLD.h | 1 + source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp | 4 +- source/Plugins/Process/FreeBSD/ProcessFreeBSD.h | 2 +- .../Plugins/Process/Linux/NativeProcessLinux.cpp | 15 +++ source/Plugins/Process/Linux/NativeProcessLinux.h | 4 + .../POSIX-DYLD => Process/Utility}/AuxVector.cpp | 97 +++++------------- source/Plugins/Process/Utility/AuxVector.h | 73 ++++++++++++++ source/Plugins/Process/Utility/CMakeLists.txt | 1 + source/Plugins/Process/elf-core/ProcessElfCore.cpp | 4 +- source/Plugins/Process/elf-core/ProcessElfCore.h | 2 +- .../Process/gdb-remote/ProcessGDBRemote.cpp | 4 +- .../Plugins/Process/gdb-remote/ProcessGDBRemote.h | 2 +- source/Target/Process.cpp | 2 +- 18 files changed, 149 insertions(+), 206 deletions(-) delete mode 100644 source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h rename source/Plugins/{DynamicLoader/POSIX-DYLD => Process/Utility}/AuxVector.cpp (53%) create mode 100644 source/Plugins/Process/Utility/AuxVector.h