Rev 3454 | Rev 3462 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3454 | Rev 3456 | ||
---|---|---|---|
Line 285... | Line 285... | ||
285 | } |
285 | } |
286 | 286 | ||
287 | if ((display_mask & DM_USER) != 0) { |
287 | if ((display_mask & DM_USER) != 0) { |
288 | oper = pcall->oper; |
288 | oper = pcall->oper; |
289 | 289 | ||
290 | if (oper->rv_type != V_VOID || oper->respc > 0) { |
290 | if (oper != NULL && oper->rv_type != V_VOID || oper->respc > 0) { |
291 | printf("->"); |
291 | printf("->"); |
292 | 292 | ||
293 | if (oper->rv_type != V_VOID) { |
293 | if (oper->rv_type != V_VOID) { |
294 | putchar(' '); |
294 | putchar(' '); |
295 | val_print(retval, oper->rv_type); |
295 | val_print(retval, oper->rv_type); |
Line 329... | Line 329... | ||
329 | link_t *item; |
329 | link_t *item; |
330 | pending_call_t *pcall; |
330 | pending_call_t *pcall; |
331 | unsigned long key[1]; |
331 | unsigned long key[1]; |
332 | 332 | ||
333 | // printf("ipcp_call_in()\n"); |
333 | // printf("ipcp_call_in()\n"); |
334 | /* printf("phone: %d, method: ", call->in_phone_hash); |
- | |
335 | ipc_m_print(IPC_GET_METHOD(*call)); |
- | |
336 | printf(" args: (%lu, %lu, %lu, %lu, %lu)\n", |
- | |
337 | IPC_GET_ARG1(*call), |
- | |
338 | IPC_GET_ARG2(*call), |
- | |
339 | IPC_GET_ARG3(*call), |
- | |
340 | IPC_GET_ARG4(*call), |
- | |
341 | IPC_GET_ARG5(*call) |
- | |
342 | );*/ |
- | |
343 | 334 | ||
344 | if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) { |
335 | if ((hash & IPC_CALLID_ANSWERED) == 0 && hash != IPCP_CALLID_SYNC) { |
345 | /* Not a response */ |
336 | /* Not a response */ |
346 | if ((display_mask & DM_IPC) != 0) { |
337 | if ((display_mask & DM_IPC) != 0) { |
347 | printf("Not a response (hash 0x%lx)\n", hash); |
338 | printf("Not a response (hash 0x%lx)\n", hash); |