Changeset f39d5c2 in mainline


Ignore:
Timestamp:
2012-08-27T22:14:15Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5a77550
Parents:
e5a4250
Message:

Add comment about taking shortcut in IPC_M_CONNECT_TO_ME's request_process().

File:
1 edited

Legend:

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

    re5a4250 rf39d5c2  
    4444        int phoneid = phone_alloc(TASK);
    4545
    46         if (phoneid < 0) {  /* Failed to allocate phone */
     46        if (phoneid < 0) {
    4747                IPC_SET_RETVAL(call->data, ELIMIT);
     48                /*
     49                 * This is a shortcut which bypasses the standard call
     50                 * processing hooks. We are still playing it save here as
     51                 * there is no state to be cleaned up at this stage.
     52                 */
    4853                ipc_answer(box, call);
    4954                return -1;
Note: See TracChangeset for help on using the changeset viewer.