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

better debug output in segfaults and stack overflows in windows

This commit is contained in:
Perttu Ahola 2010-12-27 14:34:17 +02:00
parent 847a4227b8
commit fa64103aa8
9 changed files with 138 additions and 90 deletions

View file

@ -31,34 +31,22 @@ void * ClientUpdateThread::Thread()
ThreadStarted();
DSTACK(__FUNCTION_NAME);
#if CATCH_UNHANDLED_EXCEPTIONS
try
BEGIN_DEBUG_EXCEPTION_HANDLER
while(getRun())
{
#endif
while(getRun())
{
m_client->asyncStep();
m_client->asyncStep();
//m_client->updateSomeExpiredMeshes();
//m_client->updateSomeExpiredMeshes();
bool was = m_client->AsyncProcessData();
bool was = m_client->AsyncProcessData();
if(was == false)
sleep_ms(10);
}
#if CATCH_UNHANDLED_EXCEPTIONS
if(was == false)
sleep_ms(10);
}
/*
This is what has to be done in threads to get suitable debug info
*/
catch(std::exception &e)
{
dstream<<std::endl<<DTIME<<"An unhandled exception occurred: "
<<e.what()<<std::endl;
assert(0);
}
#endif
END_DEBUG_EXCEPTION_HANDLER
return NULL;
}