1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

Merge pull request #17891 from kaspar030/print_stack_usage_fmt

sys/test_utils/print_stack_usage: work with small stacks
This commit is contained in:
Marian Buschsieweke 2022-03-31 19:11:26 +02:00 committed by GitHub
commit 3977ff6304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 2 deletions

View File

@ -20,11 +20,37 @@
#include "thread.h"
#include "log.h"
#if MODULE_FMT
#include "fmt.h"
#endif
#if MODULE_FMT
/* fmt's `print_str()` needs very little stack. ~200 total was fine on Cortex-M. */
# define MIN_SIZE (THREAD_STACKSIZE_TINY)
#else
# define MIN_SIZE (THREAD_STACKSIZE_TINY + THREAD_EXTRA_STACKSIZE_PRINTF)
#endif
void print_stack_usage_metric(const char *name, void *stack, unsigned max_size)
{
unsigned free = thread_measure_stack_free(stack);
LOG_INFO("{ \"threads\": [{ \"name\": \"%s\", \"stack_size\": %u, \"stack_used\": %u }]}\n",
name, max_size, max_size - free);
if ((LOG_LEVEL >= LOG_INFO) &&
(thread_get_stacksize(thread_get_active()) >= MIN_SIZE)) {
#if MODULE_FMT
print_str("{ \"threads\": [{ \"name\": \"");
print_str(name);
print_str(", \"stack_size\": ");
print_u32_dec(max_size);
print_str(", \"stack_used\": ");
print_u32_dec(max_size - free);
print_str("}]}\n");
#else
printf(
"{ \"threads\": [{ \"name\": \"%s\", \"stack_size\": %u, \"stack_used\": %u }]}\n",
name, max_size, max_size - free);
#endif
}
}
#ifdef DEVELHELP

View File

@ -4,4 +4,7 @@ USEMODULE += posix_headers
USEMODULE += pthread
CFLAGS += -DMAXTHREADS=8
# include "fmt" so print_stack_usage needs less stack
USEMODULE += fmt
include $(RIOTBASE)/Makefile.include