lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
1
2
3
4
5
6
7
8
9
10
11
#include "defs.h"
#include "xlat/umount_flags.h"
 
SYS_FUNC(umount2)
{
   printpath(tcp, tcp->u_arg[0]);
   tprints(", ");
   printflags(umount_flags, tcp->u_arg[1], "MNT_???");
 
   return RVAL_DECODED;
}