mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-04-04 05:09:03 +00:00
CI: save a minidump if it hangs on panic stop
This commit is contained in:
parent
2b453dd0cb
commit
fb78eb615b
1 changed files with 5 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue