Add new macro QEMU_PACKED for packed C structures
authorStefan Weil <weil@mail.berlios.de>
Wed, 31 Aug 2011 10:38:00 +0000 (12:38 +0200)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 3 Sep 2011 10:45:46 +0000 (10:45 +0000)
commit000d0a2a84dae9ad0f161ea563eef2b76698bed6
tree399217e7c99dacf7517930d49afb123eef277397
parent2fd1a1a4c9f5e8a0a7f838a36c06389bd57482ec
Add new macro QEMU_PACKED for packed C structures

A packed struct needs different gcc attributes for compilations
with MinGW compilers because glib-2.0 adds compiler flag
-mms-bitfields which modifies the packing algorithm.

Attribute gcc_struct reverses the negative effects of -mms-bitfields.
QEMU_PACKED sets this attribute and must be used for any packed
struct which is affected by -mms-bitfields.

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
compiler.h