Set tracy thread name

This commit is contained in:
Maximilian Ammann 2022-04-04 12:27:57 +02:00
parent dbf14b97e6
commit a1b511db45

View File

@ -48,8 +48,14 @@ impl Map {
#[cfg(not(target_arch = "wasm32"))] #[cfg(not(target_arch = "wasm32"))]
pub fn run_sync_with_max_frames(self, max_frames: Option<u64>) { pub fn run_sync_with_max_frames(self, max_frames: Option<u64>) {
tokio::runtime::Builder::new_multi_thread() tokio::runtime::Builder::new_multi_thread()
.worker_threads(2)
.threa
.enable_io() .enable_io()
.enable_time() .enable_time()
.on_thread_start(|| {
#[cfg(feature = "enable-tracing")]
tracy_client::set_thread_name("tokio-runtime-worker");
})
.build() .build()
.unwrap() .unwrap()
.block_on(async { .block_on(async {