Changeset 2133e02 in mainline for uspace/srv/ns/ns.c
- Timestamp:
- 2015-08-18T20:14:05Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a522e5
- Parents:
- 84dc30c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/ns.c
r84dc30c r2133e02 39 39 #include <ipc/ns.h> 40 40 #include <ipc/services.h> 41 #include <abi/ipc/interfaces.h> 41 42 #include <stdio.h> 42 43 #include <errno.h> … … 74 75 sysarg_t retval; 75 76 77 iface_t iface; 76 78 service_t service; 77 79 sysarg_t phone; … … 82 84 break; 83 85 case IPC_M_CONNECT_TO_ME: 84 service = IPC_GET_ARG1(call); 86 iface = IPC_GET_ARG1(call); 87 service = IPC_GET_ARG2(call); 85 88 phone = IPC_GET_ARG5(call); 89 90 (void) iface; 86 91 87 92 /* … … 96 101 break; 97 102 case IPC_M_CONNECT_ME_TO: 98 service = IPC_GET_ARG1(call); 103 iface = IPC_GET_ARG1(call); 104 service = IPC_GET_ARG2(call); 105 106 (void) iface; 99 107 100 108 /*
Note:
See TracChangeset
for help on using the changeset viewer.