0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

libobs/util: Use SIGTRAP for os_breakpoint

SIGTRAP is the correct value to use to specify a breakpoint.
This commit is contained in:
jp9000 2015-11-18 18:59:54 -08:00
parent 9e17f41caf
commit d1cbb2742e

View File

@ -594,5 +594,5 @@ void os_inhibit_sleep_destroy(os_inhibit_t *info)
void os_breakpoint()
{
raise(SIGINT);
raise(SIGTRAP);
}