diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-07-06 19:07:01 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-07-06 19:07:01 +0200 |
commit | d1abbeacfb5a099418f53b583625ac97b1c62059 (patch) | |
tree | 2b99e37982c1057037401e6293c9e697c2d424bf /lib/mempool.c | |
parent | 2389c46fe314867f99bbdfa1f6c9ff92d433d754 (diff) |
Fixes memory alignment problems on Sparc64.
Not quite standard construction, i should add
some autoconf macro.
Not tested yet.
Diffstat (limited to 'lib/mempool.c')
-rw-r--r-- | lib/mempool.c | 1 |
1 files changed, 1 insertions, 0 deletions
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]; }; |