Changeset fafb8e5 in mainline for uspace/app
- Timestamp:
- 2019-02-06T13:25:12Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95a47b0
- Parents:
- eb13ef8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-02 14:10:59)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-06 13:25:12)
- Location:
- uspace/app
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/kio/kio.c
reb13ef8 rfafb8e5 164 164 fibril_mutex_lock(&mtx); 165 165 166 size_t kio_start = (size_t) IPC_GET_ARG1(call);167 size_t kio_len = (size_t) IPC_GET_ARG2(call);168 size_t kio_stored = (size_t) IPC_GET_ARG3(call);166 size_t kio_start = (size_t) ipc_get_arg1(call); 167 size_t kio_len = (size_t) ipc_get_arg2(call); 168 size_t kio_stored = (size_t) ipc_get_arg3(call); 169 169 170 170 size_t offset = (kio_start + kio_len - kio_stored) % kio_length; -
uspace/app/trace/ipcp.c
reb13ef8 rfafb8e5 194 194 printf("Call handle: %p, phone: %p, proto: %s, method: ", 195 195 chandle, phandle, (proto ? proto->name : "n/a")); 196 ipc_m_print(proto, IPC_GET_IMETHOD(call));196 ipc_m_print(proto, ipc_get_imethod(call)); 197 197 printf(" args: (%" PRIun ", %" PRIun ", %" PRIun ", " 198 198 "%" PRIun ", %" PRIun ")\n", … … 203 203 204 204 if (proto != NULL) { 205 oper = proto_get_oper(proto, IPC_GET_IMETHOD(call));205 oper = proto_get_oper(proto, ipc_get_imethod(call)); 206 206 } else { 207 207 oper = NULL; … … 262 262 263 263 phone = pcall->phone_handle; 264 method = IPC_GET_IMETHOD(&pcall->question);265 retval = IPC_GET_RETVAL(answer);264 method = ipc_get_imethod(&pcall->question); 265 retval = ipc_get_retval(answer); 266 266 267 267 resp = answer->args; … … 270 270 printf("Response to %p: retval=%s, args = (%" PRIun ", " 271 271 "%" PRIun ", %" PRIun ", %" PRIun ", %" PRIun ")\n", 272 call_handle, str_error_name(retval), IPC_GET_ARG1(answer),273 IPC_GET_ARG2(answer), IPC_GET_ARG3(answer),274 IPC_GET_ARG4(answer), IPC_GET_ARG5(answer));272 call_handle, str_error_name(retval), ipc_get_arg1(answer), 273 ipc_get_arg2(answer), ipc_get_arg3(answer), 274 ipc_get_arg4(answer), ipc_get_arg5(answer)); 275 275 } 276 276 … … 305 305 (retval == 0)) { 306 306 /* Connected to a service (through NS) */ 307 service = IPC_GET_ARG2(&pcall->question);307 service = ipc_get_arg2(&pcall->question); 308 308 proto = proto_get_by_srv(service); 309 309 if (proto == NULL) 310 310 proto = proto_unknown; 311 311 312 cphone = (cap_phone_handle_t) IPC_GET_ARG5(answer);312 cphone = (cap_phone_handle_t) ipc_get_arg5(answer); 313 313 if ((display_mask & DM_SYSTEM) != 0) { 314 314 printf("Registering connection (phone %p, protocol: %s)\n", cphone, -
uspace/app/trace/trace.c
reb13ef8 rfafb8e5 302 302 phandle = (cap_phone_handle_t) sc_args[0]; 303 303 304 IPC_SET_IMETHOD(&call, sc_args[1]);305 IPC_SET_ARG1(&call, sc_args[2]);306 IPC_SET_ARG2(&call, sc_args[3]);307 IPC_SET_ARG3(&call, sc_args[4]);308 IPC_SET_ARG4(&call, sc_args[5]);309 IPC_SET_ARG5(&call, 0);304 ipc_set_imethod(&call, sc_args[1]); 305 ipc_set_arg1(&call, sc_args[2]); 306 ipc_set_arg2(&call, sc_args[3]); 307 ipc_set_arg3(&call, sc_args[4]); 308 ipc_set_arg4(&call, sc_args[5]); 309 ipc_set_arg5(&call, 0); 310 310 311 311 ipcp_call_out(phandle, &call, 0); -
uspace/app/wavplay/dplay.c
reb13ef8 rfafb8e5 103 103 async_get_call(&call); 104 104 105 switch ( IPC_GET_IMETHOD(&call)) {105 switch (ipc_get_imethod(&call)) { 106 106 case PCM_EVENT_PLAYBACK_STARTED: 107 107 case PCM_EVENT_FRAMES_PLAYED: 108 printf("%" PRIun " frames: ", IPC_GET_ARG1(&call));108 printf("%" PRIun " frames: ", ipc_get_arg1(&call)); 109 109 async_answer_0(&call, EOK); 110 110 break; … … 118 118 return; 119 119 default: 120 printf("Unknown event %" PRIun ".\n", IPC_GET_IMETHOD(&call));120 printf("Unknown event %" PRIun ".\n", ipc_get_imethod(&call)); 121 121 async_answer_0(&call, ENOTSUP); 122 122 continue; -
uspace/app/wavplay/drec.c
reb13ef8 rfafb8e5 103 103 async_get_call(&call); 104 104 105 switch ( IPC_GET_IMETHOD(&call)) {105 switch (ipc_get_imethod(&call)) { 106 106 case PCM_EVENT_CAPTURE_TERMINATED: 107 107 printf("Recording terminated\n"); … … 109 109 break; 110 110 case PCM_EVENT_FRAMES_CAPTURED: 111 printf("%" PRIun " frames\n", IPC_GET_ARG1(&call));111 printf("%" PRIun " frames\n", ipc_get_arg1(&call)); 112 112 break; 113 113 default: 114 printf("Unknown event %" PRIun ".\n", IPC_GET_IMETHOD(&call));114 printf("Unknown event %" PRIun ".\n", ipc_get_imethod(&call)); 115 115 async_answer_0(&call, ENOTSUP); 116 116 continue;
Note:
See TracChangeset
for help on using the changeset viewer.