refactor: change the disk io api to accept device instead of port struct
[lunaix-os.git] / lunaix-os / includes / lunaix / mm / valloc.h
index d5d0c7530b5e97d08e225c33e8141f6164f8ede2..9be750c4e023a8e039d76256b9e6acefcdc91731 100644 (file)
@@ -5,7 +5,10 @@ void*
 valloc(unsigned int size);
 
 void*
-vcalloc(unsigned int size);
+vzalloc(unsigned int size);
+
+void*
+vcalloc(unsigned int size, unsigned int count);
 
 void
 vfree(void* ptr);
@@ -14,7 +17,7 @@ void*
 valloc_dma(unsigned int size);
 
 void*
-vcalloc_dma(unsigned int size);
+vzalloc_dma(unsigned int size);
 
 void
 vfree_dma(void* ptr);