How can I explicitly disable alignment on defined variable in gcc?
Take this code:
typedef struct{
unsigned long long offset;
unsigned long long size;
unsigned long type;
unsigned long acpi;
}memstruct;
memstruct *memstrx;
This would define an structure having a size of 24 bytes.
I tried doing:
memstrx=(void*)(0x502);
So
&memstrx[0] should have an value of 0x502
&memstrx[1] , 0x51A
&memstrx[2] , 0x532
... and so on and so forth.
But things doesn't seem to be right.
Instead, the
&memstrx[1] , displays an address of 0x522
&memstrx[2] , 0x542
&memstrx[3] , 0x552
... and so on and so forth.
I suspect GCC has implicitly re-sized the structure to 32 bytes (from 24 bytes), forcing a (64-bit alignment of each entry). And I don't really want this behavior only for this structure. How should I tell GCC to not align that structure?