aboutsummaryrefslogtreecommitdiff
path: root/arch/sandbox/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-09-06 20:27:00 -0600
committerTom Rini <trini@konsulko.com>2022-09-29 16:07:58 -0400
commit62d638386c17d17b929ad10956c7f60825335a4e (patch)
tree9f0e6f82f9bdc3fac8a8c64e2850c14002cd6a2a /arch/sandbox/include
parent7c14dc7f77705f79ba49e7f0b2879986fea70fea (diff)
downloadu-boot-62d638386c17d17b929ad10956c7f60825335a4e.zip
u-boot-62d638386c17d17b929ad10956c7f60825335a4e.tar.gz
u-boot-62d638386c17d17b929ad10956c7f60825335a4e.tar.bz2
test: Support testing malloc() failures
It is helpful to test that out-of-memory checks work correctly in code that calls malloc(). Add a simple way to force failure after a given number of malloc() calls. Fix a header guard to avoid a build error on sandbox_vpl. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Sean Anderson <seanga2@gmail.com>
Diffstat (limited to 'arch/sandbox/include')
-rw-r--r--arch/sandbox/include/asm/malloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/malloc.h b/arch/sandbox/include/asm/malloc.h
index a1467b5..8aaaa9c 100644
--- a/arch/sandbox/include/asm/malloc.h
+++ b/arch/sandbox/include/asm/malloc.h
@@ -6,6 +6,7 @@
*/
#ifndef __ASM_MALLOC_H
+#define __ASM_MALLOC_H
void *malloc(size_t size);
void free(void *ptr);