Skip to content

Commit c5a4bb9

Browse files
stephanosiofabiobaltieri
authored andcommitted
kernel: Remove stale references to memory pool API
This commit removes all stale references in the kernel header to the memory pool API, which was removed in the v2.5.0 release. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 69f3b86 commit c5a4bb9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

include/zephyr/kernel.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ struct k_fifo;
7777
struct k_lifo;
7878
struct k_stack;
7979
struct k_mem_slab;
80-
struct k_mem_pool;
8180
struct k_timer;
8281
struct k_poll_event;
8382
struct k_poll_signal;
@@ -5263,8 +5262,7 @@ extern void *k_malloc(size_t size);
52635262
* @brief Free memory allocated from heap.
52645263
*
52655264
* This routine provides traditional free() semantics. The memory being
5266-
* returned must have been allocated from the heap memory pool or
5267-
* k_mem_pool_malloc().
5265+
* returned must have been allocated from the heap memory pool.
52685266
*
52695267
* If @a ptr is NULL, no operation is performed.
52705268
*

0 commit comments

Comments
 (0)