I am making some development on Xcode for a OS X application. I need to send SIGUSR1 to the application by:
kill(getpid(), SIGUSR1)
This worked. However, each time the SIGUSR1 sent, Xcode was blocked to show me that a signal was caught. Can I make Xcode simply ignore this signal and keep continous running during debugging?
Thank you at advance!