Changeset 2d5a54f3 in mainline for generic/include/ipc/sysipc.h
- Timestamp:
- 2006-03-16T00:25:50Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2fb49101
- Parents:
- c23502d
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/sysipc.h
rc23502d r2d5a54f3 27 27 */ 28 28 29 #ifndef __ NS_H_30 #define __ NS_H_29 #ifndef __SYSIPC_H__ 30 #define __SYSIPC_H__ 31 31 32 /* NameService methods */ 33 34 /** Ping name service */ 35 #define NS_PING 1 36 37 38 #ifdef KERNEL 39 40 #include <ipc/ipc.h> 41 42 extern void ns_start(void); 32 __native sys_ipc_call_sync_fast(__native phoneid, __native method, 33 __native arg1, __native *data); 34 __native sys_ipc_call_sync(__native phoneid, __native *question, 35 __native *reply); 36 __native sys_ipc_call_async_fast(__native phoneid, __native method, 37 __native arg1, __native arg2); 38 __native sys_ipc_call_async(__native phoneid, __native *data); 39 __native sys_ipc_answer_fast(__native callid, __native retval, 40 __native arg1, __native arg2); 41 __native sys_ipc_answer(__native callid, __native *data); 42 __native sys_ipc_connect_to_me(__native phoneid, __native arg1, 43 __native arg2, task_id_t *taskid); 44 __native sys_ipc_wait_for_call(ipc_data_t *calldata, task_id_t *taskid, 45 __native flags); 43 46 44 47 #endif 45 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.