Ignore:
File:
1 edited

Legend:

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

    r90efa3b r6769005  
    4747struct answerbox;
    4848struct task;
    49 struct call;
    5049
    5150typedef enum {
     
    6867        struct task *caller;
    6968        struct answerbox *callee;
    70         /* A call prepared for hangup ahead of time, so that it cannot fail. */
    71         struct call *hangup_call;
    7269        ipc_phone_state_t state;
    7370        atomic_t active_calls;
     
    174171extern void ipc_init(void);
    175172
    176 extern call_t *ipc_call_alloc(void);
     173extern call_t *ipc_call_alloc(unsigned int);
     174extern void ipc_call_free(call_t *);
     175extern void ipc_call_hold(call_t *);
     176extern void ipc_call_release(call_t *);
    177177
    178178extern errno_t ipc_call_sync(phone_t *, call_t *);
Note: See TracChangeset for help on using the changeset viewer.