[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-21 Thread Michał Górny via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGd6b3de72566f: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events (authored by mgorny). Herald added a project: LLDB. Changed prior to commit: https://reviews.llvm.org/D127193?vs=438410&id=438

[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-21 Thread Pavel Labath via Phabricator via lldb-commits
labath accepted this revision. labath added a comment. This revision is now accepted and ready to land. cool CHANGES SINCE LAST ACTION https://reviews.llvm.org/D127193/new/ https://reviews.llvm.org/D127193 ___ lldb-commits mailing list lldb-commits

[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-20 Thread Michał Górny via Phabricator via lldb-commits
mgorny updated this revision to Diff 438410. mgorny edited the summary of this revision. mgorny added a comment. Update to make `signo` an unconditional member of the struct, and set it for fork/vfork/vforkdone events explicitly. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D127193/new/

[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-20 Thread Michał Górny via Phabricator via lldb-commits
mgorny added inline comments. Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:697 +static int GetSignalForStopReason(const struct ThreadStopInfo &tid_stop_info) { + if (tid_stop_info.reason == eStopReasonException) laba

[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-20 Thread Pavel Labath via Phabricator via lldb-commits
labath added inline comments. Comment at: lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp:697 +static int GetSignalForStopReason(const struct ThreadStopInfo &tid_stop_info) { + if (tid_stop_info.reason == eStopReasonException) It s

[Lldb-commits] [PATCH] D127193: [lldb] [llgs] Fix signo sent with fork/vfork/vforkdone events

2022-06-07 Thread Michał Górny via Phabricator via lldb-commits
mgorny created this revision. mgorny added reviewers: labath, krytarowski, emaste. Herald added a subscriber: arichardson. Herald added a project: All. mgorny requested review of this revision. Fix sending stop reasons to include SIGTRAP as the signal number for fork/vfork/vforkdone events. Since