1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Debug stacks will now be printed on Ctrl-C. Also client properly quits on Ctrl-C.

This commit is contained in:
Perttu Ahola 2011-02-16 22:54:07 +02:00
parent 741776313a
commit fb5ae9a7a5
2 changed files with 10 additions and 4 deletions

View file

@ -25,6 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "porting.h"
#include "config.h"
#include "debug.h"
namespace porting
{
@ -47,8 +48,13 @@ void sigint_handler(int sig)
{
if(g_killed == false)
{
dstream<<DTIME<<"sigint_handler(): "
dstream<<DTIME<<"INFO: sigint_handler(): "
<<"Ctrl-C pressed, shutting down."<<std::endl;
dstream<<DTIME<<"INFO: siging_handler(): "
<<"Printing debug stacks"<<std::endl;
debug_stacks_print();
g_killed = true;
}
else