开发者

Watchdog built into the same process as the program it controls

开发者 https://www.devze.com 2022-12-14 14:01 出处:网络
I run a Visual C++ console test program inside the daily build. Every now and then the test would call some function that was changed by other developers improperly, descend into an infinite loop and

I run a Visual C++ console test program inside the daily build. Every now and then the test would call some function that was changed by other developers improperly, descend into an infinite loop and hang thus blocking the build.

I need a watchdog solution as simple as possible. Here's what I came up with. In the test program entry point I start a separate thread that loops conti开发者_如何学编程nuosly and checks elapsed time. If some predefined period is exceeded it calls TerminateProcess(). Pseudocode:

DWORD WatchDog( LPVOID)
{
     DWORD start = GetTickCount();
     while( true ) {
        Sleep( ReasonablePeriod );
        if( GetTickCount() - start > MaxAllowed ) {
            TerminateProcess( GetCurrentProcess(), 0 );
        }
     }
     return 0;
}

Is this solution any worse than a watchdog implemented as a separate master program?


I think it's preferable to implement the watchdog as a separate process. It's easier to re-use it, it's easier to detect if your app crashed and to get its return code.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号