Changeset 87b4baa in mainline for uspace/app/trace/ipcp.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/ipcp.c
r463e734 r87b4baa 46 46 47 47 typedef struct { 48 ipcarg_t phone_hash;48 sysarg_t phone_hash; 49 49 ipc_call_t question; 50 50 oper_t *oper; … … 124 124 } 125 125 126 static void ipc_m_print(proto_t *proto, ipcarg_t method)126 static void ipc_m_print(proto_t *proto, sysarg_t method) 127 127 { 128 128 oper_t *oper; … … 192 192 unsigned long key[1]; 193 193 oper_t *oper; 194 ipcarg_t *args;194 sysarg_t *args; 195 195 int i; 196 196 … … 204 204 (void *) hash, phone, 205 205 (proto ? proto->name : "n/a")); 206 ipc_m_print(proto, IPC_GET_ METHOD(*call));206 ipc_m_print(proto, IPC_GET_IMETHOD(*call)); 207 207 printf(" args: (%" PRIun ", %" PRIun ", %" PRIun ", " 208 208 "%" PRIun ", %" PRIun ")\n", … … 214 214 215 215 if (proto != NULL) { 216 oper = proto_get_oper(proto, IPC_GET_ METHOD(*call));216 oper = proto_get_oper(proto, IPC_GET_IMETHOD(*call)); 217 217 } else { 218 218 oper = NULL; … … 262 262 ipc_call_t *answer) 263 263 { 264 ipcarg_t phone;265 ipcarg_t method;266 ipcarg_t service;267 ipcarg_t retval;264 sysarg_t phone; 265 sysarg_t method; 266 sysarg_t service; 267 sysarg_t retval; 268 268 proto_t *proto; 269 269 int cphone; 270 270 271 ipcarg_t *resp;271 sysarg_t *resp; 272 272 oper_t *oper; 273 273 int i; … … 276 276 277 277 phone = pcall->phone_hash; 278 method = IPC_GET_ METHOD(pcall->question);278 method = IPC_GET_IMETHOD(pcall->question); 279 279 retval = IPC_GET_RETVAL(*answer); 280 280
Note:
See TracChangeset
for help on using the changeset viewer.