Rename SliceCount to slice_count
Updating global variable's name to follow a consistent naming convention.
Change accomplished with the following script:
#!/bin/bash
echo "Searching for ${1} to replace with ${2}"
find ./ \( -name "*.[chs]" -o -name "sysgen.py" -o -name "*.kconf" \) \
! -path "./host/src/genIdt/*" \
! -path "*/outdir/*" | xargs sed -i 's/\b'${1}'\b/'${2}'/g';
Change-Id: I18710011b215ddb5040f8d073d7e4fb13783af94
Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
parent
a9c772cbb6
commit
224a6b16ec
1 changed files with 3 additions and 3 deletions
|
|
@ -49,7 +49,7 @@ This module implements the microkernel's tick event handler.
|
||||||
#include <sections.h>
|
#include <sections.h>
|
||||||
|
|
||||||
#ifdef CONFIG_TIMESLICING
|
#ifdef CONFIG_TIMESLICING
|
||||||
static int32_t SliceCount = (int32_t)0;
|
static int32_t slice_count = (int32_t)0;
|
||||||
static int32_t SliceTime = (int32_t)CONFIG_TIMESLICE_SIZE;
|
static int32_t SliceTime = (int32_t)CONFIG_TIMESLICE_SIZE;
|
||||||
static kpriority_t SlicePrio =
|
static kpriority_t SlicePrio =
|
||||||
(kpriority_t)CONFIG_TIMESLICE_PRIORITY;
|
(kpriority_t)CONFIG_TIMESLICE_PRIORITY;
|
||||||
|
|
@ -188,9 +188,9 @@ static inline void _TimeSliceUpdate(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_TIMESLICING
|
#ifdef CONFIG_TIMESLICING
|
||||||
int yield = SliceTime && (_k_current_task->Prio >= SlicePrio) &&
|
int yield = SliceTime && (_k_current_task->Prio >= SlicePrio) &&
|
||||||
(++SliceCount >= SliceTime);
|
(++slice_count >= SliceTime);
|
||||||
if (yield) {
|
if (yield) {
|
||||||
SliceCount = 0;
|
slice_count = 0;
|
||||||
K_yield(NULL);
|
K_yield(NULL);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue