Skip to content

Commit

Permalink
Doxyfile updated paths and hidden struct memory_pool.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed May 21, 2024
1 parent 01e47e4 commit 4e5753d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
3 changes: 2 additions & 1 deletion sdk/librishka_mem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4e5753d

Please sign in to comment.