- Timestamp:
- 2006-03-19T12:43:37Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4c61e60
- Parents:
- 0a862b65
- Location:
- libipc
- Files:
-
- 3 edited
-
generic/ipc.c (modified) (1 diff)
-
include/ipc.h (modified) (2 diffs)
-
include/ns.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libipc/generic/ipc.c
r0a862b65 r7048773 253 253 } 254 254 255 /* Hang up specified phone */ 256 int ipc_hangup(int phoneid) 257 { 258 return __SYSCALL1(SYS_IPC_HANGUP, phoneid); 259 } -
libipc/include/ipc.h
r0a862b65 r7048773 35 35 36 36 typedef sysarg_t ipcarg_t; 37 typedef sysarg_t ipc_data_t[IPC_CALL_LEN]; 37 typedef struct { 38 sysarg_t args[IPC_CALL_LEN]; 39 sysarg_t phoneid; 40 } ipc_data_t ; 38 41 typedef struct { 39 42 unsigned long long taskid; … … 66 69 unsigned long long *taskid); 67 70 int ipc_connect_me_to(int phoneid, int arg1, int arg2); 71 int ipc_hangup(int phoneid); 68 72 69 73 #endif -
libipc/include/ns.h
r0a862b65 r7048773 32 32 #define NS_PING 1024 33 33 #define NS_PING_SVC 1025 34 #define NS_HANGUP 1026 34 35 35 36 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
