[][src]Struct nc::types::robust_list_t

#[repr(C)]pub struct robust_list_t {
    pub next: *mut robust_list_t,
}

Support for robust futexes: the kernel cleans up held futexes at thread exit time. Per-lock list entry - embedded in user-space locks, somewhere close to the futex field. (Note: user-space uses a double-linked list to achieve O(1) list add and remove, but the kernel only needs to know about the forward link)

NOTE: this structure is part of the syscall ABI, and must not be changed.

Fields

next: *mut robust_list_t

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.