Changes in uspace/lib/c/generic/loc.c [fafb8e5:c477c80] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/loc.c
rfafb8e5 rc477c80 62 62 async_get_call(&call); 63 63 64 if (! ipc_get_imethod(&call)) {64 if (!IPC_GET_IMETHOD(call)) { 65 65 async_answer_0(&call, EOK); 66 66 return; 67 67 } 68 68 69 switch ( ipc_get_imethod(&call)) {69 switch (IPC_GET_IMETHOD(call)) { 70 70 case LOC_EVENT_CAT_CHANGE: 71 71 fibril_mutex_lock(&loc_callback_mutex); … … 303 303 304 304 if (sid != NULL) 305 *sid = (service_id_t) ipc_get_arg1(&answer);305 *sid = (service_id_t) IPC_GET_ARG1(answer); 306 306 307 307 return retval; … … 359 359 360 360 if (handle != NULL) 361 *handle = (service_id_t) ipc_get_arg1(&answer);361 *handle = (service_id_t) IPC_GET_ARG1(answer); 362 362 363 363 return retval; … … 404 404 return retval; 405 405 406 act_size = ipc_get_arg2(&dreply);406 act_size = IPC_GET_ARG2(dreply); 407 407 assert(act_size <= LOC_NAME_MAXLEN); 408 408 name_buf[act_size] = '\0'; … … 492 492 493 493 if (handle != NULL) 494 *handle = (service_id_t) ipc_get_arg1(&answer);494 *handle = (service_id_t) IPC_GET_ARG1(answer); 495 495 496 496 return retval; … … 541 541 542 542 if (cat_id != NULL) 543 *cat_id = (category_id_t) ipc_get_arg1(&answer);543 *cat_id = (category_id_t) IPC_GET_ARG1(answer); 544 544 545 545 return retval; … … 778 778 } 779 779 780 *act_size = ipc_get_arg1(&answer);780 *act_size = IPC_GET_ARG1(answer); 781 781 return EOK; 782 782 }
Note:
See TracChangeset
for help on using the changeset viewer.