kernel: remove all remaining references to nanokernel

Change-Id: I43067508898bc092879f7fe9d656ccca6fd92ab2
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-04-09 11:57:54 -04:00 committed by Anas Nashif
commit b84dc2e124
27 changed files with 37 additions and 53 deletions

View file

@ -260,7 +260,7 @@ extern void _arch_isr_direct_footer(int maybe_swap);
static inline int name##_body(void)
/**
* @brief Nanokernel Exception Stack Frame
* @brief Exception Stack Frame
*
* A pointer to an "exception stack frame" (ESF) is passed as an argument
* to exception handlers registered via nanoCpuExcConnect(). As the system
@ -288,7 +288,7 @@ typedef struct nanoEsf {
} NANO_ESF;
/**
* @brief Nanokernel "interrupt stack frame" (ISF)
* @brief "interrupt stack frame" (ISF)
*
* An "interrupt stack frame" (ISF) as constructed by the processor and the
* interrupt wrapper function _interrupt_enter(). As the system always
@ -491,7 +491,7 @@ extern void k_cpu_idle(void);
extern uint32_t _timer_cycle_get_32(void);
#define _arch_k_cycle_get_32() _timer_cycle_get_32()
/** Nanokernel provided routine to report any detected fatal error. */
/** kernel provided routine to report any detected fatal error. */
extern FUNC_NORETURN void _NanoFatalErrorHandler(unsigned int reason,
const NANO_ESF * pEsf);
/** User provided routine to handle any detected fatal error post reporting. */

View file

@ -8,7 +8,7 @@
* @file
* @brief Xtensa public exception handling
*
* Xtensa-specific nanokernel exception handling interface. Included by
* Xtensa-specific kernel exception handling interface. Included by
* arch/xtensa/arch.h.
*/
@ -22,7 +22,7 @@ extern "C" {
#ifdef _ASMLANGUAGE
#else
/**
* @brief Nanokernel Exception Stack Frame
* @brief Exception Stack Frame
*
* A pointer to an "exception stack frame" (ESF) is passed as an argument
* to exception handlers registered via nanoCpuExcConnect().