diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-01-07 21:20:43 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-01-07 21:20:43 +0200 |
commit | 9ac310e1b85d2b2f2e83e8c7ca4af2e7086bb0b4 (patch) | |
tree | 29cee516877162db3f8060821af13e9251042fc6 /innobase/mem | |
parent | 4b7013dd20da3e787f0c4c3a861704684cfdc96f (diff) | |
download | mariadb-git-9ac310e1b85d2b2f2e83e8c7ca4af2e7086bb0b4.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
innobase/mem/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/mem')
-rw-r--r-- | innobase/mem/mem0pool.c | 13 |
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); |