diff options
author | unknown <heikki@hundin.mysql.fi> | 2005-01-27 18:53:59 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2005-01-27 18:53:59 +0200 |
commit | 563ebb432882891b9aab845ebb4e96ac363c1270 (patch) | |
tree | 0d3f19372b40d6ff71dc671b298b70807d59b98b /innobase/ut/ut0mem.c | |
parent | 9c02a3514711b13014074864a7a25fb025a43822 (diff) | |
download | mariadb-git-563ebb432882891b9aab845ebb4e96ac363c1270.tar.gz |
ut0mem.c:
Add a note to the error message that is printed when memory allocation fails: 32-bit computers usually have at most 2 GB or 4 GB process memory space
innobase/ut/ut0mem.c:
Add a note to the error message that is printed when memory allocation fails: 32-bit computers usually have at most 2 GB or 4 GB process memory space
Diffstat (limited to 'innobase/ut/ut0mem.c')
-rw-r--r-- | innobase/ut/ut0mem.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/innobase/ut/ut0mem.c b/innobase/ut/ut0mem.c index 6ed61b0b5de..9e026ed0011 100644 --- a/innobase/ut/ut0mem.c +++ b/innobase/ut/ut0mem.c @@ -88,7 +88,9 @@ ut_malloc_low( "InnoDB: Check if you should increase the swap file or\n" "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", + "InnoDB: a big enough maximum process size.\n" + "InnoDB: Note that in most 32-bit computers the process\n" + "InnoDB: memory space is limited to 2 GB or 4 GB.\n", (ulong) n, (ulong) ut_total_allocated_memory, #ifdef __WIN__ (ulong) GetLastError() |