Changes in kernel/generic/src/ipc/ipc.c [a36f442:eed4139] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
ra36f442 reed4139 910 910 mutex_lock(&phone->lock); 911 911 if (phone->state != IPC_PHONE_FREE) { 912 printf("%-11d %7" PRIun " ", cap->handle,912 printf("%-11d %7" PRIun " ", (int) CAP_HANDLE_RAW(cap->handle), 913 913 atomic_get(&phone->active_calls)); 914 914 … … 967 967 968 968 #ifdef __32_BITS__ 969 printf("[call id] [method] [arg1] [arg2] [arg3] [arg4] [arg5]"969 printf("[call adr] [method] [arg1] [arg2] [arg3] [arg4] [arg5]" 970 970 " [flags] [sender\n"); 971 971 #endif 972 972 973 973 #ifdef __64_BITS__ 974 printf("[call id] [method] [arg1] [arg2] [arg3] [arg4]"974 printf("[call address ] [method] [arg1] [arg2] [arg3] [arg4]" 975 975 " [arg5] [flags] [sender\n"); 976 976 #endif
Note:
See TracChangeset
for help on using the changeset viewer.