Subversion Repositories HelenOS

Rev

Rev 2471 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2471 Rev 4407
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