Zephyr API Documentation
3.5.0
A Scalable Open Source RTOS
|
|
3.5.0 |
Type used to represent a channel mutable data. More...
#include <zbus.h>
Data Fields | |
int16_t | observers_start_idx |
Static channel observer list start index. | |
int16_t | observers_end_idx |
Static channel observer list end index. | |
struct k_mutex | mutex |
Access control mutex. | |
sys_slist_t | observers |
Channel observer list. | |
Type used to represent a channel mutable data.
Every channel has a zbus_channel_data structure associated.
struct k_mutex zbus_channel_data::mutex |
Access control mutex.
Points to the mutex used to avoid race conditions for accessing the channel.
sys_slist_t zbus_channel_data::observers |
Channel observer list.
Represents the channel's observers list, it can be empty or have listeners and subscribers mixed in any sequence. It can be changed in runtime.
int16_t zbus_channel_data::observers_end_idx |
Static channel observer list end index.
Considering the ITERABLE SECTIONS allocation order.
int16_t zbus_channel_data::observers_start_idx |
Static channel observer list start index.
Considering the ITERABLE SECTIONS allocation order.