partitions.h 428 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_APP_MEMORY_PARTITIONS_H
  7. #define ZEPHYR_APP_MEMORY_PARTITIONS_H
  8. #ifdef CONFIG_USERSPACE
  9. #include <kernel.h> /* For struct k_mem_partition */
  10. #if defined(CONFIG_MBEDTLS)
  11. extern struct k_mem_partition k_mbedtls_partition;
  12. #endif /* CONFIG_MBEDTLS */
  13. #endif /* CONFIG_USERSPACE */
  14. #endif /* ZEPHYR_APP_MEMORY_PARTITIONS_H */