2 * SPDX-License-Identifier: LGPL-2.1-only
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 #ifndef _UST_COMMON_MACROS_H
8 #define _UST_COMMON_MACROS_H
12 #include <lttng/ust-arch.h>
15 * Memory allocation zeroed
18 void *zmalloc(size_t len
)
19 __attribute__((always_inline
));
21 void *zmalloc(size_t len
)
23 return calloc(len
, 1);
26 #define max_t(type, x, y) \
30 __max1 > __max2 ? __max1: __max2; \
33 #define min_t(type, x, y) \
37 __min1 <= __min2 ? __min1: __min2; \
40 #define LTTNG_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
43 * Use of __builtin_return_address(0) sometimes seems to cause stack
44 * corruption on 32-bit PowerPC. Disable this feature on that
45 * architecture for now by always using the NULL value for the ip
48 #if defined(LTTNG_UST_ARCH_PPC) && !defined(LTTNG_UST_ARCH_PPC64)
49 #define LTTNG_UST_CALLER_IP() NULL
51 #define LTTNG_UST_CALLER_IP() __builtin_return_address(0)
54 #endif /* _UST_COMMON_MACROS_H */
This page took 0.032645 seconds and 4 git commands to generate.