Rev 2787 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2787 | Rev 4692 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | #ifndef KERN_IPCRSC_H_ |
35 | #ifndef KERN_IPCRSC_H_ |
| 36 | #define KERN_IPCRSC_H_ |
36 | #define KERN_IPCRSC_H_ |
| 37 | 37 | ||
| - | 38 | #include <proc/task.h> |
|
| - | 39 | #include <ipc/ipc.h> |
|
| - | 40 | ||
| 38 | extern call_t * get_call(unative_t callid); |
41 | extern call_t * get_call(unative_t callid); |
| 39 | extern int phone_alloc(void); |
42 | extern int phone_alloc(task_t *t); |
| 40 | extern void phone_connect(int phoneid, answerbox_t *box); |
43 | extern void phone_connect(int phoneid, answerbox_t *box); |
| 41 | extern void phone_dealloc(int phoneid); |
44 | extern void phone_dealloc(int phoneid); |
| 42 | 45 | ||
| 43 | #endif |
46 | #endif |
| 44 | 47 | ||