Skip to main content

Pool

Struct Pool 

Source
pub struct Pool { /* private fields */ }
Expand description

A shared state block pool for vDSO-based getrandom operations.

This pool maintains a free list of opaque state blocks. Threads can rent a block from the pool and use it to generate random bytes. The pool is Sync and supports concurrent access. Under debug assertions, Pool::drop detects potential misuse, such as double drops.

The pool itself offers only Pool::new. To interact with the pool, see crate::LocalState, which wraps individual state blocks for random generation.

use vdso_rng::Pool;
let _pool = Pool::new().unwrap();

§Memory Behavior

The pool grows monotonically with system parallelism. Opaque state blocks are stored in memory-mapped pages that are not backed by swap. When the system is under memory pressure, the OS may reclaim these pages, which is generally safe.

§Safety

  • Not async-signal-safe: Using the pool in signal handlers may cause deadlocks.
  • Fork safety: After fork, the kernel wipes the random states to avoid leaks. However, we do not guarantee correctness of pool usage across forks.

Implementations§

Source§

impl Pool

Source

pub fn new() -> Result<Self, Error>

Trait Implementations§

Source§

impl Drop for Pool

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

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

Auto Trait Implementations§

§

impl !Freeze for Pool

§

impl !RefUnwindSafe for Pool

§

impl Send for Pool

§

impl Sync for Pool

§

impl Unpin for Pool

§

impl UnsafeUnpin for Pool

§

impl UnwindSafe for Pool

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

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

Performs the conversion.
Source§

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

Source§

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

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

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

Performs the conversion.