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.