Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | main/gdb fixes gdb failing on internal musl signals | stf | 2019-10-29 | 1 | -0/+18 |
without this patch when debugging a multithreaded binary gdb throws this: `Thread 5 "a.out" received signal ?, Unknown signal.` with this patch gdb throws: `Thread 5 "qtwe" received signal SIG34, Real-time event 34.` which can be handled by `handle SIG34 nostop noprint` and further on ignored. For further info there is also this upstream bug: https://sourceware.org/bugzilla/show_bug.cgi?id=23616 The patch itself comes from smaeul on #musl |