SuperTinyKernel™ RTOS 1.06.x
Lightweight, high-performance, deterministic, bare-metal C++ RTOS for resource-constrained embedded systems. MIT Open Source License.
Loading...
Searching...
No Matches
stk_blockpool_t Struct Reference
Collaboration diagram for stk_blockpool_t:

Public Member Functions

 stk_blockpool_t (size_t capacity, size_t raw_block_size, uint8_t *storage, size_t storage_size, const char *name)
 stk_blockpool_t (size_t capacity, size_t raw_block_size, const char *name)

Public Attributes

BlockMemoryPool handle

Detailed Description

Definition at line 53 of file stk_c_memory.cpp.

Constructor & Destructor Documentation

◆ stk_blockpool_t() [1/2]

stk_blockpool_t::stk_blockpool_t ( size_t capacity,
size_t raw_block_size,
uint8_t * storage,
size_t storage_size,
const char * name )
inline

Definition at line 56 of file stk_c_memory.cpp.

58 : handle(capacity, raw_block_size, storage, storage_size, name)
59 {}
BlockMemoryPool handle

References handle.

◆ stk_blockpool_t() [2/2]

stk_blockpool_t::stk_blockpool_t ( size_t capacity,
size_t raw_block_size,
const char * name )
inline

Definition at line 62 of file stk_c_memory.cpp.

63 : handle(capacity, raw_block_size, name)
64 {}

References handle.

Member Data Documentation

◆ handle


The documentation for this struct was generated from the following file: