Function report |
Source Code:mm\mempool.c |
Create Date:2022-07-28 14:04:32 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:remove_element
Proto:static void *remove_element(mempool_t *pool)
Type:void
Parameter:
Type | Parameter | Name |
---|---|---|
mempool_t * | pool |
132 | element = elements[-- Current nr of elements at *elements ] |
134 | BUG_ON( Current nr of elements at *elements < 0) |
136 | check_element(pool, element) |
137 | Return element |
Name | Describe |
---|---|
mempool_exit | mempool_exit - exit a mempool initialized with mempool_init()*@pool: pointer to the memory pool which was initialized with* mempool_init().* Free all reserved elements in @pool and @pool itself. This function* only sleeps if the free_fn() function sleeps. |
mempool_resize | mempool_resize - resize an existing memory pool*@pool: pointer to the memory pool which was allocated via* mempool_create().*@new_min_nr: the new minimum number of elements guaranteed to be* allocated for this pool.* This function shrinks/grows the pool |
mempool_alloc | mempool_alloc - allocate an element from a specific memory pool*@pool: pointer to the memory pool which was allocated via* mempool_create().*@gfp_mask: the usual allocation bitmask.* this function only sleeps if the alloc_fn() function sleeps or |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |