ChibiOS
21.6.0
|
Type of the factory main object. More...
#include <chfactory.h>
Data Fields | |
mutex_t | mtx |
Factory access mutex or semaphore. More... | |
dyn_list_t | obj_list |
List of the registered objects. More... | |
memory_pool_t | obj_pool |
Pool of the available registered objects. More... | |
dyn_list_t | buf_list |
List of the allocated buffer objects. More... | |
dyn_list_t | sem_list |
List of the allocated semaphores. More... | |
memory_pool_t | sem_pool |
Pool of the available semaphores. More... | |
dyn_list_t | mbx_list |
List of the allocated buffer objects. More... | |
dyn_list_t | fifo_list |
List of the allocated "objects FIFO" objects. More... | |
dyn_list_t | pipe_list |
List of the allocated pipe objects. More... | |
Type of the factory main object.
Definition at line 288 of file chfactory.h.
mutex_t ch_objects_factory::mtx |
Factory access mutex or semaphore.
Definition at line 293 of file chfactory.h.
Referenced by __factory_init().
dyn_list_t ch_objects_factory::obj_list |
List of the registered objects.
Definition at line 300 of file chfactory.h.
Referenced by chFactoryFindObjectByPointer().
memory_pool_t ch_objects_factory::obj_pool |
Pool of the available registered objects.
Definition at line 304 of file chfactory.h.
dyn_list_t ch_objects_factory::buf_list |
List of the allocated buffer objects.
Definition at line 309 of file chfactory.h.
dyn_list_t ch_objects_factory::sem_list |
List of the allocated semaphores.
Definition at line 315 of file chfactory.h.
memory_pool_t ch_objects_factory::sem_pool |
Pool of the available semaphores.
Definition at line 319 of file chfactory.h.
dyn_list_t ch_objects_factory::mbx_list |
List of the allocated buffer objects.
Definition at line 325 of file chfactory.h.
dyn_list_t ch_objects_factory::fifo_list |
List of the allocated "objects FIFO" objects.
Definition at line 331 of file chfactory.h.
dyn_list_t ch_objects_factory::pipe_list |
List of the allocated pipe objects.
Definition at line 337 of file chfactory.h.