Struct rstubs::util::ticket::Ticket

source ·
pub struct Ticket<T> {
    serving: AtomicUsize,
    ticket: AtomicUsize,
    value: UnsafeCell<T>,
}
Expand description

By the use of Ticketlocks, it is possible to serialize blocks of code that might run parallel on multiple CPU cores.

Synchronization is implemented using a lock and a ticket variable. Once a thread tries to enter the critical area, it obtains a ticket by atomic increment of the ticket variable and waits until the lock variable is equal to its ticket. When a thread leaves the critical area, it increments the lock variable by one and thereby allows the next thread to enter the critical area.

Fields§

§serving: AtomicUsize§ticket: AtomicUsize§value: UnsafeCell<T>

Wrap the mutable data inside an unsafe cell, so that the compiler doesn’t optimize it away

Implementations§

source§

impl<T> Ticket<T>

source

pub const fn new(value: T) -> Self

Create a new ticket lock, protecting value

source

pub fn lock(&self) -> TicketGuard<'_, T>

Locks the lock and returns the protected data.

The data is wrapped in a guard, that unlocks the lock if it goes out of scope.

source

pub unsafe fn unlock(&self)

If you really want to unlock it. This is not protected by race conditions!

source

pub unsafe fn raw(&self) -> &mut T

If you really want to access the contents. This is not protected by race conditions!

Trait Implementations§

source§

impl<T: Debug> Debug for Ticket<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default> Default for Ticket<T>

source§

fn default() -> Ticket<T>

Returns the “default value” for a type. Read more
source§

impl<T> Send for Ticket<T>

source§

impl<T> Sync for Ticket<T>

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for Ticket<T>

§

impl<T> Unpin for Ticket<T>
where T: Unpin,

§

impl<T> UnwindSafe for Ticket<T>
where T: UnwindSafe,

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.

§

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.

§

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

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.