tests: schedule_api: minor cleanup
rename test function and move #if to the start of the line. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
fe03e39cdd
commit
528a2de290
1 changed files with 6 additions and 4 deletions
|
@ -38,7 +38,7 @@ static u32_t cycles_delta(u32_t *reftime)
|
||||||
return delta;
|
return delta;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void thread_tslice(void *p1, void *p2, void *p3)
|
static void thread_time_slice(void *p1, void *p2, void *p3)
|
||||||
{
|
{
|
||||||
u32_t t = cycles_delta(&elapsed_slice);
|
u32_t t = cycles_delta(&elapsed_slice);
|
||||||
u32_t expected_slice_min, expected_slice_max;
|
u32_t expected_slice_min, expected_slice_max;
|
||||||
|
@ -116,12 +116,14 @@ void test_slice_reset(void)
|
||||||
|
|
||||||
for (int j = 0; j < 2; j++) {
|
for (int j = 0; j < 2; j++) {
|
||||||
k_sem_reset(&sema);
|
k_sem_reset(&sema);
|
||||||
|
|
||||||
/* update priority for current thread*/
|
/* update priority for current thread*/
|
||||||
k_thread_priority_set(k_current_get(), K_PRIO_PREEMPT(j));
|
k_thread_priority_set(k_current_get(), K_PRIO_PREEMPT(j));
|
||||||
|
|
||||||
/* create delayed threads with equal preemptive priority*/
|
/* create delayed threads with equal preemptive priority*/
|
||||||
for (int i = 0; i < NUM_THREAD; i++) {
|
for (int i = 0; i < NUM_THREAD; i++) {
|
||||||
tid[i] = k_thread_create(&t[i], tstacks[i], STACK_SIZE,
|
tid[i] = k_thread_create(&t[i], tstacks[i], STACK_SIZE,
|
||||||
thread_tslice, NULL, NULL, NULL,
|
thread_time_slice, NULL, NULL, NULL,
|
||||||
K_PRIO_PREEMPT(j), 0, 0);
|
K_PRIO_PREEMPT(j), 0, 0);
|
||||||
}
|
}
|
||||||
/* enable time slice*/
|
/* enable time slice*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue