Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Dthread_list.cc719 timespec wait_timeout; in SuspendAllInternal() local
720 InitTimeSpec(false, CLOCK_MONOTONIC, NsToMs(thread_suspend_timeout_ns_), 0, &wait_timeout); in SuspendAllInternal()
727 if (futex(pending_threads.Address(), FUTEX_WAIT_PRIVATE, cur_val, &wait_timeout, nullptr, 0) in SuspendAllInternal()
/aosp12/system/security/keystore2/src/
H A Dwatchdog.rs277 let (s, timeout) = condvar.wait_timeout(state, next_timeout).unwrap(); in spawn_thread()