ChibiOS  21.6.0
ch_objects_factory Struct Reference

Type of the factory main object. More...

#include <chfactory.h>

Collaboration diagram for ch_objects_factory:
Collaboration graph

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...
 

Detailed Description

Type of the factory main object.

Definition at line 288 of file chfactory.h.

Field Documentation

◆ mtx

mutex_t ch_objects_factory::mtx

Factory access mutex or semaphore.

Definition at line 293 of file chfactory.h.

Referenced by __factory_init().

◆ obj_list

dyn_list_t ch_objects_factory::obj_list

List of the registered objects.

Definition at line 300 of file chfactory.h.

Referenced by chFactoryFindObjectByPointer().

◆ obj_pool

memory_pool_t ch_objects_factory::obj_pool

Pool of the available registered objects.

Definition at line 304 of file chfactory.h.

◆ buf_list

dyn_list_t ch_objects_factory::buf_list

List of the allocated buffer objects.

Definition at line 309 of file chfactory.h.

◆ sem_list

dyn_list_t ch_objects_factory::sem_list

List of the allocated semaphores.

Definition at line 315 of file chfactory.h.

◆ sem_pool

memory_pool_t ch_objects_factory::sem_pool

Pool of the available semaphores.

Definition at line 319 of file chfactory.h.

◆ mbx_list

dyn_list_t ch_objects_factory::mbx_list

List of the allocated buffer objects.

Definition at line 325 of file chfactory.h.

◆ fifo_list

dyn_list_t ch_objects_factory::fifo_list

List of the allocated "objects FIFO" objects.

Definition at line 331 of file chfactory.h.

◆ pipe_list

dyn_list_t ch_objects_factory::pipe_list

List of the allocated pipe objects.

Definition at line 337 of file chfactory.h.