From d1abbeacfb5a099418f53b583625ac97b1c62059 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Mon, 6 Jul 2009 19:07:01 +0200 Subject: [PATCH] Fixes memory alignment problems on Sparc64. Not quite standard construction, i should add some autoconf macro. Not tested yet. --- lib/mempool.c | 1 + lib/resource.c | 1 + lib/slab.c | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/mempool.c b/lib/mempool.c index bb6dcff3..e6f277b9 100644 --- a/lib/mempool.c +++ b/lib/mempool.c @@ -27,6 +27,7 @@ struct lp_chunk { struct lp_chunk *next; unsigned int size; + uintptr_t data_align[0]; byte data[0]; }; diff --git a/lib/resource.c b/lib/resource.c index 289af933..8f91450c 100644 --- a/lib/resource.c +++ b/lib/resource.c @@ -250,6 +250,7 @@ resource_init(void) struct mblock { resource r; unsigned size; + uintptr_t data_align[0]; byte data[0]; }; diff --git a/lib/slab.c b/lib/slab.c index 568f01a4..17511d21 100644 --- a/lib/slab.c +++ b/lib/slab.c @@ -62,6 +62,7 @@ static struct resclass sl_class = { struct sl_obj { node n; + uintptr_t data_align[0]; byte data[0]; };