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/slab.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/slab.c')
-rw-r--r-- | lib/slab.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -62,6 +62,7 @@ static struct resclass sl_class = { struct sl_obj { node n; + uintptr_t data_align[0]; byte data[0]; }; |