/
githubmirror
/
sssd
Обзор
Документация
Войти
/
githubmirror
/
sssd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/sss_client/common_private.h
41 строка
1 KB
Sumit Bose
nss-idmap: add nss like calls with timeout and flags
06 ноя 2017, 19:35
06 ноя 2017, 19:35
5e66227
Код
Авторство
О чём код?
/* SSSD SSS client - private calls Authors: Sumit Bose <sbose@redhat.com> Copyright (C) 2017 Red Hat 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 COMMON_PRIVATE_H_ #define COMMON_PRIVATE_H_ #include "config.h" #if HAVE_PTHREAD #include <pthread.h> struct sss_mutex { pthread_mutex_t mtx; int old_cancel_state; }; #endif /* HAVE_PTHREAD */ #endif /* COMMON_PRIVATE_H_ */