summaryrefslogtreecommitdiffstats
path: root/rust/bindings
diff options
context:
space:
mode:
authorAlice Ryhl <aliceryhl@google.com>2024-01-08 15:49:59 +0100
committerMiguel Ojeda <ojeda@kernel.org>2024-01-28 20:54:35 +0100
commite7b9b1ff1d49e2117f2d78fa5f11b0d006c169f7 (patch)
tree75cab8e914cb8ff13d964bc303576b7868c00b18 /rust/bindings
parentrust: time: add msecs to jiffies conversion (diff)
downloadlinux-e7b9b1ff1d49e2117f2d78fa5f11b0d006c169f7.tar.xz
linux-e7b9b1ff1d49e2117f2d78fa5f11b0d006c169f7.zip
rust: sync: add `CondVar::wait_timeout`
Sleep on a condition variable with a timeout. This is used by Rust Binder for process freezing. There, we want to sleep until the freeze operation completes, but we want to be able to abort the process freezing if it doesn't complete within some timeout. Note that it is not enough to avoid jiffies by introducing a variant of `CondVar::wait_timeout` that takes the timeout in msecs because we need to be able to restart the sleep with the remaining sleep duration if it is interrupted, and if the API takes msecs rather than jiffies, then that would require a conversion roundtrip jiffies->msecs->jiffies that is best avoided. Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com> Reviewed-by: Tiago Lam <tiagolam@gmail.com> Reviewed-by: Boqun Feng <boqun.feng@gmail.com> Signed-off-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Benno Lossin <benno.lossin@proton.me> Link: https://lore.kernel.org/r/20240108-rb-new-condvar-methods-v4-3-88e0c871cc05@google.com [ Added `CondVarTimeoutResult` re-export and fixed typo. ] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'rust/bindings')
0 files changed, 0 insertions, 0 deletions