[Libreoffice-commits] core.git: sal/osl
Michael Meeks
michael.meeks at collabora.com
Fri Aug 21 04:04:01 PDT 2015
sal/osl/unx/signal.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 61c0c81caeb97dad0ed5bd201d06ad4e27f618c2
Author: Michael Meeks <michael.meeks at collabora.com>
Date: Fri Aug 21 10:00:47 2015 +0100
tdf#93569 - restore ACT_ABORT distinction.
In order to handle signals, we need to have ACT_ABORT in place
and distinct from ACT_SYSTEM.
cf. if (Signals[i].Action != ACT_SYSTEM) during setup.
Change-Id: I8c69d48244ba462f2e2385a530cbbf4740ccee9a
Reviewed-on: https://gerrit.libreoffice.org/17889
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sal/osl/unx/signal.cxx b/sal/osl/unx/signal.cxx
index 050aa81..76ee790 100644
--- a/sal/osl/unx/signal.cxx
+++ b/sal/osl/unx/signal.cxx
@@ -65,7 +65,7 @@
#define ACT_EXIT 2
#define ACT_SYSTEM 3
#define ACT_HIDE 4
-#define ACT_ABORT ACT_SYSTEM
+#define ACT_ABORT 5
#if defined HAVE_VALGRIND_HEADERS
#include <valgrind/memcheck.h>
More information about the Libreoffice-commits
mailing list