1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

check memory allocation without padding

This commit is contained in:
Stefan Lankes 2017-05-23 19:39:27 +02:00
parent 11b665d02d
commit cf0a25968f

View file

@ -72,7 +72,7 @@ typedef union buddy {
/// Must be equal to BUDDY_MAGIC for a valid memory block
uint16_t magic;
/// padding to gurantee a sizeof 32Byte
uint8_t padding[28];
//uint8_t padding[28];
} prefix;
} buddy_t;