diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-02-12 17:14:23 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-02-13 00:42:36 +0100 |
commit | a391c8f0eef8573fd6b99e6cd264a5f2caa539cb (patch) | |
tree | 4e0835b958dcd51a59ab5a1bf652dec4ea2c544a /utils.h | |
parent | 403007dc55222d4ca1120dd7730baa7579d12d88 (diff) | |
download | mig-a391c8f0eef8573fd6b99e6cd264a5f2caa539cb.tar.gz mig-a391c8f0eef8573fd6b99e6cd264a5f2caa539cb.tar.bz2 mig-a391c8f0eef8573fd6b99e6cd264a5f2caa539cb.zip |
Introduce complex_alignof to replace word_size
Remove the concept of word_size since it is meaningless in some
architectures. This is also done in preparation to possibly introduce
8-byte aligned messages.
Message-Id: <Y+lkv0uMo/3+hbCb@jupiter.tail36e24.ts.net>
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -39,6 +39,8 @@ ({ __typeof__ (a) _a = (a); \ __typeof__ (b) _b = (b); \ _a > _b ? _b : _a; }) +#define ALIGN(x, alignment) \ + ((x) + (alignment)-1) & ~((alignment)-1) typedef void write_list_fn_t(FILE *file, const argument_t *arg); |