aboutsummaryrefslogtreecommitdiffstats
path: root/main/gdb/musl-signals.patch
Commit message (Collapse)AuthorAgeFilesLines
* main/gdb: upgrade to 9.1Milan P. Stanić2020-02-291-5/+3
| | | | | remove python-3.8.patch, fixed upstream refactor musl-signals.patch for new release
* main/gdb fixes gdb failing on internal musl signalsstf2019-10-291-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