Changeset 12ab886 in mainline for kernel/generic/include/ipc/ipc.h


Ignore:
Timestamp:
2008-04-05T11:06:10Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1383356
Parents:
776f2e6
Message:

Fix initialization of answerbox→task in ipc_answerbox_init.
Contributed by Jiri Svoboda.

File:
1 edited

Legend:

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

    r776f2e6 r12ab886  
    283283
    284284extern void ipc_init(void);
    285 extern call_t * ipc_wait_for_call(answerbox_t *box, uint32_t usec, int flags);
    286 extern void ipc_answer(answerbox_t *box, call_t *request);
    287 extern int ipc_call(phone_t *phone, call_t *call);
    288 extern void ipc_call_sync(phone_t *phone, call_t *request);
    289 extern void ipc_phone_init(phone_t *phone);
    290 extern void ipc_phone_connect(phone_t *phone, answerbox_t *box);
    291 extern void ipc_call_free(call_t *call);
    292 extern call_t * ipc_call_alloc(int flags);
    293 extern void ipc_answerbox_init(answerbox_t *box);
    294 extern void ipc_call_static_init(call_t *call);
     285extern call_t * ipc_wait_for_call(answerbox_t *, uint32_t, int);
     286extern void ipc_answer(answerbox_t *, call_t *);
     287extern int ipc_call(phone_t *, call_t *);
     288extern void ipc_call_sync(phone_t *, call_t *);
     289extern void ipc_phone_init(phone_t *);
     290extern void ipc_phone_connect(phone_t *, answerbox_t *);
     291extern void ipc_call_free(call_t *);
     292extern call_t * ipc_call_alloc(int);
     293extern void ipc_answerbox_init(answerbox_t *, struct task *);
     294extern void ipc_call_static_init(call_t *);
    295295extern void task_print_list(void);
    296 extern int ipc_forward(call_t *call, phone_t *newphone, answerbox_t *oldbox,
    297     int mode);
     296extern int ipc_forward(call_t *, phone_t *, answerbox_t *, int);
    298297extern void ipc_cleanup(void);
    299 extern int ipc_phone_hangup(phone_t *phone);
    300 extern void ipc_backsend_err(phone_t *phone, call_t *call, unative_t err);
    301 extern void ipc_print_task(task_id_t taskid);
     298extern int ipc_phone_hangup(phone_t *);
     299extern void ipc_backsend_err(phone_t *, call_t *, unative_t);
     300extern void ipc_print_task(task_id_t);
    302301
    303302extern answerbox_t *ipc_phone_0;
Note: See TracChangeset for help on using the changeset viewer.