/
githubmirror
/
sssd
Обзор
Документация
Войти
/
githubmirror
/
sssd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/util/sss_prctl.h
32 строки
992 B
Gleb Popov
Introduce util/sss_prctl module to abstract out process controlling API
01 апр 2025, 12:22
01 апр 2025, 12:22
9bb4cf1
Код
Авторство
О чём код?
/* SSSD Copyright (C) 2025 Gleb Popov <arrowd@FreeBSD.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef SSS_PRCTL_H_ #define SSS_PRCTL_H_ int sss_prctl_set_dumpable(int dumpable); int sss_prctl_get_dumpable(void); int sss_prctl_set_no_new_privs(void); int sss_prctl_get_keep_caps(void); int sss_prctl_set_parent_deathsig(long sig); #endif /* SSS_PRCTL_H_ */