Remove O_LARGEFILE from tests
[lttng-ust.git] / libringbuffer / backend_internal.h
index 373e3147e383c143dc7273253d584f922a421a50..050c98ac530dfc34f267ff9f23cb9bf8db84bbfd 100644 (file)
@@ -448,7 +448,7 @@ do {                                                                \
 
 /* arch-agnostic implementation */
 
-static inline int fls(unsigned int x)
+static inline int lttng_ust_fls(unsigned int x)
 {
        int r = 32;
 
@@ -481,7 +481,7 @@ static inline int get_count_order(unsigned int count)
 {
        int order;
 
-       order = fls(count) - 1;
+       order = lttng_ust_fls(count) - 1;
        if (count & (count - 1))
                order++;
        return order;
This page took 0.024559 seconds and 4 git commands to generate.