zephyr/tests/kernel/threads/thread_stack
Kumar Gala a1195ae39b smp: Move for loops to use arch_num_cpus instead of CONFIG_MP_NUM_CPUS
Change for loops of the form:

for (i = 0; i < CONFIG_MP_NUM_CPUS; i++)
   ...

to

unsigned int num_cpus = arch_num_cpus();
for (i = 0; i < num_cpus; i++)
   ...

We do the call outside of the for loop so that it only happens once,
rather than on every iteration.

Signed-off-by: Kumar Gala <kumar.gala@intel.com>
2022-10-21 13:14:58 +02:00
..
src smp: Move for loops to use arch_num_cpus instead of CONFIG_MP_NUM_CPUS 2022-10-21 13:14:58 +02:00
CMakeLists.txt
prj_armv8m_mpu_stack_guard.conf kernel: thread: move thread stack testcase to new ztest 2022-08-12 17:39:03 +02:00
prj.conf kernel: thread: move thread stack testcase to new ztest 2022-08-12 17:39:03 +02:00
testcase.yaml