Subversion Repositories HelenOS-historic

Rev

Rev 1040 | Rev 1090 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1040 Rev 1086
Line 28... Line 28...
28
 
28
 
29
#ifndef __SYSIPC_H__
29
#ifndef __SYSIPC_H__
30
#define __SYSIPC_H__
30
#define __SYSIPC_H__
31
 
31
 
32
__native sys_ipc_call_sync_fast(__native phoneid, __native method,
32
__native sys_ipc_call_sync_fast(__native phoneid, __native method,
33
                __native arg1, __native *data);
33
                __native arg1, ipc_data_t *data);
34
__native sys_ipc_call_sync(__native phoneid, __native *question,
34
__native sys_ipc_call_sync(__native phoneid, ipc_data_t *question,
35
               __native *reply);
35
               ipc_data_t *reply);
36
__native sys_ipc_call_async_fast(__native phoneid, __native method,
36
__native sys_ipc_call_async_fast(__native phoneid, __native method,
37
                 __native arg1, __native arg2);
37
                 __native arg1, __native arg2);
38
__native sys_ipc_call_async(__native phoneid, __native *data);
38
__native sys_ipc_call_async(__native phoneid, ipc_data_t *data);
39
__native sys_ipc_answer_fast(__native callid, __native retval,
39
__native sys_ipc_answer_fast(__native callid, __native retval,
40
                 __native arg1, __native arg2);
40
                 __native arg1, __native arg2);
41
__native sys_ipc_answer(__native callid, __native *data);
41
__native sys_ipc_answer(__native callid, ipc_data_t *data);
42
__native sys_ipc_connect_to_me(__native phoneid, __native arg1,
42
__native sys_ipc_connect_to_me(__native phoneid, __native arg1,
43
                   __native arg2, task_id_t *taskid);
43
                   __native arg2, task_id_t *taskid);
44
__native sys_ipc_wait_for_call(ipc_data_t *calldata, task_id_t *taskid,
44
__native sys_ipc_wait_for_call(ipc_data_t *calldata, task_id_t *taskid,
45
                   __native flags);
45
                   __native flags);
46
__native sys_ipc_connect_me_to(__native phoneid, __native arg1,
46
__native sys_ipc_connect_me_to(__native phoneid, __native arg1,
47
                   __native arg2);
47
                   __native arg2);
48
__native sys_ipc_forward_fast(__native callid, __native phoneid,
48
__native sys_ipc_forward_fast(__native callid, __native phoneid,
49
                  __native method, __native arg1);
49
                  __native method, __native arg1);
-
 
50
__native sys_ipc_hangup(int phoneid);
50
 
51
 
51
 
52
 
52
#endif
53
#endif