summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorheikki@hundin.mysql.fi <>2003-01-07 21:20:43 +0200
committerheikki@hundin.mysql.fi <>2003-01-07 21:20:43 +0200
commitd1396cc0479984179d633a8b0cb101821f7efd40 (patch)
tree29cee516877162db3f8060821af13e9251042fc6 /innobase
parent4af985f4e3ae37367541571fd5acf1abee7b4ce2 (diff)
downloadmariadb-git-d1396cc0479984179d633a8b0cb101821f7efd40.tar.gz
mem0pool.c:
Remove the warning message that mem allocation spills from the additional mem pool to the OS; this does not hit performance with modern malloc libraries
Diffstat (limited to 'innobase')
-rw-r--r--innobase/mem/mem0pool.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/innobase/mem/mem0pool.c b/innobase/mem/mem0pool.c
index 1c32a4d02a6..382e505b63f 100644
--- a/innobase/mem/mem0pool.c
+++ b/innobase/mem/mem0pool.c
@@ -259,19 +259,6 @@ mem_pool_fill_free_list(
/* We come here when we have run out of space in the
memory pool: */
- if (mem_out_of_mem_err_msg_count % 1000000000 == 0) {
- /* We do not print the message every time: */
-
- ut_print_timestamp(stderr);
-
- fprintf(stderr,
- " InnoDB: Out of memory in additional memory pool.\n"
- "InnoDB: InnoDB will start allocating memory from the OS.\n"
- "InnoDB: You may get better performance if you configure a bigger\n"
- "InnoDB: value in the MySQL my.cnf file for\n"
- "InnoDB: innodb_additional_mem_pool_size.\n");
- }
-
mem_out_of_mem_err_msg_count++;
return(FALSE);