OS
v1.7.5
Documentation
|
Topics | |
Generic double-linked lists | |
The provided list implementation uses a generic doubly-linked approach in which each node, apart from storing its data, has two link pointers. The first link points to the previous node in the list and the second link, points to the next node in the list. The first node of the list has its previous link pointing to nullptr , similarly, the last node of the list has its next node pointing to nullptr . | |
Byte-Sized buffers | |
An interrupt-safe byte-sized ring buffer interface. | |
Input channel events | |
A comprehensive event class for efficient, maintainable working with input channels. | |
I/O Utils | |
API for input/output utilities and safe string interfaces. | |
Response handler | |
API to simplify the handling of requested responses from terminal interfaces. | |
Helper functions | |
A collection of utility libraries for the QuarkTS OS