The open source OpenXR runtime
0
fork

Configure Feed

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

ipc: Trace around ipc_dispatch

+8
+8
src/xrt/ipc/server/ipc_server_per_client_thread.c
··· 112 112 113 113 // Check the first 4 bytes of the message and dispatch. 114 114 ipc_command_t *ipc_command = (ipc_command_t *)buf; 115 + 116 + IPC_TRACE_BEGIN(ipc_dispatch); 115 117 xrt_result_t result = ipc_dispatch(ics, ipc_command); 118 + IPC_TRACE_END(ipc_dispatch); 119 + 116 120 if (result != XRT_SUCCESS) { 117 121 IPC_ERROR(ics->server, "During packet handling, disconnecting client."); 118 122 break; ··· 171 175 } else { 172 176 // Check the first 4 bytes of the message and dispatch. 173 177 ipc_command_t *ipc_command = (ipc_command_t *)buf; 178 + 179 + IPC_TRACE_BEGIN(ipc_dispatch); 174 180 xrt_result_t result = ipc_dispatch(ics, ipc_command); 181 + IPC_TRACE_END(ipc_dispatch); 182 + 175 183 if (result != XRT_SUCCESS) { 176 184 IPC_ERROR(ics->server, "During packet handling, disconnecting client."); 177 185 break;