Notes from Nest | |
Debugging and signals | |
===================== | |
The POSIX port uses SIGUSR1 to signal a thread to sleep. Be sure to turn off debug breaks on these signals by issuing the following: | |
If using GDB | |
handle SIGUSR1 nostop noignore noprint | |
If using LLDB | |
process handle SIGUSR1 -n true -p true -s false |