|
@@ -34,7 +34,7 @@
|
|
|
#include "linked_lists/linked_lists.h"
|
|
|
|
|
|
/** The header structure of every memory block inside a heap. */
|
|
|
-typedef struct block_header_s {
|
|
|
+typedef struct __attribute__((__aligned__(32))) block_header_s {
|
|
|
size_t size; /**< The LSB represents the availability of the block (1
|
|
|
for used, 0 for free), the rest the size of the data
|
|
|
part. */
|