X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fdefaults.c;fp=src%2Fcommon%2Fdefaults.c;h=3bb42280f0ce7b9f0950094901ac3bc307046336;hp=a39f1885c73f31c75770bd4dae69eb08cbd286f0;hb=89e06fb53862e546351ad86f09bb8b2a12632e3a;hpb=77fc2bc2ed27050498e29eb87585625449f56d05 diff --git a/src/common/defaults.c b/src/common/defaults.c index a39f1885c..3bb42280f 100644 --- a/src/common/defaults.c +++ b/src/common/defaults.c @@ -117,7 +117,7 @@ static void __attribute__((constructor)) init_default_pthread_attr(void) selected_ss = DEFAULT_LTTNG_THREAD_STACK_SIZE; } - if (rlim.rlim_max >= 0 && selected_ss > rlim.rlim_max) { + if (rlim.rlim_max > 0 && selected_ss > rlim.rlim_max) { WARN("Your system's stack size restrictions (%zu bytes) may be too low for the LTTng daemons to function properly, please set the stack size limit to at leat %zu bytes to ensure reliable operation", (size_t) rlim.rlim_max, (size_t) DEFAULT_LTTNG_THREAD_STACK_SIZE); selected_ss = (size_t) rlim.rlim_max;