The open source OpenXR runtime
0
fork

Configure Feed

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

c/multi: Name some threads

+5 -1
+2
src/xrt/compositor/multi/comp_multi_compositor.c
··· 219 219 { 220 220 struct multi_compositor *mc = (struct multi_compositor *)ptr; 221 221 222 + os_thread_helper_name(&(mc->wait_thread.oth), "Multi-Compositor Client Wait Thread"); 223 + 222 224 os_thread_helper_lock(&mc->wait_thread.oth); 223 225 224 226 while (os_thread_helper_is_running_locked(&mc->wait_thread.oth)) {
+3 -1
src/xrt/compositor/multi/comp_multi_system.c
··· 356 356 multi_main_loop(struct multi_system_compositor *msc) 357 357 { 358 358 COMP_TRACE_MARKER(); 359 - os_thread_helper_name(&(msc->oth), "Multi-System Compositor", L"Multi-System Compositor"); 359 + 360 + os_thread_helper_name(&(msc->oth), "Multi-Compositor"); 361 + 360 362 struct xrt_compositor *xc = &msc->xcn->base; 361 363 362 364 //! @todo Don't make this a hack.