Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1573 → Rev 1572

/kernel/trunk/generic/include/ipc/ipc.h
185,10 → 185,9
IPC_PHONE_SLAMMED /**< Phone was hungup from server */
} ipc_phone_state_t;
 
/** Structure identifying phone (in TASK structure) */
struct phone_s {
SPINLOCK_DECLARE(lock);
link_t link;
link_t list;
answerbox_t *callee;
ipc_phone_state_t state;
atomic_t active_calls;
195,7 → 194,7
};
 
typedef struct {
link_t link;
link_t list;
 
int flags;
 
227,7 → 226,6
extern void ipc_cleanup(task_t *task);
extern int ipc_phone_hangup(phone_t *phone, int aggressive);
extern void ipc_backsend_err(phone_t *phone, call_t *call, __native err);
extern void ipc_print_task(task_id_t taskid);
 
extern answerbox_t *ipc_phone_0;