We do our best to keep copyright headers up to date, yet git history provides better information on this subject and is more accurate than copyright headers.
19 lines
327 B
C
19 lines
327 B
C
/*
|
|
* Copyright (c) 2014-2018 The strace developers.
|
|
* All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#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;
|
|
}
|