/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/umount.c
22 строки
401 B
Dmitry V. Levin
Update copyright headers
05 авг 2025, 11:00
05 авг 2025, 11:00
7db24b3
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2025 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) { /* target */ tprints_arg_name("target"); printpath(tcp, tcp->u_arg[0]); /* flags */ tprints_arg_next_name("flags"); printflags(umount_flags, tcp->u_arg[1], "MNT_???"); return RVAL_DECODED; }