Lines Matching defs:timeout
25 #include "timeout.h"
27 static volatile bool timeout;
37 timeout = true;
40 /* Start a timeout. Call timeout_check() to verify that the timeout hasn't
41 * expired. timeout_end() must be called to stop the timeout. Timeouts cannot
49 /* Exit with an error message if the timeout has expired */
52 if (timeout) {
58 /* Stop a timeout */
62 timeout = false;
65 /* Sleep in a timeout section.