|
QP/C
|
Subscriber-List structure. More...
#include <qf.h>
Data Fields | |
| uint8_t | bits [((63-1)/8)+1] |
Subscriber-List structure.
This data type represents a set of active objects that subscribe to a given signal. The set is represented as an array of bits, where each bit corresponds to the unique priority of an active object.
| uint8_t QSubscrList::bits[((63-1)/8)+1] |
An array of bits representing subscriber active objects. Each bit in the array corresponds to the unique priority of the active object. The size of the array is determined of the maximum number of active objects in the application configured by the QF_MAX_ACTIVE macro. For example, an active object of priority p is a subscriber if the following is true: ((bits[QF_div8Lkup[p]] & QF_pwr2Lkup[p]) != 0)
Definition at line 671 of file qf.h.
Referenced by QF_publish().
1.7.6.1