Skip to content
Snippets Groups Projects
Commit d9d209df authored by Boqun Feng's avatar Boqun Feng Committed by Daniel Almeida
Browse files

rust: sync: lock: Add `Backend::BackendInContext`


`SpinLock`'s backend can be used for `SpinLockIrq`, if the interrupts
are disabled. And it actually provides performance gains since
interrupts are not needed to be disabled anymore. So add
`Backend::BackendInContext` to describe the case where one backend can
be used for another. Use the it to implement the `lock_with()` so that
`SpinLockIrq` can avoid disabling interrupts by using `SpinLock`'s
backend.

Signed-off-by: default avatarBoqun Feng <boqun.feng@gmail.com>
parent da72e5c7
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment