• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "defs.h"
2 #include "xlat/umount_flags.h"
3 
SYS_FUNC(umount2)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