Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ipc/ipc.h

    r03a8a8e rbc117a5  
    147147        struct task *sender;
    148148       
     149        /*
     150         * Answerbox that will receive the answer.
     151         * This will most of the times be the sender's answerbox,
     152         * but we allow for useful exceptions.
     153         */
     154        answerbox_t *callerbox;
     155
    149156        /** Phone which was used to send the call. */
    150157        phone_t *caller_phone;
     
    172179extern void ipc_call_release(call_t *);
    173180
     181extern int ipc_call_sync(phone_t *, call_t *);
    174182extern int ipc_call(phone_t *, call_t *);
    175183extern call_t *ipc_wait_for_call(answerbox_t *, uint32_t, unsigned int);
Note: See TracChangeset for help on using the changeset viewer.