Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages

Linkable loadable extension symbol. More...

Data Structures

struct  llext_const_symbol
 Constant symbols are unchangeable named memory addresses. More...
 
struct  llext_symbol
 Symbols are named memory addresses. More...
 
struct  llext_symtable
 A symbol table. More...
 

Macros

#define EXPORT_SYMBOL(x)
 Export a constant symbol to a table of symbols.
 

Detailed Description

Linkable loadable extension symbol.

Macro Definition Documentation

◆ EXPORT_SYMBOL

#define EXPORT_SYMBOL (   x)

#include <zephyr/llext/symbol.h>

Value:
static const STRUCT_SECTION_ITERABLE(llext_const_symbol, x ## _sym) = { \
.name = STRINGIFY(x), .addr = x, \
}
#define STRINGIFY(s)
Definition: common.h:134
#define STRUCT_SECTION_ITERABLE(struct_type, varname)
Defines a new element for an iterable section.
Definition: iterable_sections.h:216
Constant symbols are unchangeable named memory addresses.
Definition: symbol.h:30

Export a constant symbol to a table of symbols.

Takes a symbol (function or object) by symbolic name and adds the name and address of the symbol to a table of symbols that may be used for linking.

Parameters
xSymbol to export