Home | History | Annotate | Download | only in strace
      1 #include "defs.h"
      2 #include "xlat/umount_flags.h"
      3 
      4 SYS_FUNC(umount2)
      5 {
      6 	printpath(tcp, tcp->u_arg[0]);
      7 	tprints(", ");
      8 	printflags(umount_flags, tcp->u_arg[1], "MNT_???");
      9 
     10 	return RVAL_DECODED;
     11 }
     12