2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include <common/compat/string.h>
28 * Takes a pointer x and transform it so we can use it to access members
29 * without a function call. Here an example:
31 * #define GET_SIZE(x) LTTNG_REF(x)->size
33 * struct { int size; } s;
35 * printf("size : %d\n", GET_SIZE(&s));
37 * For this example we can't use something like this for compatibility purpose
38 * since this will fail:
40 * #define GET_SIZE(x) x->size;
42 * This is mostly use for the compatibility layer of lttng-tools. See
43 * poll/epoll for a good example. Since x can be on the stack or allocated
44 * memory using malloc(), we must use generic accessors for compat in order to
45 * *not* use a function to access members and not the variable name.
47 #define LTTNG_REF(x) ((typeof(*x) *)(x))
50 * Memory allocation zeroed
53 void *zmalloc(size_t len
)
55 return calloc(1, len
);
59 #define ARRAY_SIZE(array) (sizeof(array) / (sizeof((array)[0])))
63 #define container_of(ptr, type, member) \
65 const typeof(((type *)NULL)->member) * __ptr = (ptr); \
66 (type *)((char *)__ptr - offsetof(type, member)); \
71 #define max(a, b) ((a) > (b) ? (a) : (b))
75 #define max_t(type, a, b) max((type) a, (type) b)
79 #define min(a, b) ((a) < (b) ? (a) : (b))
83 #define min_t(type, a, b) min((type) a, (type) b)
87 #define LTTNG_PACKED __attribute__((__packed__))
91 * Align value to the next multiple of align. Returns val if it already is a
92 * multiple of align. Align must be a power of two.
94 #define ALIGN_TO(value, align) ((value + (align - 1)) & ~(align - 1))
97 * LTTNG_HIDDEN: set the hidden attribute for internal functions
98 * On Windows, symbols are local unless explicitly exported,
99 * see https://gcc.gnu.org/wiki/Visibility
101 #if defined(_WIN32) || defined(__CYGWIN__)
104 #define LTTNG_HIDDEN __attribute__((visibility("hidden")))
107 #define member_sizeof(type, field) sizeof(((type *) 0)->field)
109 #define ASSERT_LOCKED(lock) assert(pthread_mutex_trylock(&lock))
112 * Get an aligned pointer to a value. This is meant
113 * as a helper to pass an aligned pointer to a member in a packed structure
116 #define ALIGNED_CONST_PTR(value) (((const typeof(value) []) { value }))
119 * lttng_strncpy returns 0 on success, or nonzero on failure.
120 * It checks that the @src string fits into @dst_len before performing
121 * the copy. On failure, no copy has been performed.
123 * dst_len includes the string's trailing NULL.
126 int lttng_strncpy(char *dst
, const char *src
, size_t dst_len
)
128 if (lttng_strnlen(src
, dst_len
) >= dst_len
) {
129 /* Fail since copying would result in truncation. */
136 #endif /* _MACROS_H */
This page took 0.032294 seconds and 4 git commands to generate.