Changeset fd1210a in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2009-11-21T10:36:48Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de9460e
Parents:
33adc6ce
Message:

Cleanup headers in ipc.h.

File:
1 edited

Legend:

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

    r33adc6ce rfd1210a  
    317317} call_t;
    318318
     319
     320extern answerbox_t *ipc_phone_0;
     321
     322
    319323extern void ipc_init(void);
    320 extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int);
    321 extern void ipc_answer(answerbox_t *, call_t *);
     324
     325extern call_t * ipc_call_alloc(int);
     326extern void ipc_call_free(call_t *);
     327
    322328extern int ipc_call(phone_t *, call_t *);
    323329extern int ipc_call_sync(phone_t *, call_t *);
     330extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int);
     331extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int);
     332extern void ipc_answer(answerbox_t *, call_t *);
     333
    324334extern void ipc_phone_init(phone_t *);
    325335extern void ipc_phone_connect(phone_t *, answerbox_t *);
    326 extern void ipc_call_free(call_t *);
    327 extern call_t * ipc_call_alloc(int);
     336extern int ipc_phone_hangup(phone_t *);
     337
    328338extern void ipc_answerbox_init(answerbox_t *, struct task *);
    329 extern void task_print_list(void);
    330 extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int);
     339
    331340extern void ipc_cleanup(void);
    332 extern int ipc_phone_hangup(phone_t *);
    333341extern void ipc_backsend_err(phone_t *, call_t *, unative_t);
    334 extern void ipc_print_task(task_id_t);
    335342extern void ipc_answerbox_slam_phones(answerbox_t *, bool);
    336343extern void ipc_cleanup_call_list(link_t *);
    337344
    338 extern answerbox_t *ipc_phone_0;
     345extern void ipc_print_task(task_id_t);
    339346
    340347#endif
Note: See TracChangeset for help on using the changeset viewer.