API: Provide dummy halt() in the glue layer.
authorRafal Jaworowski <raj@semihalf.com>
Tue, 29 Jan 2008 16:00:34 +0000 (17:00 +0100)
committerRafal Jaworowski <raj@semihalf.com>
Tue, 29 Jan 2008 16:00:34 +0000 (17:00 +0100)
This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.

Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
api_examples/libgenwrap.c

index df62633..2b62bad 100644 (file)
@@ -84,7 +84,12 @@ void do_reset (void)
        ub_reset();
 }
 
-void *malloc(size_t len)
+void *malloc (size_t len)
 {
        return NULL;
 }
+
+void hang (void)
+{
+       while (1) ;
+}