libobs/util: Use SIGTRAP for os_breakpoint
SIGTRAP is the correct value to use to specify a breakpoint.master
parent
9e17f41caf
commit
d1cbb2742e
|
@ -594,5 +594,5 @@ void os_inhibit_sleep_destroy(os_inhibit_t *info)
|
||||||
|
|
||||||
void os_breakpoint()
|
void os_breakpoint()
|
||||||
{
|
{
|
||||||
raise(SIGINT);
|
raise(SIGTRAP);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue