Changes in uspace/app/trace/ipcp.c [503ffce:7354b5e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/ipcp.c
r503ffce r7354b5e 323 323 pending_call_t *pcall; 324 324 325 if ((call->flags & IPC_CALLID_ANSWERED) == 0 && 326 hash != IPCP_CALLID_SYNC) { 325 if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) { 327 326 /* Not a response */ 328 327 if ((display_mask & DM_IPC) != 0) { … … 332 331 } 333 332 333 hash = hash & ~IPC_CALLID_ANSWERED; 334 334 335 item = hash_table_find(&pending_calls, &hash); 335 336 if (item == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.