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

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

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

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.