From: Christopher Michael Date: Wed, 17 Aug 2011 18:24:45 +0000 (+0000) Subject: E17: Remove erroneous exit(-11) calls (exit/restart is handled by X-Git-Tag: submit/efl/20131021.015651~5763 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2759530d5b89c05f50a3c1843e1105aa610397f1;p=platform%2Fupstream%2Fenlightenment.git 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 --- 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); }