Silence macro redefinition warnings on macOS
[lttng-tools.git] / src / common / align.h
index 928c5b6c131ec36061662f7624fd74a000a87224..ed353206d1ad03e3d1286414f604041f80538037 100644 (file)
 #include <unistd.h>
 #include <limits.h>
 
-#ifndef PAGE_SIZE      /* Cygwin limits.h defines its own PAGE_SIZE */
+#ifndef PAGE_SIZE      /* Cygwin limits.h defines its own PAGE_SIZE. */
 #define PAGE_SIZE              sysconf(_SC_PAGE_SIZE)
 #endif
 
+#ifndef PAGE_MASK      /* macOS defines its own PAGE_MASK. */
 #define PAGE_MASK              (~(PAGE_SIZE - 1))
+#endif
+
 #define __ALIGN_MASK(v, mask)  (((v) + (mask)) & ~(mask))
+
+#ifndef ALIGN          /* macOS defines its own ALIGN. */
 #define ALIGN(v, align)                __ALIGN_MASK(v, (__typeof__(v)) (align) - 1)
+#endif
+
 #define PAGE_ALIGN(addr)       ALIGN(addr, PAGE_SIZE)
 
 /**
This page took 0.026057 seconds and 5 git commands to generate.