The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

c/multi: Use U_TRACE_SET_THREAD_NAME

+4 -4
+2 -1
src/xrt/compositor/multi/comp_multi_compositor.c
··· 266 266 { 267 267 struct multi_compositor *mc = (struct multi_compositor *)ptr; 268 268 269 - os_thread_helper_name(&(mc->wait_thread.oth), "Multi-Compositor Client Wait Thread"); 269 + U_TRACE_SET_THREAD_NAME("Multi Client Module: Waiter"); 270 + os_thread_helper_name(&mc->wait_thread.oth, "Multi Client Module: Waiter"); 270 271 271 272 os_thread_helper_lock(&mc->wait_thread.oth); 272 273
+2 -3
src/xrt/compositor/multi/comp_multi_system.c
··· 434 434 static int 435 435 multi_main_loop(struct multi_system_compositor *msc) 436 436 { 437 - COMP_TRACE_MARKER(); 438 - 439 - os_thread_helper_name(&(msc->oth), "Multi-Compositor"); 437 + U_TRACE_SET_THREAD_NAME("Multi Client Module"); 438 + os_thread_helper_name(&msc->oth, "Multi Client Module"); 440 439 441 440 struct xrt_compositor *xc = &msc->xcn->base; 442 441