From e71b81d85f8873267aa65486d34ef7c86b55821d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 29 Dec 2010 02:51:40 +0000 Subject: [PATCH] sim: HW_NALLOC: new alloc helper We have malloc (uninitialized buffer), zalloc (zeroed buffer), and nzalloc (zeroed array). But we don't have a way to allocate an uninitialized array. Add a HW_NALLOC to fill this gap. Signed-off-by: Mike Frysinger --- sim/common/ChangeLog | 4 ++++ sim/common/hw-alloc.h | 1 + 2 files changed, 5 insertions(+) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 085c1aa..f32a679 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,9 @@ 2010-12-28 Mike Frysinger + * hw-alloc.h (HW_NALLOC): Define. + +010-12-28 Mike Frysinger + * hw-alloc.h (HW_NZALLOC): Change ME,TYPE,N to me,type,n. 2010-12-15 Mike Frysinger diff --git a/sim/common/hw-alloc.h b/sim/common/hw-alloc.h index 699d017..2cea44f 100644 --- a/sim/common/hw-alloc.h +++ b/sim/common/hw-alloc.h @@ -33,6 +33,7 @@ along with this program. If not, see . */ #define HW_ZALLOC(me,type) (type*) hw_zalloc (me, sizeof (type)) #define HW_MALLOC(me,type) (type*) hw_malloc (me, sizeof (type)) +#define HW_NALLOC(me,type,n) (type*) hw_malloc (me, sizeof (type) * (n)) #define HW_NZALLOC(me,type,n) (type*) hw_zalloc (me, sizeof (type) * (n)) extern void *hw_zalloc (struct hw *me, unsigned long size); -- 2.7.4