mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ps: add heap statistics for TLSF (if enabled)
This commit is contained in:
parent
d4732952b2
commit
1777409472
@ -26,6 +26,10 @@
|
||||
#include "xtimer.h"
|
||||
#endif
|
||||
|
||||
#ifdef MODULE_TLSF
|
||||
#include "tlsf.h"
|
||||
#endif
|
||||
|
||||
/* list of states copied from tcb.h */
|
||||
const char *state_names[] = {
|
||||
[STATUS_RUNNING] = "running",
|
||||
@ -112,5 +116,9 @@ void ps(void)
|
||||
#ifdef DEVELHELP
|
||||
printf("\t%5s %-21s|%13s%6s %5i (%5i)\n", "|", "SUM", "|", "|",
|
||||
overall_stacksz, overall_used);
|
||||
# ifdef MODULE_TLSF
|
||||
puts("\nHeap usage:");
|
||||
tlsf_walk_pool(NULL);
|
||||
# endif
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user