E17: Remove erroneous exit(-11) calls (exit/restart is handled by
authorChristopher Michael <cpmichael1@comcast.net>
Wed, 17 Aug 2011 18:24:45 +0000 (18:24 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Wed, 17 Aug 2011 18:24:45 +0000 (18:24 +0000)
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

index 60911ad..b576d13 100644 (file)
@@ -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);
 }