Add config option to use dlmalloc instead of mheap
[vpp.git] / src / vcl / vcl_test_server.c
index 5d37b46..98c36a4 100644 (file)
@@ -25,6 +25,7 @@
 #include <fcntl.h>
 #include <vcl/vcl_test.h>
 #include <sys/epoll.h>
+#include <vppinfra/mem.h>
 
 typedef struct
 {
@@ -310,6 +311,8 @@ main (int argc, char **argv)
   uint16_t port = SOCK_TEST_SERVER_PORT;
   vppcom_endpt_t endpt;
 
+  clib_mem_init_thread_safe (0, 64 << 20);
+
   opterr = 0;
   while ((c = getopt (argc, argv, "6D")) != -1)
     switch (c)