summaryrefslogtreecommitdiff
path: root/sal/osl/unx
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-04-26 12:42:23 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-04-26 12:42:23 +0000
commitc9cc359e16dd9179e863133b4f665e451fdd68bf (patch)
tree2f29dfb641a299f9d3a57823dc1fdecff9f314b3 /sal/osl/unx
parentf169e882612405013c02e8c45f38582df5c9fc74 (diff)
#86413# moved SIGIOT from Terminate section to AccessViolation section
Diffstat (limited to 'sal/osl/unx')
-rw-r--r--sal/osl/unx/signal.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/sal/osl/unx/signal.c b/sal/osl/unx/signal.c
index 6c14fdc1a220..1acadda4d7d0 100644
--- a/sal/osl/unx/signal.c
+++ b/sal/osl/unx/signal.c
@@ -2,9 +2,9 @@
*
* $RCSfile: signal.c,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hro $ $Date: 2001-03-30 13:31:11 $
+ * last change: $Author: jbu $ $Date: 2001-04-26 13:42:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -329,6 +329,10 @@ static void SignalHandlerFunction(int Signal)
case SIGBUS:
case SIGILL:
case SIGSEGV:
+ case SIGIOT:
+#if ( SIGIOT != SIGABRT )
+ case SIGABRT:
+#endif
Info.Signal = osl_Signal_AccessViolation;
break;
@@ -341,7 +345,6 @@ static void SignalHandlerFunction(int Signal)
break;
case SIGINT:
- case SIGIOT:
case SIGTERM:
case SIGQUIT:
case SIGHUP: