]> git.droids-corp.org - dpdk.git/blobdiff - examples/vm_power_manager/guest_cli/main.c
sched: remove useless malloc in PIE data init
[dpdk.git] / examples / vm_power_manager / guest_cli / main.c
index 4e17f7fb90511283b072bc61ec3ca091d600e472..9da50020ac2ccdff1c0599e777b16d3530253ebd 100644 (file)
@@ -13,6 +13,7 @@
 #include <rte_debug.h>
 #include <rte_eal.h>
 #include <rte_log.h>
+#include <rte_string_fns.h>
 
 #include "vm_power_cli_guest.h"
 #include "parse.h"
@@ -200,5 +201,8 @@ main(int argc, char **argv)
        }
        run_cli(NULL);
 
+       /* clean up the EAL */
+       rte_eal_cleanup();
+
        return 0;
 }