Searched refs:sleep_time (Results 1 - 6 of 6) sorted by relevance

/freebsd-10.1-release/usr.sbin/autofs/
H A Dautounmountd.c230 do_wait(int kq, double sleep_time) argument
236 assert(sleep_time > 0);
237 timeout.tv_sec = sleep_time;
240 log_debugx("waiting for filesystem event for %.0f seconds", sleep_time);
259 double expiration_time = 600, retry_time = 600, mounted_max, sleep_time; local
328 sleep_time = difftime(expiration_time, mounted_max);
330 sleep_time);
332 sleep_time = retry_time;
334 "will retry in %.0f seconds", sleep_time);
337 do_wait(kq, sleep_time);
[all...]
/freebsd-10.1-release/sys/dev/xen/balloon/
H A Dballoon.c333 int sleep_time; local
346 sleep_time = hz;
348 sleep_time = 0;
351 sleep_time);
/freebsd-10.1-release/contrib/apr-util/test/
H A Dtestreslist.c181 int sleep_time = RESLIST_TTL / RESLIST_HMAX; local
199 apr_sleep(sleep_time);
203 apr_sleep(sleep_time);
/freebsd-10.1-release/sys/kern/
H A Dkern_rwlock.c357 int64_t sleep_time = 0; local
513 sleep_time -= lockstat_nsecs();
517 sleep_time += lockstat_nsecs();
537 if (sleep_time)
538 LOCKSTAT_RECORD1(LS_RW_RLOCK_BLOCK, rw, sleep_time);
719 int64_t sleep_time = 0; local
854 sleep_time -= lockstat_nsecs();
858 sleep_time += lockstat_nsecs();
871 if (sleep_time)
872 LOCKSTAT_RECORD1(LS_RW_WLOCK_BLOCK, rw, sleep_time);
[all...]
H A Dkern_sx.c516 int64_t sleep_time = 0; local
674 sleep_time -= lockstat_nsecs();
685 sleep_time += lockstat_nsecs();
705 if (sleep_time)
706 LOCKSTAT_RECORD1(LS_SX_XLOCK_BLOCK, sx, sleep_time);
797 int64_t sleep_time = 0; local
922 sleep_time -= lockstat_nsecs();
933 sleep_time += lockstat_nsecs();
951 if (sleep_time)
952 LOCKSTAT_RECORD1(LS_SX_XLOCK_BLOCK, sx, sleep_time);
[all...]
H A Dkern_mutex.c390 int64_t sleep_time = 0; local
509 sleep_time -= lockstat_nsecs();
513 sleep_time += lockstat_nsecs();
527 if (sleep_time)
528 LOCKSTAT_RECORD1(LS_MTX_LOCK_BLOCK, m, sleep_time);

Completed in 133 milliseconds