Zephyr API Documentation 4.0.0-rc3
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
llext_internal.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_LLEXT_INTERNAL_H
8#define ZEPHYR_LLEXT_INTERNAL_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
21struct llext_loader;
22struct llext;
23
24const void *llext_loaded_sect_ptr(struct llext_loader *ldr, struct llext *ext, unsigned int sh_ndx);
25
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* ZEPHYR_LLEXT_INTERNAL_H */
Linkable loadable extension loader context.
Definition loader.h:42
Structure describing a linkable loadable extension.
Definition llext.h:77