| /* SPDX-License-Identifier: LGPL-2.1+ */ | |
| #pragma once | |
| #include <sys/resource.h> | |
| #ifndef RLIMIT_RTTIME | |
| #define RLIMIT_RTTIME 15 | |
| #endif | |
| /* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */ | |
| #define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS) |