2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * SPDX-License-Identifier: GPL-2.0-only
15 #include <common/compat/string.h>
18 * Takes a pointer x and transform it so we can use it to access members
19 * without a function call. Here an example:
21 * #define GET_SIZE(x) LTTNG_REF(x)->size
23 * struct { int size; } s;
25 * printf("size : %d\n", GET_SIZE(&s));
27 * For this example we can't use something like this for compatibility purpose
28 * since this will fail:
30 * #define GET_SIZE(x) x->size;
32 * This is mostly use for the compatibility layer of lttng-tools. See
33 * poll/epoll for a good example. Since x can be on the stack or allocated
34 * memory using malloc(), we must use generic accessors for compat in order to
35 * *not* use a function to access members and not the variable name.
37 #define LTTNG_REF(x) ((typeof(*x) *)(x))
40 * Memory allocation zeroed
43 void *zmalloc(size_t len
)
45 return calloc(1, len
);
49 #define ARRAY_SIZE(array) (sizeof(array) / (sizeof((array)[0])))
53 #define container_of(ptr, type, member) \
55 const typeof(((type *)NULL)->member) * __ptr = (ptr); \
56 (type *)((char *)__ptr - offsetof(type, member)); \
61 #define max(a, b) ((a) > (b) ? (a) : (b))
65 #define max_t(type, a, b) max((type) a, (type) b)
69 #define min(a, b) ((a) < (b) ? (a) : (b))
73 #define min_t(type, a, b) min((type) a, (type) b)
77 #define LTTNG_PACKED __attribute__((__packed__))
80 #define is_signed(type) (((type) (-1)) < 0)
83 * Align value to the next multiple of align. Returns val if it already is a
84 * multiple of align. Align must be a power of two.
86 #define ALIGN_TO(value, align) ((value + (align - 1)) & ~(align - 1))
89 * LTTNG_HIDDEN: set the hidden attribute for internal functions
90 * On Windows, symbols are local unless explicitly exported,
91 * see https://gcc.gnu.org/wiki/Visibility
93 #if defined(_WIN32) || defined(__CYGWIN__)
96 #define LTTNG_HIDDEN __attribute__((visibility("hidden")))
99 #define member_sizeof(type, field) sizeof(((type *) 0)->field)
101 #define ASSERT_LOCKED(lock) assert(pthread_mutex_trylock(&lock))
104 * Get an aligned pointer to a value. This is meant
105 * as a helper to pass an aligned pointer to a member in a packed structure
108 #define ALIGNED_CONST_PTR(value) (((const typeof(value) []) { value }))
111 * lttng_strncpy returns 0 on success, or nonzero on failure.
112 * It checks that the @src string fits into @dst_len before performing
113 * the copy. On failure, no copy has been performed.
115 * dst_len includes the string's trailing NULL.
118 int lttng_strncpy(char *dst
, const char *src
, size_t dst_len
)
120 if (lttng_strnlen(src
, dst_len
) >= dst_len
) {
121 /* Fail since copying would result in truncation. */
128 #endif /* _MACROS_H */
This page took 0.033348 seconds and 4 git commands to generate.