Zephyr API Documentation 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
partitions.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_APP_MEMORY_PARTITIONS_H_
8#define ZEPHYR_INCLUDE_APP_MEMORY_PARTITIONS_H_
9
10#ifdef CONFIG_USERSPACE
11#include <zephyr/kernel.h> /* For struct k_mem_partition */
12
13#if defined(CONFIG_MBEDTLS)
14extern struct k_mem_partition k_mbedtls_partition;
15#endif /* CONFIG_MBEDTLS */
16#endif /* CONFIG_USERSPACE */
17#endif /* ZEPHYR_INCLUDE_APP_MEMORY_PARTITIONS_H_ */
Public kernel APIs.
Memory Partition.
Definition mem_domain.h:55