aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include/xmalloc.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-17 15:06:30 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-17 15:06:30 +0000
commitf3b3ce4ae7975a5f16e749bf77d2012320ab9e35 (patch)
treefaa450f0d3e8b354192faacf7b41c28b2639e060 /extras/mini-os/include/xmalloc.h
parent22e39d084eaa3b058ec34964156511fe963ce4d4 (diff)
downloadxen-f3b3ce4ae7975a5f16e749bf77d2012320ab9e35.tar.gz
xen-f3b3ce4ae7975a5f16e749bf77d2012320ab9e35.tar.bz2
xen-f3b3ce4ae7975a5f16e749bf77d2012320ab9e35.zip
minios: add realloc
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com> Signed-off-by: Tim Deegan <tim.deegan@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/include/xmalloc.h')
-rw-r--r--extras/mini-os/include/xmalloc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/extras/mini-os/include/xmalloc.h b/extras/mini-os/include/xmalloc.h
index f5e721fa16..e8052ac68d 100644
--- a/extras/mini-os/include/xmalloc.h
+++ b/extras/mini-os/include/xmalloc.h
@@ -9,12 +9,15 @@
#define malloc(size) _xmalloc(size, 4)
#define free(ptr) xfree(ptr)
+#define realloc(ptr, size) _realloc(ptr, size)
/* Free any of the above. */
extern void xfree(const void *);
/* Underlying functions */
extern void *_xmalloc(size_t size, size_t align);
+extern void *_realloc(void *ptr, size_t size);
+
static inline void *_xmalloc_array(size_t size, size_t align, size_t num)
{
/* Check for overflow. */