X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-events.c;h=ff13b7c09f9aa76e72e754a5525c086837411cc5;hb=be37f99106ca5fc0da8a95681317b55f3b08f247;hp=c16cff803d94d3ef0b0fec1717a2dcb452682054;hpb=0d260d3d3e28849772a060a9b1374712c0959fca;p=lttng-modules.git diff --git a/lttng-events.c b/lttng-events.c index c16cff80..ff13b7c0 100644 --- a/lttng-events.c +++ b/lttng-events.c @@ -23,16 +23,15 @@ #include #include #include -#include #include #include #include #include #include +#include #include #include -#include #include #include #include @@ -1139,7 +1138,7 @@ int lttng_session_list_tracker_ids(struct lttng_session *session, struct seq_file *m; int file_fd, ret; - file_fd = lttng_get_unused_fd(); + file_fd = get_unused_fd_flags(0); if (file_fd < 0) { ret = file_fd; goto fd_error; @@ -1184,8 +1183,8 @@ static int lttng_match_enabler_star_glob(const char *desc_name, const char *pattern) { - if (!strutils_star_glob_match(pattern, LTTNG_SIZE_MAX, - desc_name, LTTNG_SIZE_MAX)) + if (!strutils_star_glob_match(pattern, SIZE_MAX, + desc_name, SIZE_MAX)) return 0; return 1; }