mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/test_utils/print_stack_usage: reduce MIN_SIZE
for fmt
This commit is contained in:
parent
f31d5a93b5
commit
c77b104c2d
@ -26,7 +26,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if MODULE_FMT
|
||||||
|
# define MIN_SIZE (THREAD_STACKSIZE_TINY)
|
||||||
|
#else
|
||||||
# define MIN_SIZE (THREAD_STACKSIZE_TINY + THREAD_EXTRA_STACKSIZE_PRINTF)
|
# define MIN_SIZE (THREAD_STACKSIZE_TINY + THREAD_EXTRA_STACKSIZE_PRINTF)
|
||||||
|
#endif
|
||||||
|
|
||||||
void print_stack_usage_metric(const char *name, void *stack, unsigned max_size)
|
void print_stack_usage_metric(const char *name, void *stack, unsigned max_size)
|
||||||
{
|
{
|
||||||
@ -37,7 +41,7 @@ void print_stack_usage_metric(const char *name, void *stack, unsigned max_size)
|
|||||||
#if MODULE_FMT
|
#if MODULE_FMT
|
||||||
print_str("{ \"threads\": [{ \"name\": \"");
|
print_str("{ \"threads\": [{ \"name\": \"");
|
||||||
print_str(name);
|
print_str(name);
|
||||||
print_str(", \"stack_size\": ");
|
print_str("\", \"stack_size\": ");
|
||||||
print_u32_dec(max_size);
|
print_u32_dec(max_size);
|
||||||
print_str(", \"stack_used\": ");
|
print_str(", \"stack_used\": ");
|
||||||
print_u32_dec(max_size - free);
|
print_u32_dec(max_size - free);
|
||||||
|
Loading…
Reference in New Issue
Block a user