pid_t pid1 = tcp->u_arg[0];
pid_t pid2 = tcp->u_arg[1];
int type = tcp->u_arg[2];
- unsigned long idx1 = tcp->u_arg[3];
- unsigned long idx2 = tcp->u_arg[4];
+ unsigned long long idx1 = getarg_ull(tcp, 3);
+ unsigned long long idx2 = getarg_ull(tcp, 4);
tprintf("%d, %d, ", pid1, pid2);
printxval(kcmp_types, type, "KCMP_???");
case KCMP_VM:
break;
default:
- tprintf(", %#lx, %#lx", idx1, idx2);
+ tprintf(", %#llx, %#llx", idx1, idx2);
}
return RVAL_DECODED;