From 2759530d5b89c05f50a3c1843e1105aa610397f1 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 17 Aug 2011 18:24:45 +0000 Subject: [PATCH] E17: Remove erroneous exit(-11) calls (exit/restart is handled by e_alert now). NB: TAsn/Cedric this was the cause of your Restart doing an exit. svn up and it should work now. SVN revision: 62541 --- src/bin/e_signals.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/bin/e_signals.c b/src/bin/e_signals.c index 60911ad..b576d13 100644 --- a/src/bin/e_signals.c +++ b/src/bin/e_signals.c @@ -123,7 +123,6 @@ e_sigseg_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED__ ecore_x_ungrab(); ecore_x_sync(); e_alert_show(SIGSEGV); - exit(-11); } EAPI void @@ -136,7 +135,6 @@ e_sigill_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED__ ecore_x_ungrab(); ecore_x_sync(); e_alert_show(SIGILL); - exit(-11); } EAPI void @@ -149,7 +147,6 @@ e_sigfpe_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED__ ecore_x_ungrab(); ecore_x_sync(); e_alert_show(SIGFPE); - exit(-11); } EAPI void @@ -162,7 +159,6 @@ e_sigbus_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED__ ecore_x_ungrab(); ecore_x_sync(); e_alert_show(SIGBUS); - exit(-11); } EAPI void @@ -175,5 +171,4 @@ e_sigabrt_act(int x __UNUSED__, siginfo_t *info __UNUSED__, void *data __UNUSED_ ecore_x_ungrab(); ecore_x_sync(); e_alert_show(SIGABRT); - exit(-11); } -- 2.7.4