We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17bb600 commit c33717cCopy full SHA for c33717c
app/proc-info/main.c
@@ -19,6 +19,7 @@
19
#include <rte_common.h>
20
#include <rte_debug.h>
21
#include <rte_ethdev.h>
22
+#include <rte_malloc.h>
23
#include <rte_memory.h>
24
#include <rte_memzone.h>
25
#include <rte_launch.h>
@@ -637,6 +638,10 @@ meminfo_display(void)
637
638
rte_memzone_dump(stdout);
639
printf("---------- END_MEMORY_ZONES -----------\n");
640
641
+ printf("---------- MALLOC_HEAP_DUMP -----------\n");
642
+ rte_malloc_dump_heaps(stdout);
643
+ printf("-------- END_MALLOC_HEAP_DUMP ---------\n");
644
+
645
printf("------------- TAIL_QUEUES -------------\n");
646
rte_dump_tailq(stdout);
647
printf("---------- END_TAIL_QUEUES ------------\n");
0 commit comments