Lines Matching defs:idle_globals
64 struct idle_globals {
70 struct idle_globals idle_globals;
203 idle_globals.mp = mp;
204 idle_globals.timeout = idle_timeout;
205 gettimeofday(&idle_globals.lastmsg, NULL);
236 gettimeofday(&idle_globals.lastmsg, NULL);
301 long delta = now.tv_sec - idle_globals.lastmsg.tv_sec;
302 if (delta >= idle_globals.timeout) {
317 long delta = (now.tv_sec - idle_globals.lastmsg.tv_sec);
318 if (delta < idle_globals.timeout) {
320 sleep(idle_globals.timeout - delta);
323 idle_exit(idle_globals.mp);