Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
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_sem sem
 Access control semaphore.
 
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

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

◆ sem

struct k_sem zbus_channel_data::sem

Access control semaphore.

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


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