neutrino.cpp: exit() in place of _exit() hack, for testing

Origin commit data
------------------
Commit: 1f1531ba86
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-04-02 (Mon, 02 Apr 2012)
This commit is contained in:
[CST] Focus
2012-04-02 12:24:09 +04:00
parent 57d3545ddd
commit 3c86dc5b78

View File

@@ -3038,7 +3038,8 @@ void CNeutrinoApp::ExitRun(const bool /*write_si*/, int retcode)
reboot(LINUX_REBOOT_CMD_RESTART);
#else
_exit(retcode);
//_exit(retcode);
exit(retcode);
#endif
exit(retcode);
}
@@ -3593,7 +3594,8 @@ void sighandler (int signum)
CNeutrinoApp::getInstance()->saveSetup(NEUTRINO_SETTINGS_FILE);
stop_daemons();
stop_video();
_exit(0);
//_exit(0);
exit(0);
default:
break;
}