Changes in uspace/srv/ns/ns.c [fafb8e5:beb83c1] in mainline
- File:
-
- 1 edited
-
uspace/srv/ns/ns.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/ns.c
rfafb8e5 rbeb83c1 55 55 service_t service; 56 56 57 iface = ipc_get_arg1(icall);58 service = ipc_get_arg2(icall);57 iface = IPC_GET_ARG1(*icall); 58 service = IPC_GET_ARG2(*icall); 59 59 if (service != 0) { 60 60 /* … … 76 76 77 77 async_get_call(&call); 78 if (! ipc_get_imethod(&call))78 if (!IPC_GET_IMETHOD(call)) 79 79 break; 80 80 … … 84 84 service_t service; 85 85 86 switch ( ipc_get_imethod(&call)) {86 switch (IPC_GET_IMETHOD(call)) { 87 87 case NS_REGISTER: 88 service = ipc_get_arg1(&call);89 iface = ipc_get_arg2(&call);88 service = IPC_GET_ARG1(call); 89 iface = IPC_GET_ARG2(call); 90 90 91 91 /* … … 101 101 break; 102 102 case NS_REGISTER_BROKER: 103 service = ipc_get_arg1(&call);103 service = IPC_GET_ARG1(call); 104 104 retval = ns_service_register_broker(service); 105 105 break; … … 109 109 case NS_TASK_WAIT: 110 110 id = (task_id_t) 111 MERGE_LOUP32( ipc_get_arg1(&call), ipc_get_arg2(&call));111 MERGE_LOUP32(IPC_GET_ARG1(call), IPC_GET_ARG2(call)); 112 112 wait_for_task(id, &call); 113 113 continue; … … 120 120 default: 121 121 printf("%s: Method not supported (%" PRIun ")\n", 122 NAME, ipc_get_imethod(&call));122 NAME, IPC_GET_IMETHOD(call)); 123 123 retval = ENOTSUP; 124 124 break;
Note:
See TracChangeset
for help on using the changeset viewer.
