Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency with other naming

This commit is contained in:
Gregory Nutt
2014-08-31 16:24:24 -06:00
parent 7aefc6d3a1
commit 9aca0c1c84
35 changed files with 54 additions and 54 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ FAR void *rammap(int fd, size_t length, off_t offset)
/* Allocate a region of memory of the specified size */
alloc = (FAR uint8_t *)kumalloc(sizeof(struct fs_rammap_s) + length);
alloc = (FAR uint8_t *)kumm_malloc(sizeof(struct fs_rammap_s) + length);
if (!alloc)
{
fdbg("Region allocation failed, length: %d\n", (int)length);