Another attempt at measuring the minimum alignment for a system.

This commit is contained in:
Wayne Davison
2004-02-10 23:35:12 +00:00
parent 62125b10c9
commit 4d4df3cd2b

View File

@@ -32,7 +32,12 @@ struct pool_extent
struct pool_extent *next;
};
#define MINALIGN (sizeof (long))
struct align_test {
void *foo;
uint64 bar;
};
#define MINALIGN offsetof(struct align_test, bar)
alloc_pool_t
pool_create(size_t size, size_t quantum,