/
githubmirror
/
redis
Обзор
Документация
Войти
/
githubmirror
/
redis
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
7.4.10
src/syscheck.h
25 строк
527 B
Pieter Cailliau
Change license from BSD-3 to dual RSALv2+SSPLv1 (#13157)
21 мар 2024, 01:38
Не верифицирован
21 мар 2024, 01:38
0b34396
Код
Авторство
О чём код?
/* * Copyright (c) 2022-Present, Redis Ltd. * All rights reserved. * * Licensed under your choice of the Redis Source Available License 2.0 * (RSALv2) or the Server Side Public License v1 (SSPLv1). */ #ifndef __SYSCHECK_H #define __SYSCHECK_H #include "sds.h" #include "config.h" int syscheck(void); #ifdef __linux__ int checkXenClocksource(sds *error_msg); int checkTHPEnabled(sds *error_msg); int checkOvercommit(sds *error_msg); #ifdef __arm64__ int checkLinuxMadvFreeForkBug(sds *error_msg); #endif #endif #endif