Tests: Fix nprocesses applications shutdown
[lttng-tools.git] / src / common / macros.h
index 81f901c2d5d171bda6a6f064124d8c49bbf76944..f6f975d1453d7ffa89deb2e4e97f55afafee514c 100644 (file)
 #define min(a, b) ((a) < (b) ? (a) : (b))
 #endif
 
+#ifndef LTTNG_PACKED
+#define LTTNG_PACKED __attribute__((__packed__))
+#endif
+
+#ifndef LTTNG_HIDDEN
+#define LTTNG_HIDDEN __attribute__((visibility("hidden")))
+#endif
+
 #endif /* _MACROS_H */
This page took 0.023872 seconds and 4 git commands to generate.