zcash_script/depend/zcash/src/rust/src/init_ffi.rs

8 lines
220 B
Rust

#[no_mangle]
pub extern "C" fn zcashd_init_rayon_threadpool() {
rayon::ThreadPoolBuilder::new()
.thread_name(|i| format!("zc-rayon-{}", i))
.build_global()
.expect("Only initialized once");
}