Rename _IsrWrapper camelCase to _isr_wrapper

Change-Id: I217eced3965fbf313a7e0fbef38db9dd876fcf80
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2015-04-24 10:40:17 +03:00 committed by Anas Nashif
commit fbb1526d1a
7 changed files with 14 additions and 14 deletions

View file

@ -35,7 +35,7 @@ DESCRIPTION
Provides functions for performing kernel handling when exiting exceptions or
interrupts that are installed directly in the vector table (i.e. that are not
wrapped around by _IsrWrapper()).
wrapped around by _isr_wrapper()).
*/
#define _ASMLANGUAGE

View file

@ -50,14 +50,14 @@ _ASM_FILE_PROLOGUE
GDATA(_IsrTable)
GTEXT(_IsrWrapper)
GTEXT(_isr_wrapper)
GTEXT(_IntExit)
/*******************************************************************************
*
* _IsrWrapper - wrapper around ISRs when inserted in software ISR table
* _isr_wrapper - wrapper around ISRs when inserted in software ISR table
*
* When inserted in the vector table, _IsrWrapper() demuxes the ISR table using
* When inserted in the vector table, _isr_wrapper() demuxes the ISR table using
* the running interrupt number as the index, and invokes the registered ISR
* with its correspoding argument. When returning from the ISR, it determines
* if a context switch needs to happen (see documentation for __pendsv()) and
@ -66,7 +66,7 @@ GTEXT(_IntExit)
*
* RETURNS: N/A
*/
SECTION_FUNC(TEXT, _IsrWrapper)
SECTION_FUNC(TEXT, _isr_wrapper)
_GDB_STUB_EXC_ENTRY