feat: sector rwm ops test code
[lunaix-os.git] / lunaix-os / includes / lunaix / mm / valloc.h
index ee646e5f66505cd7e23c0afdb6a38601c12a5df9..d5d0c7530b5e97d08e225c33e8141f6164f8ede2 100644 (file)
@@ -4,9 +4,21 @@
 void*
 valloc(unsigned int size);
 
+void*
+vcalloc(unsigned int size);
+
 void
 vfree(void* ptr);
 
+void*
+valloc_dma(unsigned int size);
+
+void*
+vcalloc_dma(unsigned int size);
+
+void
+vfree_dma(void* ptr);
+
 void
 valloc_init();