Skip to main content

KMutexGuard

Struct KMutexGuard 

Source
pub struct KMutexGuard<'a, Class: LockClass, M: RawLock = RawMutex, P: LockPolicy<M> = <M as RawLock>::DefaultPolicy> { /* private fields */ }
Expand description

A validation guard representing exclusive lock ownership and active list participation.

The guard is pinned in memory to ensure that its lock_entry pointer remains safe and valid inside the C++ loop detector active thread list.

Implementations§

Source§

impl<'a, Class: LockClass, M: RawLock, P: LockPolicy<M>> KMutexGuard<'a, Class, M, P>

Source

pub fn project<'__pin>( self: Pin<&'__pin mut Self>, ) -> KMutexGuardProjection<'__pin, 'a, Class, M, P>

Pin-projects all fields of Self.

These fields are structurally pinned:

  • lock_entry

These fields are not structurally pinned:

  • mutex
  • state
  • token
Source§

impl<'a, Class: LockClass, M: RawLock, P: LockPolicy<M>> KMutexGuard<'a, Class, M, P>

Source

pub fn new(mutex: &'a KMutex<Class, M>) -> impl PinInit<Self, Infallible>
where P: LockPolicy<M, AcquireArgs = ()>,

Creates a new stack-pinned validation guard initialization block.

Source

pub fn new_with_args( mutex: &'a KMutex<Class, M>, args: P::AcquireArgs, ) -> impl PinInit<Self, Infallible>

Creates a new stack-pinned validation guard initialization block with policy acquire arguments.

Source

pub fn token(&self) -> &LockToken<'a, Class>

Returns a shared reference to the lock proof LockToken.

Source

pub fn token_mut(self: Pin<&mut Self>) -> &mut LockToken<'a, Class>

Returns a mutable reference to the lock proof LockToken inside this pinned projection.

Source

pub fn call_unlocked<R, F: FnOnce() -> R>(self: Pin<&mut Self>, f: F) -> R

Temporarily releases the lock before executing the given callable f and then re-acquires the lock.

Source

pub fn call_untracked<R, F: FnOnce(&mut LockToken<'a, Class>) -> R>( self: Pin<&mut Self>, f: F, ) -> R

Calls a closure while temporarily disabling lockdep tracking for the lock held by this guard.

Trait Implementations§

Source§

impl<'a, Class: LockClass, M: RawLock, P: LockPolicy<M>> Drop for KMutexGuard<'a, Class, M, P>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl<'a, Class: LockClass, M: RawLock, P: LockPolicy<M>> HasPinData for KMutexGuard<'a, Class, M, P>

Source§

type PinData = __ThePinData<'a, Class, M, P>

Source§

unsafe fn __pin_data() -> Self::PinData

Source§

impl<'a, Class: LockClass, M: RawLock, P: LockPolicy<M>> PinnedDrop for KMutexGuard<'a, Class, M, P>

Source§

fn drop(self: Pin<&mut Self>, _: OnlyCallFromDrop)

Executes the pinned destructor of this type. Read more

Auto Trait Implementations§

§

impl<'a, Class, M = RawMutex, P = <M as RawLock>::DefaultPolicy> !Send for KMutexGuard<'a, Class, M, P>

§

impl<'a, Class, M = RawMutex, P = <M as RawLock>::DefaultPolicy> !Sync for KMutexGuard<'a, Class, M, P>

§

impl<'a, Class, M, P> Freeze for KMutexGuard<'a, Class, M, P>
where <M as RawLock>::LockEntry: Freeze, <P as LockPolicy<M>>::GuardState: Freeze,

§

impl<'a, Class, M, P> RefUnwindSafe for KMutexGuard<'a, Class, M, P>
where <M as RawLock>::LockEntry: RefUnwindSafe, <P as LockPolicy<M>>::GuardState: RefUnwindSafe, M: RefUnwindSafe, Class: RefUnwindSafe,

§

impl<'a, Class, M, P> UnsafeUnpin for KMutexGuard<'a, Class, M, P>
where <M as RawLock>::LockEntry: UnsafeUnpin, <P as LockPolicy<M>>::GuardState: UnsafeUnpin,

§

impl<'a, Class, M, P> UnwindSafe for KMutexGuard<'a, Class, M, P>
where <M as RawLock>::LockEntry: UnwindSafe, <P as LockPolicy<M>>::GuardState: UnwindSafe, M: RefUnwindSafe, Class: RefUnwindSafe,

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Init<T> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), !>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

Source§

impl<T> PinInit<T> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), !>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

impl<T> ToMutPtr for T
where T: ?Sized,

Source§

type Target = T

The target type of the pointer.
Source§

fn to_mut_ptr(&self) -> *mut T

Casts the reference to a mutable raw pointer.
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = !

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.