Renamign intLatencyShow to int_latency_show

Updating nano kernel functions to follow a consistent naming convention.
Part of that process is the removal of camelCase naming conventions for the
preferred_underscore_method.

Change accomplished with the following script:

#!/bin/bash
echo "Searching for ${1} to replace with ${2}"
find . -type f \( -iname \*.c -o -iname \*.h -o -iname \*.s -o -iname \*.conf \) \
       -not \( -path host/src/genIdt -prune \) \   \
       -not \( -path host/src/gen_tables -prune \) \
       -print | xargs sed -i "s/"${1}"/"${2}"/g"

Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
Dan Kalowsky 2015-04-16 12:25:10 -07:00 committed by Anas Nashif
parent ff00dbecce
commit ff0641fac6
2 changed files with 3 additions and 3 deletions

View file

@ -202,7 +202,7 @@ void int_latency_init(void)
/*******************************************************************************
*
* intLatencyShow - dumps interrupt latency values
* int_latency_show - dumps interrupt latency values
*
* The interrupt latency value measures
*
@ -210,7 +210,7 @@ void int_latency_init(void)
*
*/
void intLatencyShow(void)
void int_latency_show(void)
{
uint32_t intHandlerLatency = 0;

View file

@ -114,7 +114,7 @@ config INT_LATENCY_BENCHMARK
Tracking begins when int_latency_init() is invoked by an application.
The metrics are displayed (and a new sampling interval is started)
each time intLatencyShow() is called thereafter.
each time int_latency_show() is called thereafter.
config BOOT_TIME_MEASUREMENT
bool