Home
last modified time | relevance | path

Searched refs:watchdog_timeout (Results 1 – 1 of 1) sorted by relevance

/external/lldb/tools/debugserver/source/MacOSX/
DMachTask.cpp698 mach_msg_timeout_t watchdog_timeout = 60 * 1000; in ExceptionThread() local
716 watchdog_timeout = (mach_msg_timeout_t)watchdogRenewalInterval * 1000; in ExceptionThread()
717 if (watchdog_timeout > 3000) in ExceptionThread()
718 watchdog_timeout -= 1000; // Give us a second to renew our timeout in ExceptionThread()
719 else if (watchdog_timeout > 1000) in ExceptionThread()
720watchdog_timeout -= 250; // Give us a quarter of a second to renew our timeout in ExceptionThread()
723 if (periodic_timeout == 0 || periodic_timeout > watchdog_timeout) in ExceptionThread()
724 periodic_timeout = watchdog_timeout; in ExceptionThread()
811 if (watchdog_elapsed >= watchdog_timeout) in ExceptionThread()