mirror of
https://github.com/Icinga/icinga2.git
synced 2026-05-28 04:12:13 -04:00
Disable Application::SetResourceLimits on non-Linux systems
fixes #8178
This commit is contained in:
parent
effb834d3f
commit
b17fc34a84
1 changed files with 2 additions and 2 deletions
|
|
@ -176,7 +176,7 @@ Application::Ptr Application::GetInstance(void)
|
|||
|
||||
void Application::SetResourceLimits(void)
|
||||
{
|
||||
#ifndef _WIN32
|
||||
#ifdef __linux__
|
||||
rlimit rl;
|
||||
|
||||
# ifdef RLIMIT_NOFILE
|
||||
|
|
@ -252,7 +252,7 @@ void Application::SetResourceLimits(void)
|
|||
# else /* RLIMIT_STACK */
|
||||
Log(LogNotice, "Application", "System does not support adjusting the resource limit for stack size (RLIMIT_STACK)");
|
||||
# endif /* RLIMIT_STACK */
|
||||
#endif /* _WIN32 */
|
||||
#endif /* __linux__ */
|
||||
}
|
||||
|
||||
int Application::GetArgC(void)
|
||||
|
|
|
|||
Loading…
Reference in a new issue