1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

align on cacheline granularity

This commit is contained in:
Steffen Vogel 2015-05-06 11:50:38 +02:00
parent 9af2e26655
commit 482be0ebbb

View file

@ -81,6 +81,6 @@ struct msg
float f; /**< Floating point values (note msg::endian) */
uint32_t i; /**< Integer values (note msg::endian) */
} data[MSG_VALUES];
} __attribute__((aligned(4), packed));
} __attribute__((aligned(64), packed));
#endif /* _MSG_FORMAT_H_ */