From 4e5753d05ba61a3ee26727194e03d0302977ae31 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Wed, 22 May 2024 00:46:45 +0800 Subject: [PATCH] Doxyfile updated paths and hidden struct memory_pool. --- Doxyfile | 1 + sdk/librishka_mem.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Doxyfile b/Doxyfile index bbe79e9..0e70379 100644 --- a/Doxyfile +++ b/Doxyfile @@ -951,6 +951,7 @@ WARN_LOGFILE = INPUT += sdk INPUT += sdk/librishka +INPUT += sdk/librishka/drivers INPUT += misc/footer.html INPUT += misc/main_page.md INPUT += misc/pages/ diff --git a/sdk/librishka_mem.cpp b/sdk/librishka_mem.cpp index cc30c9f..efc9607 100644 --- a/sdk/librishka_mem.cpp +++ b/sdk/librishka_mem.cpp @@ -20,12 +20,13 @@ #define MEMORY_POOL_SIZE 524288U -/** @internal */ +/** @cond HIDE_STRUCT */ typedef struct memory_pool { u64 size; i32 free; struct memory_pool* next; } memory_pool; +/** @endcond */ static u8 memory_pool_block[MEMORY_POOL_SIZE]; static memory_pool* free_list = (memory_pool*) nil;