chiark / gitweb /
man: update systemctl man page
[elogind.git] / src / macro.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foomacrohfoo
4 #define foomacrohfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #include <assert.h>
26 #include <sys/types.h>
27
28 #define _printf_attr_(a,b) __attribute__ ((format (printf, a, b)))
29 #define _sentinel_ __attribute__ ((sentinel))
30 #define _noreturn_ __attribute__((noreturn))
31 #define _unused_ __attribute__ ((unused))
32 #define _destructor_ __attribute__ ((destructor))
33 #define _pure_ __attribute__ ((pure))
34 #define _const_ __attribute__ ((const))
35 #define _deprecated_ __attribute__ ((deprecated))
36 #define _packed_ __attribute__ ((packed))
37 #define _malloc_ __attribute__ ((malloc))
38 #define _weak_ __attribute__ ((weak))
39 #define _likely_(x) (__builtin_expect(!!(x),1))
40 #define _unlikely_(x) (__builtin_expect(!!(x),0))
41 #define _public_ __attribute__ ((visibility("default")))
42 #define _hidden_ __attribute__ ((visibility("hidden")))
43
44 /* Rounds up */
45 static inline size_t ALIGN(size_t l) {
46         return ((l + sizeof(void*) - 1) & ~(sizeof(void*) - 1));
47 }
48
49 #define ELEMENTSOF(x) (sizeof(x)/sizeof((x)[0]))
50
51 #define MAX(a,b)                                \
52         __extension__ ({                        \
53                         typeof(a) _a = (a);     \
54                         typeof(b) _b = (b);     \
55                         _a > _b ? _a : _b;      \
56                 })
57
58 #define MIN(a,b)                                \
59         __extension__ ({                        \
60                         typeof(a) _a = (a);     \
61                         typeof(b) _b = (b);     \
62                         _a < _b ? _a : _b;      \
63                 })
64
65 #define CLAMP(x, low, high)                                             \
66         __extension__ ({                                                \
67                         typeof(x) _x = (x);                             \
68                         typeof(low) _low = (low);                       \
69                         typeof(high) _high = (high);                    \
70                         ((_x > _high) ? _high : ((_x < _low) ? _low : _x)); \
71                 })
72
73 #define assert_se(expr)                                                 \
74         do {                                                            \
75                 if (_unlikely_(!(expr)))                                \
76                         log_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, \
77                                    "Assertion '%s' failed at %s:%u, function %s(). Aborting.", \
78                                    #expr , __FILE__, __LINE__, __PRETTY_FUNCTION__); \
79         } while (false)                                                 \
80
81 /* We override the glibc assert() here. */
82 #undef assert
83 #ifdef NDEBUG
84 #define assert(expr) do {} while(false)
85 #else
86 #define assert(expr) assert_se(expr)
87 #endif
88
89 #define assert_not_reached(t)                                           \
90         do {                                                            \
91                 log_assert(__FILE__, __LINE__, __PRETTY_FUNCTION__,     \
92                            "Code should not be reached '%s' at %s:%u, function %s(). Aborting.", \
93                            t, __FILE__, __LINE__, __PRETTY_FUNCTION__); \
94         } while (false)
95
96 #define assert_cc(expr)                            \
97         do {                                       \
98                 switch (0) {                       \
99                         case 0:                    \
100                         case !!(expr):             \
101                                 ;                  \
102                 }                                  \
103         } while (false)
104
105 #define PTR_TO_UINT(p) ((unsigned int) ((uintptr_t) (p)))
106 #define UINT_TO_PTR(u) ((void*) ((uintptr_t) (u)))
107
108 #define PTR_TO_UINT32(p) ((uint32_t) ((uintptr_t) (p)))
109 #define UINT32_TO_PTR(u) ((void*) ((uintptr_t) (u)))
110
111 #define PTR_TO_INT(p) ((int) ((intptr_t) (p)))
112 #define INT_TO_PTR(u) ((void*) ((intptr_t) (u)))
113
114 #define TO_INT32(p) ((int32_t) ((intptr_t) (p)))
115 #define INT32_TO_PTR(u) ((void*) ((intptr_t) (u)))
116
117 #define memzero(x,l) (memset((x), 0, (l)))
118 #define zero(x) (memzero(&(x), sizeof(x)))
119
120 #define char_array_0(x) x[sizeof(x)-1] = 0;
121
122 #define IOVEC_SET_STRING(i, s)                  \
123         do {                                    \
124                 struct iovec *_i = &(i);        \
125                 char *_s = (char *)(s);         \
126                 _i->iov_base = _s;              \
127                 _i->iov_len = strlen(_s);       \
128         } while(false);
129
130 #include "log.h"
131
132 #endif