[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [mini-os master] Mini-OS: add EXPORT_SYMBOL() instances to lib/xmalloc.c
commit a422097480393eca10d1de412d3246bb157761e2 Author: Juergen Gross <jgross@xxxxxxxx> AuthorDate: Mon Nov 27 11:25:03 2023 +0100 Commit: Julien Grall <jgrall@xxxxxxxxxx> CommitDate: Mon Dec 4 16:52:57 2023 +0000 Mini-OS: add EXPORT_SYMBOL() instances to lib/xmalloc.c Add the needed instances of EXPORT_SYMBOL() to lib/xmalloc.c. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> Reviewed-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> --- lib/xmalloc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/xmalloc.c b/lib/xmalloc.c index e16f161..cc5db11 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -271,6 +271,7 @@ void *malloc(size_t size) { return _xmalloc(size, DEFAULT_ALIGN); } +EXPORT_SYMBOL(malloc); void *realloc(void *ptr, size_t size) { @@ -301,11 +302,13 @@ void *realloc(void *ptr, size_t size) return new; } +EXPORT_SYMBOL(realloc); void free(void *ptr) { xfree(ptr); } +EXPORT_SYMBOL(free); #endif /* -- generated by git-patchbot for /home/xen/git/mini-os.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |