Clean-up: common: fix -Wshadow error in lttng_daemonize
[lttng-tools.git] / src / common / macros.h
index cce09a6cbb66b0474d25dabcf34a43e3728f71ef..53f5f96c752061448a6f5d1fc629166db2f345a3 100644 (file)
@@ -77,7 +77,15 @@ void *zmalloc(size_t len)
 #define LTTNG_PACKED __attribute__((__packed__))
 #endif
 
-#define is_signed(type) (((type) (-1)) < 0)
+#ifndef LTTNG_NO_SANITIZE_ADDRESS
+#if defined(__clang__) || defined (__GNUC__)
+#define LTTNG_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
+#else
+#define LTTNG_NO_SANITIZE_ADDRESS
+#endif
+#endif
+
+#define is_signed(type) (((type) -1) < (type) 1)
 
 /*
  * Align value to the next multiple of align. Returns val if it already is a
This page took 0.023535 seconds and 4 git commands to generate.