kernel: include cleanup
Recent changes have eliminated most use of _Swap() in favor of higher level scheduler abstractions. We can remove the header too. Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
This commit is contained in:
parent
e0a572beeb
commit
0447a73f6c
|
@ -17,7 +17,6 @@
|
|||
#include <wait_q.h>
|
||||
#include <misc/dlist.h>
|
||||
#include <init.h>
|
||||
#include <kswap.h>
|
||||
|
||||
#if (CONFIG_NUM_MBOX_ASYNC_MSGS > 0)
|
||||
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
#include <misc/dlist.h>
|
||||
#include <ksched.h>
|
||||
#include <init.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_mem_slab _k_mem_slab_list_start[];
|
||||
extern struct k_mem_slab _k_mem_slab_list_end[];
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include <init.h>
|
||||
#include <string.h>
|
||||
#include <misc/__assert.h>
|
||||
#include <kswap.h>
|
||||
|
||||
/* Linker-defined symbols bound the static pool structs */
|
||||
extern struct k_mem_pool _k_mem_pool_list_start[];
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include <misc/dlist.h>
|
||||
#include <init.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_msgq _k_msgq_list_start[];
|
||||
extern struct k_msgq _k_msgq_list_end[];
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
#include <errno.h>
|
||||
#include <init.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
#define RECORD_STATE_CHANGE(mutex) do { } while ((0))
|
||||
#define RECORD_CONFLICT(mutex) do { } while ((0))
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include <misc/dlist.h>
|
||||
#include <init.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
struct k_pipe_desc {
|
||||
unsigned char *buffer; /* Position in src/dest buffer */
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
#include <kernel_internal.h>
|
||||
#include <wait_q.h>
|
||||
#include <ksched.h>
|
||||
#include <kswap.h>
|
||||
#include <misc/slist.h>
|
||||
#include <misc/dlist.h>
|
||||
#include <misc/__assert.h>
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
#include <ksched.h>
|
||||
#include <misc/slist.h>
|
||||
#include <init.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_queue _k_queue_list_start[];
|
||||
extern struct k_queue _k_queue_list_end[];
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <ksched.h>
|
||||
#include <init.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_sem _k_sem_list_start[];
|
||||
extern struct k_sem _k_sem_list_end[];
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#include <misc/__assert.h>
|
||||
#include <init.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_stack _k_stack_list_start[];
|
||||
extern struct k_stack _k_stack_list_end[];
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#include <init.h>
|
||||
#include <wait_q.h>
|
||||
#include <syscall_handler.h>
|
||||
#include <kswap.h>
|
||||
|
||||
extern struct k_timer _k_timer_list_start[];
|
||||
extern struct k_timer _k_timer_list_end[];
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#include <posix/pthread.h>
|
||||
#include <ksched.h>
|
||||
#include <wait_q.h>
|
||||
#include <kswap.h>
|
||||
|
||||
void ready_one_thread(_wait_q_t *wq);
|
||||
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
#include <kernel.h>
|
||||
#include <ksched.h>
|
||||
#include <wait_q.h>
|
||||
#include <kswap.h>
|
||||
#include <posix/pthread.h>
|
||||
|
||||
void ready_one_thread(_wait_q_t *wq);
|
||||
|
|
Loading…
Reference in a new issue