X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fmacros.h;h=05232af14da937b3710d7b615b36ee0188c4ca71;hb=fa21437937767f81e2068cd411dfca563f70b982;hp=cce09a6cbb66b0474d25dabcf34a43e3728f71ef;hpb=159b042f34366d0fde5dcd73b4231c558922a664;p=lttng-tools.git diff --git a/src/common/macros.h b/src/common/macros.h index cce09a6cb..05232af14 100644 --- a/src/common/macros.h +++ b/src/common/macros.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 David Goulet + * Copyright (C) 2011 EfficiOS Inc. * Copyright (C) 2011 Mathieu Desnoyers * * SPDX-License-Identifier: GPL-2.0-only @@ -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