/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.13
src/swapon.c
33 строки
571 B
Dmitry V. Levin
swapon: use print_fields.h helpers
25 апр 2021, 23:00
25 апр 2021, 23:00
dfb113f
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2021 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #include <sys/swap.h> #include "xlat/swap_flags.h" SYS_FUNC(swapon) { unsigned int flags = tcp->u_arg[1]; unsigned int prio = flags & SWAP_FLAG_PRIO_MASK; flags &= ~SWAP_FLAG_PRIO_MASK; /* path */ printpath(tcp, tcp->u_arg[0]); tprint_arg_next(); /* swapflags */ if (flags) { printflags(swap_flags, flags, "SWAP_FLAG_???"); tprintf("|%u", prio); } else { PRINT_VAL_U(prio); } return RVAL_DECODED; }