From d1cbb2742ea9caa78d744a012e861f6746cae33f Mon Sep 17 00:00:00 2001 From: jp9000 Date: Wed, 18 Nov 2015 18:59:54 -0800 Subject: [PATCH] libobs/util: Use SIGTRAP for os_breakpoint SIGTRAP is the correct value to use to specify a breakpoint. --- libobs/util/platform-nix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libobs/util/platform-nix.c b/libobs/util/platform-nix.c index e90fee7ef..e1bc92157 100644 --- a/libobs/util/platform-nix.c +++ b/libobs/util/platform-nix.c @@ -594,5 +594,5 @@ void os_inhibit_sleep_destroy(os_inhibit_t *info) void os_breakpoint() { - raise(SIGINT); + raise(SIGTRAP); }