X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=tests%2Futils%2Futils.cpp;h=fbf0019cb713f43d08ced60a39553a9e770dce50;hb=HEAD;hp=4ec36f1145b79b0e02fbc4e217f2e562747dabf7;hpb=28ab034a2c3582d07d3423d2d746731f87d3969f;p=lttng-tools.git diff --git a/tests/utils/utils.cpp b/tests/utils/utils.cpp index 4ec36f114..fbf0019cb 100644 --- a/tests/utils/utils.cpp +++ b/tests/utils/utils.cpp @@ -22,7 +22,7 @@ #include #include -static inline int64_t elapsed_time_ns(struct timespec *t1, struct timespec *t2) +int64_t elapsed_time_ns(struct timespec *t1, struct timespec *t2) { struct timespec delta; @@ -99,7 +99,7 @@ int wait_on_file(const char *path) for (;;) { ret = stat(path, &buf); if (ret == -1 && errno == ENOENT) { - ret = poll(NULL, 0, 10); /* 10 ms delay */ + ret = poll(nullptr, 0, 10); /* 10 ms delay */ /* Should return 0 everytime */ if (ret) { if (ret < 0) {