Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
QPSet8 Class Reference
Priority Set of up to 8 elements for building various schedulers, but also useful as a general set of up to 8 elements of any kind. More...
#include <qpset.h>
Inherited by QPSet64.
Public Member Functions | |
| uint8_t | isEmpty (void) volatile |
| the function evaluates to TRUE if the priority set is empty, which means that no active objects are ready to run. | |
| uint8_t | notEmpty (void) volatile |
| the function evaluates to TRUE if the priority set has elements, which means that some active objects are ready to run. | |
| uint8_t | hasElement (uint8_t n) volatile |
| the function evaluates to TRUE if the priority set has the element n. | |
| void | insert (uint8_t n) volatile |
| insert element n into the set, n = 1..8 | |
| void | remove (uint8_t n) volatile |
| remove element n from the set, n = 1..8 | |
| uint8_t | findMax (void) volatile |
| find the maximum element in the set, | |
Protected Attributes | |
| uint8_t | m_bits |
| bimask representing elements of the set | |
Friends | |
| class | QPSet64 |
Detailed Description
Priority Set of up to 8 elements for building various schedulers, but also useful as a general set of up to 8 elements of any kind.
The priority set represents the set of active objects that are ready to run and need to be considered by scheduling processing. The set is capable of storing up to 8 priority levels.
Definition at line 51 of file qpset.h.
Member Function Documentation
| uint8_t findMax | ( | void | ) | volatile |
| uint8_t hasElement | ( | uint8_t | n ) | volatile |
| void insert | ( | uint8_t | n ) | volatile |
| uint8_t isEmpty | ( | void | ) | volatile |
| uint8_t notEmpty | ( | void | ) | volatile |
| void remove | ( | uint8_t | n ) | volatile |
Field Documentation
Generated on Tue Jul 12 2022 20:22:36 by
1.7.2