X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fmacros.h;h=e28250f7ed20a7892600c161f6b0921ff10424d3;hb=e957bf98e634c79b13281d0a2fe144be0245d310;hp=cce09a6cbb66b0474d25dabcf34a43e3728f71ef;hpb=159b042f34366d0fde5dcd73b4231c558922a664;p=lttng-tools.git diff --git a/src/common/macros.h b/src/common/macros.h index cce09a6cb..e28250f7e 100644 --- a/src/common/macros.h +++ b/src/common/macros.h @@ -77,6 +77,14 @@ void *zmalloc(size_t len) #define LTTNG_PACKED __attribute__((__packed__)) #endif +#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)) < 0) /*