8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00

Resolved CORE-937.

This commit is contained in:
dimitr 2007-01-25 12:56:16 +00:00
parent 2d3173d511
commit 9ee8ef88cf
2 changed files with 3 additions and 8 deletions

View File

@ -399,11 +399,10 @@
# In Classic mode, the size given is used for the initial allocation. The
# table expands dynamically up to the limit of memory. In SuperServer, the
# initial size is also the final size.
# Default is 96K on Linux and Solaris, 256K on Windows.
#
# Type: integer
#
#LockMemSize = 262144
#LockMemSize = 1048576
#
# Number of semaphores for interprocess communication.
@ -450,7 +449,7 @@
#
# Type: integer
#
#LockHashSlots = 101
#LockHashSlots = 1009
# ----------------------------
#

View File

@ -77,11 +77,7 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
#endif
{TYPE_INTEGER, "ConnectionTimeout", (ConfigValue) 180}, // seconds
{TYPE_INTEGER, "DummyPacketInterval", (ConfigValue) 0}, // seconds
#if defined(WIN_NT) && !defined(SUPERSERVER)
{TYPE_INTEGER, "LockMemSize", (ConfigValue) 1048576}, // bytes
#else
{TYPE_INTEGER, "LockMemSize", (ConfigValue) 262144}, // bytes
#endif
#if defined(SINIXZ) || defined(FREEBSD) || defined(NETBSD)
{TYPE_INTEGER, "LockSemCount", (ConfigValue) 25}, // semaphores
#else
@ -89,7 +85,7 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
#endif
{TYPE_INTEGER, "LockSignal", (ConfigValue) 16}, // signal #
{TYPE_BOOLEAN, "LockGrantOrder", (ConfigValue) true},
{TYPE_INTEGER, "LockHashSlots", (ConfigValue) 101}, // slots
{TYPE_INTEGER, "LockHashSlots", (ConfigValue) 1009}, // slots
{TYPE_INTEGER, "LockAcquireSpins", (ConfigValue) 0},
{TYPE_INTEGER, "EventMemSize", (ConfigValue) 65536}, // bytes
{TYPE_INTEGER, "DeadlockTimeout", (ConfigValue) 10}, // seconds