Split and remove lttng-share header file
[lttng-tools.git] / src / common / compat / compat-poll.c
index 50ef37472dc0a94db9eec258f21ce632f7d615d3..7b15c737e6a0333ce5044ce2402d62d35aa1f643 100644 (file)
@@ -20,6 +20,7 @@
 #include <sys/time.h>
 
 #include <lttngerr.h>
+#include <common/defaults.h>
 
 #include "poll.h"
 
@@ -177,7 +178,7 @@ void compat_poll_set_max_size(void)
        struct rlimit lim;
 
        /* Default value */
-       poll_max_size = LTTNG_POLL_DEFAULT_SIZE;
+       poll_max_size = DEFAULT_POLL_SIZE;
 
        ret = getrlimit(RLIMIT_NOFILE, &lim);
        if (ret < 0) {
@@ -188,7 +189,7 @@ void compat_poll_set_max_size(void)
        poll_max_size = lim.rlim_cur;
        if (poll_max_size <= 0) {
                /* Extra precaution */
-               poll_max_size = LTTNG_POLL_DEFAULT_SIZE;
+               poll_max_size = DEFAULT_POLL_SIZE;
        }
 
        DBG("poll set max size set to %u", poll_max_size);
This page took 0.023037 seconds and 4 git commands to generate.