Changeset 675fcbd in mainline for kernel/generic/src/ipc/ipc.c


Ignore:
Timestamp:
2012-09-29T10:18:16Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
190976f
Parents:
6b83300
Message:

Call the answer_process() callback for answers picked up in IPC cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/ipc.c

    r6b83300 r675fcbd  
    707707            SYNCH_FLAGS_NONE);
    708708        ASSERT(call->flags & (IPC_CALL_ANSWERED | IPC_CALL_NOTIF));
     709
     710        sysipc_ops_t *ops = sysipc_ops_get(call->request_method);
     711        if (ops->answer_process)
     712                ops->answer_process(call);
     713
    709714        ipc_call_free(call);
    710715        goto restart;
Note: See TracChangeset for help on using the changeset viewer.