⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

call_rcu

Function call_rcu 

Source
pub fn call_rcu<F: FnOnce() + Send + 'static>(func: F)
Expand description

Register a deferred callback to be called after the next grace period.

The callback will be invoked after all CPUs have passed through a quiescent state following this call. The callback must be Send since it may execute on a different CPU.