Changes between Version 52 and Version 53 of Debugging
- Timestamp:
- 08/08/20 10:22:16 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Debugging
v52 v53 71 71 72 72 Note: installing the required "debug" symbol packages for your distribution is out of scope, please refer to your vendor's package manager for details (ie: [http://wiki.debian.org/HowToGetABacktrace debian] and [http://yum.baseurl.org/wiki/YumUtils/DebugInfoInstall yum debuginfo-install]). 73 74 === Signal Handling === 75 Xpra handles `SIGINT`, `SIGTERM` and `SIGUSR1` + `SIGUSR2`. 76 77 To prevent gdb from intercepting `SIGINT`, use `handle SIGINT nostop pass`. 78 ie: 79 {{{ 80 $ gdb -ex "handle SIGINT nostop pass" --args /usr/bin/python3 /usr/bin/xpra start :20 --no-daemon --start=xterm 81 }}} 73 82 }}} 74 83