diff options
author | Greg Clayton <gclayton@apple.com> | 2012-09-25 02:40:06 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-09-25 02:40:06 +0000 |
commit | 97d5cf05eb93d7efc4ab3de7948741957d9e5059 (patch) | |
tree | 7f8898dd024b95e38b65e657e74d9f5c1e870168 /lldb/source/Plugins/Process/Utility/StopInfoMachException.h | |
parent | 42bca056e05010f994f5be6127a8dceb065291ad (diff) | |
download | bcm5719-llvm-97d5cf05eb93d7efc4ab3de7948741957d9e5059.tar.gz bcm5719-llvm-97d5cf05eb93d7efc4ab3de7948741957d9e5059.zip |
<rdar://problem/9959501>
More KDP debugging process. We can not set breakpoints, hit them, resume, step and detach while running.
llvm-svn: 164584
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/StopInfoMachException.h')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/StopInfoMachException.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Utility/StopInfoMachException.h b/lldb/source/Plugins/Process/Utility/StopInfoMachException.h index a40bd71a91a..130ee0b709b 100644 --- a/lldb/source/Plugins/Process/Utility/StopInfoMachException.h +++ b/lldb/source/Plugins/Process/Utility/StopInfoMachException.h @@ -61,8 +61,10 @@ public: uint32_t exc_data_count, uint64_t exc_code, uint64_t exc_sub_code, - uint64_t exc_sub_sub_code); - + uint64_t exc_sub_sub_code, + bool pc_already_adjusted = true, + bool adjust_pc_if_needed = false); + protected: uint32_t m_exc_data_count; uint64_t m_exc_code; |