FreeRTOS
os_pool_cb
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
FreeRTOS
os_pool_cb
os_pool_cb struct
Pool ID identifies the memory pool (pointer to a memory pool control block).
Syntax
Show:
Summary
Declaration
Definition
from
cmsis_os.h:254
typedef
struct
os_pool_cb
*
osPoolId
;
Implemented in
cmsis_os.c:868
Fields
Field
Declared as
os_pool_cb::pool
void
*
os_pool_cb::markers
uint8_t
*
os_pool_cb::pool_sz
uint32_t
os_pool_cb::item_sz
uint32_t
os_pool_cb::currentIndex
uint32_t
Related Functions
Found 3 other functions taking a
os_pool_cb
argument:
Function
Description
osPoolAlloc()
Allocate a memory block from a memory pool
osPoolFree()
Return an allocated memory block back to a specific memory pool
osPoolCAlloc()
Allocate a memory block from a memory pool and set memory block to zero
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
os_pool_cb
{
cmsis_os.c:868
}
os_pool_cb_t
;
cmsis_os.c:874
typedef
struct
os_pool_cb
*
osPoolId
;
cmsis_os.h:254
}
os_pool_cb_t
;
cmsis_os.c:874
os_pool_cb_t
osPoolId
osPoolCreate
(
const
osPoolDef_t
*
pool_def
)
cmsis_os.c:883
osPoolCreate()
osPoolId
thePool
;
cmsis_os.c:886
osPoolCreate()
thePool
=
pvPortMalloc
(
sizeof
(
os_pool_cb_t
)
)
;
cmsis_os.c:891
osPoolCreate()
vPortFree
(
thePool
)
;
cmsis_os.c:913
osPoolCreate()
vPortFree
(
thePool
)
;
cmsis_os.c:918
osPoolCreate()
void
*
osPoolAlloc
(
osPoolId
pool_id
)
cmsis_os.c:936
osPoolAlloc()
osPoolAlloc()::pool_id
void
*
osPoolCAlloc
(
osPoolId
pool_id
)
cmsis_os.c:977
osPoolCAlloc()
osPoolCAlloc()::pool_id
osStatus
osPoolFree
(
osPoolId
pool_id
,
void
*
block
)
cmsis_os.c:996
osPoolFree()
osPoolFree()::pool_id
osPoolId
pool
;
cmsis_os.c:1158
os_mailQ_cb
os_mailQ_cb::pool
typedef
struct
os_pool_cb
*
osPoolId
;
cmsis_os.h:254
osPoolId
osPoolId
osPoolCreate
(
const
osPoolDef_t
*
pool_def
)
;
cmsis_os.h:726
osPoolCreate()
void
*
osPoolAlloc
(
osPoolId
pool_id
)
;
cmsis_os.h:732
osPoolAlloc()
osPoolAlloc()::pool_id
void
*
osPoolCAlloc
(
osPoolId
pool_id
)
;
cmsis_os.h:738
osPoolCAlloc()
osPoolCAlloc()::pool_id
osStatus
osPoolFree
(
osPoolId
pool_id
,
void
*
block
)
;
cmsis_os.h:745
osPoolFree()
osPoolFree()::pool_id
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Instance
Scope
Location
Project
return
osPoolCreate()
cmsis_os.h:726
osPoolAlloc()::pool_id
osPoolAlloc()
cmsis_os.h:732
osPoolCAlloc()::pool_id
osPoolCAlloc()
cmsis_os.h:738
osPoolFree()::pool_id
osPoolFree()
cmsis_os.h:745
return
osPoolCreate()
cmsis_os.c:883
osPoolAlloc()::pool_id
osPoolAlloc()
cmsis_os.c:936
osPoolCAlloc()::pool_id
osPoolCAlloc()
cmsis_os.c:977
osPoolFree()::pool_id
osPoolFree()
cmsis_os.c:996
os_mailQ_cb::pool
os_mailQ_cb
cmsis_os.c:1158
Lifecycle
from
examples
os_pool_cb
is allocated by 1 symbol and is freed by 1 symbol:
osPoolCreate()
All items filtered out
os_pool_cb
osPoolCreate()
All items filtered out