Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
zbus_channel_data Struct Reference

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.
 

Detailed Description

Type used to represent a channel mutable data.

Every channel has a zbus_channel_data structure associated.

Field Documentation

◆ mutex

struct k_mutex zbus_channel_data::mutex

Access control mutex.

Points to the mutex used to avoid race conditions for accessing the channel.

◆ observers

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.

◆ observers_end_idx

int16_t zbus_channel_data::observers_end_idx

Static channel observer list end index.

Considering the ITERABLE SECTIONS allocation order.

◆ observers_start_idx

int16_t zbus_channel_data::observers_start_idx

Static channel observer list start index.

Considering the ITERABLE SECTIONS allocation order.


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