CI: save a minidump if it hangs on panic stop

This commit is contained in:
SChernykh 2024-10-17 16:18:00 +02:00
parent 2b453dd0cb
commit fb78eb615b

View file

@ -83,6 +83,11 @@ MinerCallbackHandler::~MinerCallbackHandler() {}
void panic_stop(const char* message)
{
#ifdef DEV_TRACK_MEMORY
// Give it 1 minute to shut down, otherwise save a minidump
minidump_and_crash(60 * 1000);
#endif
fprintf(stderr, "P2Pool can't continue execution: panic at %s\n", message);
p2pool::log::stop();