Namespace lttng/align.h macros
[deliverable/lttng-ust.git] / liblttng-ust-libc-wrapper / lttng-ust-malloc.c
index f9081a09d993e9090a7953cbff35927b2f9b56eb..1e9a25e5c89dbbefbf6ff819a3a37a2e7d8d8c24 100644 (file)
@@ -121,7 +121,7 @@ void *static_calloc_aligned(size_t nmemb, size_t size, size_t alignment)
        res_offset = CMM_LOAD_SHARED(static_calloc_buf_offset);
        do {
                prev_offset = res_offset;
-               aligned_offset = ALIGN(prev_offset + sizeof(size_t), alignment);
+               aligned_offset = LTTNG_UST_ALIGN(prev_offset + sizeof(size_t), alignment);
                new_offset = aligned_offset + nmemb * size;
                if (new_offset > sizeof(static_calloc_buf)) {
                        abort();
This page took 0.024266 seconds and 5 git commands to generate.