Changeset c4e4507 in mainline for generic/include/ipc/ipc.h


Ignore:
Timestamp:
2006-06-04T17:17:29Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2cb5e64
Parents:
fe19611
Message:

Renamed some things in IPC to be consistent.
Added ipc reporting to kconsole.

File:
1 edited

Legend:

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

    rfe19611 rc4e4507  
    186186} ipc_phone_state_t;
    187187
     188/** Structure identifying phone (in TASK structure) */
    188189struct phone_s {
    189190        SPINLOCK_DECLARE(lock);
    190         link_t list;
     191        link_t link;
    191192        answerbox_t *callee;
    192193        ipc_phone_state_t state;
     
    195196
    196197typedef struct {
    197         link_t list;
     198        link_t link;
    198199
    199200        int flags;
     
    227228extern int ipc_phone_hangup(phone_t *phone, int aggressive);
    228229extern void ipc_backsend_err(phone_t *phone, call_t *call, __native err);
     230extern void ipc_print_task(task_id_t taskid);
    229231
    230232extern answerbox_t *ipc_phone_0;
Note: See TracChangeset for help on using the changeset viewer.