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
This commit is contained in:
Christopher Michael 2011-08-17 18:24:45 +00:00
parent cfb95c63fa
commit 2759530d5b
1 changed files with 0 additions and 5 deletions

View 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);
}