Changeset 716185d in mainline for kernel/generic/src/ipc/ops


Ignore:
Timestamp:
2012-10-03T20:37:07Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
466e95f7
Parents:
190976f
Message:

Call request_process() callback for incoming calls during IPC cleanup.

File:
1 edited

Legend:

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

    r190976f r716185d  
    3939#include <abi/errno.h>
    4040#include <arch.h>
    41 
    42 static int request_preprocess(call_t *call, phone_t *phone)
    43 {
    44         /* Start with the assumption that there is no allocated phoneid. */
    45         IPC_SET_ARG5(call->data, -1);
    46         return EOK;
    47 }
    4841
    4942static int request_process(call_t *call, answerbox_t *box)
     
    9184
    9285sysipc_ops_t ipc_m_connect_to_me_ops = {
    93         .request_preprocess = request_preprocess,
     86        .request_preprocess = null_request_preprocess,
    9487        .request_forget = null_request_forget,
    9588        .request_process = request_process,
Note: See TracChangeset for help on using the changeset viewer.