global: Correct extern K_KERNEL_STACK_ARRAY_DEFINE usage
This commit corrects all `extern K_KERNEL_STACK_ARRAY_DEFINE` macro usages to use the `K_KERNEL_STACK_ARRAY_DECLARE` macro instead. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
828a56e906
commit
33f87408c4
3 changed files with 6 additions and 6 deletions
|
@ -184,8 +184,8 @@ static void shell_stack_dump(const struct k_thread *thread, void *user_data)
|
|||
size, unused, size - unused, size, pcnt);
|
||||
}
|
||||
|
||||
extern K_KERNEL_STACK_ARRAY_DEFINE(z_interrupt_stacks, CONFIG_MP_NUM_CPUS,
|
||||
CONFIG_ISR_STACK_SIZE);
|
||||
K_KERNEL_STACK_ARRAY_DECLARE(z_interrupt_stacks, CONFIG_MP_NUM_CPUS,
|
||||
CONFIG_ISR_STACK_SIZE);
|
||||
|
||||
static int cmd_kernel_stacks(const struct shell *shell,
|
||||
size_t argc, char **argv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue