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

/systemd/src/udev/
H A Dudev-event.c497 usec_t age_usec; local
499 age_usec = clock_boottime_or_monotonic() - event->birth_usec;
500 if (age_usec >= timeout_usec) {
504 timeout = ((timeout_usec - age_usec) / USEC_PER_MSEC) + MSEC_PER_SEC;
648 usec_t usec, age_usec; local
651 age_usec = usec - event->birth_usec;
652 if (age_usec < timeout_usec) {
653 if (timeout_warn_usec > 0 && timeout_warn_usec < timeout_usec && age_usec < timeout_warn_usec) {
654 spawn.timeout_warn = timeout_warn_usec - age_usec;
663 spawn.timeout = timeout_usec - age_usec;
[all...]

Completed in 27 milliseconds