Enclosed is a patch for auparse/interpret.c that makes it so that a0 is interpreted for clone flags, not a2. It also fixes two problems with interpreting the fcntl system call. The name of the system call is fcntl64, but the original code looked for the name fcntl. I have also added a case so that a2 is printed as FD_CLOEXEC whenever a1 is F_SETFD and a2 is 1. I still haven't figured out why the auparse library prints getdents when strace print getdents64. I'll keep on looking. You'd think that either both getdents and fcntl would be printed with or without the 64 tacked on, but the current situation seem very odd to me. John