X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fcompat%2Fcompat-poll.c;h=7b15c737e6a0333ce5044ce2402d62d35aa1f643;hp=50ef37472dc0a94db9eec258f21ce632f7d615d3;hb=990570edd474b304d4c935d82be6201d872025e4;hpb=3cede4fe1597481f6cbf508ddf3d24e024405ed2 diff --git a/src/common/compat/compat-poll.c b/src/common/compat/compat-poll.c index 50ef37472..7b15c737e 100644 --- a/src/common/compat/compat-poll.c +++ b/src/common/compat/compat-poll.c @@ -20,6 +20,7 @@ #include #include +#include #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);