Zephyr Project API 4.1.99
A Scalable Open Source RTOS
|
LLEXT buffer loader implementation. More...
#include <zephyr/llext/loader.h>
Go to the source code of this file.
Data Structures | |
struct | llext_buf_loader |
Implementation of llext_loader that reads from a memory buffer. More... | |
Macros | |
#define | LLEXT_BUF_LOADER(_buf, _buf_len) |
Initializer for an llext_buf_loader structure. | |
#define | LLEXT_TEMPORARY_BUF_LOADER(_buf, _buf_len) Z_LLEXT_BUF_LOADER(_buf, _buf_len, LLEXT_STORAGE_TEMPORARY) |
#define | LLEXT_PERSISTENT_BUF_LOADER(_buf, _buf_len) Z_LLEXT_BUF_LOADER(_buf, _buf_len, LLEXT_STORAGE_PERSISTENT) |
Initialize an llext_buf_loader structure for a persistent, read-only buffer. | |
#define | LLEXT_WRITABLE_BUF_LOADER(_buf, _buf_len) Z_LLEXT_BUF_LOADER(_buf, _buf_len, LLEXT_STORAGE_WRITABLE) |
Initialize an llext_buf_loader structure for a persistent, writable buffer. | |
LLEXT buffer loader implementation.