summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorheikki@donna.mysql.fi <>2002-01-04 04:12:37 +0200
committerheikki@donna.mysql.fi <>2002-01-04 04:12:37 +0200
commit05a18c4c6742bc2d36ac884585b3ada1c2f2b04b (patch)
tree2074e8b4b9bd5aa73293505c01400df2cb9a99a1 /innobase
parent9f5e564fc34fe1bf173333a249bef7a96a4c6ba7 (diff)
downloadmariadb-git-05a18c4c6742bc2d36ac884585b3ada1c2f2b04b.tar.gz
ut0mem.c:
Better error message if we hit the max process size in FreeBSD
Diffstat (limited to 'innobase')
-rw-r--r--innobase/ut/ut0mem.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/innobase/ut/ut0mem.c b/innobase/ut/ut0mem.c
index 84a79d39556..79351ff120f 100644
--- a/innobase/ut/ut0mem.c
+++ b/innobase/ut/ut0mem.c
@@ -81,8 +81,10 @@ ut_malloc_low(
"InnoDB: by InnoDB %lu bytes. Operating system errno: %d\n"
"InnoDB: Cannot continue operation!\n"
"InnoDB: Check if you should increase the swap file or\n"
- "InnoDB: ulimits of your operating system.\n",
- n, ut_total_allocated_memory, errno);
+ "InnoDB: ulimits of your operating system.\n"
+ "InnoDB: On FreeBSD check you have compiled the OS with\n"
+ "InnoDB: a big enough maximum process size.\n",
+ n, ut_total_allocated_memory, errno);
os_fast_mutex_unlock(&ut_list_mutex);