Changeset 503ffce in mainline for uspace/app/trace/ipcp.c


Ignore:
Timestamp:
2017-11-23T23:52:59Z (6 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f571ca49
Parents:
b1f36e3
Message:

Return IPC_CALLID_* in call data instead of callid

Callid will be replaced by capability handles soon so the API needs
to be cleanup up and any flags passed together with callid must be
passed using some other way.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/ipcp.c

    rb1f36e3 r503ffce  
    323323        pending_call_t *pcall;
    324324       
    325         if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) {
     325        if ((call->flags & IPC_CALLID_ANSWERED) == 0 &&
     326            hash != IPCP_CALLID_SYNC) {
    326327                /* Not a response */
    327328                if ((display_mask & DM_IPC) != 0) {
     
    331332        }
    332333       
    333         hash = hash & ~IPC_CALLID_ANSWERED;
    334        
    335334        item = hash_table_find(&pending_calls, &hash);
    336335        if (item == NULL)
Note: See TracChangeset for help on using the changeset viewer.