kernel: replace all remaining nanokernel occurances

replace include <nanokernel.h> with <kernel.h> everywhere and also fix
any remaining mentions of nanokernel.

Keep the legacy samples/tests as is.

Change-Id: Iac48447bd191e83f21a719c69dc26233216d08dc
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-12-23 08:35:34 -05:00
commit c1347b4730
57 changed files with 59 additions and 62 deletions

View file

@ -18,7 +18,7 @@
* @file exception related routines
*/
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <inttypes.h>

View file

@ -23,7 +23,7 @@
* custom run time handler.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <misc/printk.h>
#include <misc/reboot.h>

View file

@ -26,7 +26,7 @@
* initialization is performed.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <stdint.h>
#include <toolchain.h>
#include <linker-defs.h>

View file

@ -24,7 +24,7 @@
* definitions and more complex routines, if needed.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <misc/util.h>

View file

@ -23,7 +23,7 @@
* definitions and more complex routines, if needed.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <toolchain.h>
#include <sections.h>

View file

@ -25,7 +25,7 @@
#include <sections.h>
#include <inttypes.h>
#include <nanokernel.h>
#include <kernel.h>
#include <kernel_structs.h>
#ifdef CONFIG_PRINTK

View file

@ -24,7 +24,7 @@
#include <toolchain.h>
#include <sections.h>
#include <nanokernel.h>
#include <kernel.h>
#include <kernel_structs.h>
#include <inttypes.h>

View file

@ -28,7 +28,7 @@
#include <toolchain.h>
#include <sections.h>
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
/**

View file

@ -24,7 +24,7 @@
* connecting ISRs at runtime.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <arch/cpu.h>
#include <misc/__assert.h>
#include <toolchain.h>

View file

@ -18,7 +18,7 @@
* @file Software interrupts utility code - ARM implementation
*/
#include <nanokernel.h>
#include <kernel.h>
#include <irq_offload.h>
static irq_offload_routine_t offload_routine;

View file

@ -21,7 +21,7 @@
* Core thread related primitives for the ARM Cortex-M processor architecture.
*/
#include <nanokernel.h>
#include <kernel.h>
#include <toolchain.h>
#include <kernel_structs.h>
#include <wait_q.h>