libnode_sys 0.0.7

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

use super::super::*;

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

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