memory: malloc now supports multi process
[dpdk.git] / lib / librte_eal / common / include / rte_malloc_heap.h
index 3389f37..d5ea63e 100644 (file)
 #define _RTE_MALLOC_HEAP_H_
 
 #include <stddef.h>
+#include <rte_spinlock.h>
 
 enum heap_state {
        NOT_INITIALISED = 0,
+       INITIALISING,
        INITIALISED
 };