/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/swapon.c
35 строк
648 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 <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 */ tprints_arg_name("path"); printpath(tcp, tcp->u_arg[0]); /* swapflags */ tprints_arg_next_name("swapflags"); tprint_flags_begin(); if (flags) { printflags_in(swap_flags, flags, "SWAP_FLAG_???"); tprint_flags_or(); } PRINT_VAL_U(prio); tprint_flags_end(); return RVAL_DECODED; }