Ignore:
Timestamp:
2012-10-18T22:38:27Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
508fff8
Parents:
b801f2d (diff), 7d248e3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

File:
1 edited

Legend:

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

    rb801f2d r5c90e3e  
    4040#include <arch.h>
    4141
    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 }
    48 
    4942static int request_process(call_t *call, answerbox_t *box)
    5043{
     
    5649}
    5750
    58 static void answer_cleanup(call_t *answer, ipc_data_t *olddata)
     51static int answer_cleanup(call_t *answer, ipc_data_t *olddata)
    5952{
    6053        int phoneid = (int) IPC_GET_ARG5(*olddata);
     
    6255        if (phoneid >= 0)
    6356                phone_dealloc(phoneid);
     57
     58        return EOK;
    6459}
    6560
     
    9186
    9287sysipc_ops_t ipc_m_connect_to_me_ops = {
    93         .request_preprocess = request_preprocess,
     88        .request_preprocess = null_request_preprocess,
    9489        .request_forget = null_request_forget,
    9590        .request_process = request_process,
Note: See TracChangeset for help on using the changeset viewer.