enum FUTEX2_SIZE [src]

For futex v2 API, the size of the futex at the uaddr. v1 futex are always implicitly U32. As of kernel v6.14, only U32 is implemented for v2 futexes.

Fields

U8 = 0
U16 = 1
U32 = 2
U64 = 3

Source

pub const FUTEX2_SIZE = enum(u2) { U8 = 0, U16 = 1, U32 = 2, U64 = 3, }