Home | History | Annotate | Download | only in strace
      1 #include "defs.h"
      2 
      3 SYS_FUNC(ioperm)
      4 {
      5 	tprintf("%#lx, %#lx, %d",
      6 		tcp->u_arg[0], tcp->u_arg[1], (int) tcp->u_arg[2]);
      7 
      8 	return RVAL_DECODED;
      9 }
     10