zephyr/tests/subsys/debug/thread_analyzer/src/main.c
Daniel Leung 2ef8c4e74f tests: debug/thread_analyzer: add some build tests
Add some build tests for thread_analyzer to catch build issues
at CI.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2024-08-09 17:58:03 +01:00

33 lines
778 B
C

/*
* Copyright (c) 2024 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#define EXTRA_THREAD_STACKSIZE 2048
struct k_thread extra_thread;
K_THREAD_STACK_DEFINE(extra_stack, EXTRA_THREAD_STACKSIZE);
static void thread_entry(void *p1, void *p2, void *p3)
{
/* This thread does not have a name so thread analyzer will display
* the memory address of the thread struct, which is needed for
* the twister console harness to match (even if CONFIG_THREAD_NAME=y).
*/
while (true) {
k_sleep(K_SECONDS(300));
}
}
int main(void)
{
k_thread_create(&extra_thread, extra_stack, EXTRA_THREAD_STACKSIZE,
thread_entry, NULL, NULL, NULL, K_PRIO_PREEMPT(0),
IS_ENABLED(CONFIG_USERSPACE) ? K_USER : 0,
K_MSEC(0));
return 0;
}