Merge branch 'master' into vfs-dev
[lunaix-os.git] / lunaix-os / includes / lunaix / mm / valloc.h
index ee646e5f66505cd7e23c0afdb6a38601c12a5df9..9be750c4e023a8e039d76256b9e6acefcdc91731 100644 (file)
@@ -4,9 +4,24 @@
 void*
 valloc(unsigned int size);
 
+void*
+vzalloc(unsigned int size);
+
+void*
+vcalloc(unsigned int size, unsigned int count);
+
 void
 vfree(void* ptr);
 
+void*
+valloc_dma(unsigned int size);
+
+void*
+vzalloc_dma(unsigned int size);
+
+void
+vfree_dma(void* ptr);
+
 void
 valloc_init();