2018-06-20 17:30:48 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* @brief Header files included by kernel.h.
|
|
|
|
*/
|
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#ifndef ZEPHYR_INCLUDE_KERNEL_INCLUDES_H_
|
|
|
|
#define ZEPHYR_INCLUDE_KERNEL_INCLUDES_H_
|
2018-06-20 17:30:48 +02:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <toolchain.h>
|
|
|
|
#include <linker/sections.h>
|
2019-06-25 12:25:32 -04:00
|
|
|
#include <sys/atomic.h>
|
2019-06-26 10:33:39 -04:00
|
|
|
#include <sys/__assert.h>
|
2018-06-20 17:30:48 +02:00
|
|
|
#include <sched_priq.h>
|
2019-06-26 10:33:41 -04:00
|
|
|
#include <sys/dlist.h>
|
2019-06-26 10:33:52 -04:00
|
|
|
#include <sys/slist.h>
|
2019-06-26 10:33:51 -04:00
|
|
|
#include <sys/sflist.h>
|
2019-06-26 10:33:55 -04:00
|
|
|
#include <sys/util.h>
|
2019-06-26 10:33:46 -04:00
|
|
|
#include <sys/mempool_base.h>
|
2019-10-25 00:08:21 +09:00
|
|
|
#include <kernel_structs.h>
|
2020-04-03 15:39:25 -07:00
|
|
|
#ifdef CONFIG_MEM_POOL_HEAP_BACKEND
|
|
|
|
#include <mempool_heap.h>
|
|
|
|
#else
|
2020-03-31 09:23:11 -07:00
|
|
|
#include <mempool_sys.h>
|
2020-04-03 15:39:25 -07:00
|
|
|
#endif
|
2018-06-20 17:30:48 +02:00
|
|
|
#include <kernel_version.h>
|
|
|
|
#include <syscall.h>
|
2019-06-26 10:33:49 -04:00
|
|
|
#include <sys/printk.h>
|
2018-06-20 17:30:48 +02:00
|
|
|
#include <arch/cpu.h>
|
2019-06-26 10:33:50 -04:00
|
|
|
#include <sys/rb.h>
|
2018-09-19 09:35:43 -07:00
|
|
|
#include <sys_clock.h>
|
2018-07-24 11:26:43 -07:00
|
|
|
#include <spinlock.h>
|
2019-07-11 14:18:28 -07:00
|
|
|
#include <fatal.h>
|
2019-10-04 18:17:19 -07:00
|
|
|
#include <irq.h>
|
2020-04-19 14:45:12 -07:00
|
|
|
#include <sys/thread_stack.h>
|
2018-06-20 17:30:48 +02:00
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#endif /* ZEPHYR_INCLUDE_KERNEL_INCLUDES_H_ */
|