Tagged Questions
3
votes
3answers
293 views
Counting overhead due to packing in C (gcc/g++)
I'd like to count/sum up the overhead in an object file due to packing (and, ideally, have gcc minimize it for me).
For example, consider the following structure (32 bit x86, gcc):
struct a {
...
1
vote
3answers
802 views
Removing padding from structure in kernel module
I am compiling a kernel module, containing a structure of size 34, using the standard command.
make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
The sizeof(some_structure) is coming as 36 ...