From d6398adb031febaf26f5bd5d20f544740e8d9abd Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 22 Jan 2008 09:45:54 +0000 Subject: minios: Add align support to _xmalloc(). Signed-off-by: Samuel Thibault --- extras/mini-os/include/xmalloc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'extras/mini-os/include/xmalloc.h') diff --git a/extras/mini-os/include/xmalloc.h b/extras/mini-os/include/xmalloc.h index e8052ac68d..26ae9dd012 100644 --- a/extras/mini-os/include/xmalloc.h +++ b/extras/mini-os/include/xmalloc.h @@ -7,7 +7,8 @@ /* Allocate space for array of typed objects. */ #define xmalloc_array(_type, _num) ((_type *)_xmalloc_array(sizeof(_type), __alignof__(_type), _num)) -#define malloc(size) _xmalloc(size, 4) +#define DEFAULT_ALIGN (sizeof(unsigned long)) +#define malloc(size) _xmalloc(size, DEFAULT_ALIGN) #define free(ptr) xfree(ptr) #define realloc(ptr, size) _realloc(ptr, size) -- cgit v1.2.3