libnode_sys 0.0.7

C bindings for libnode
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::sync::OnceLock;

use super::super::*;

const SYMBOL: &[u8] = "napi_acquire_threadsafe_function".as_bytes();
type SIGNATURE = fn(func: napi_threadsafe_function) -> napi_status;
static CACHE: OnceLock<crate::load::Symbol<SIGNATURE>> = OnceLock::new();

pub unsafe fn napi_acquire_threadsafe_function(func: napi_threadsafe_function) -> napi_status {
  unsafe { CACHE.get_or_init(|| crate::load::get_sym(SYMBOL).unwrap())(func) }
}