summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorosku@127.(none) <>2005-09-28 14:26:33 +0300
committerosku@127.(none) <>2005-09-28 14:26:33 +0300
commitd440270dcda7385d85ba98e8b434058504484115 (patch)
tree38a9308c72dc1e24175d3151a2b9e1c5445534fd /innobase
parentacdc193a45a7f2952867a3d3f2373dd42e887ef2 (diff)
downloadmariadb-git-d440270dcda7385d85ba98e8b434058504484115.tar.gz
InnoDB: Remove compiler warnings.
Diffstat (limited to 'innobase')
-rw-r--r--innobase/os/os0proc.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/innobase/os/os0proc.c b/innobase/os/os0proc.c
index 167aed93de7..24bb007e504 100644
--- a/innobase/os/os0proc.c
+++ b/innobase/os/os0proc.c
@@ -292,6 +292,9 @@ os_awe_allocate_physical_mem(
return(TRUE);
#else
+ UT_NOT_USED(n_megabytes);
+ UT_NOT_USED(page_info);
+
return(FALSE);
#endif
}
@@ -349,6 +352,8 @@ os_awe_allocate_virtual_mem_window(
return(ptr);
#else
+ UT_NOT_USED(size);
+
return(NULL);
#endif
}
@@ -476,6 +481,10 @@ os_awe_map_physical_mem_to_window(
return(TRUE);
#else
+ UT_NOT_USED(ptr);
+ UT_NOT_USED(n_mem_pages);
+ UT_NOT_USED(page_info);
+
return(FALSE);
#endif
}