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

Apply patch from 2.5 branch related to #CORE-3400 http://sourceforge.net/p/firebird/mailman/message/27734396/

This commit is contained in:
mapopa 2014-09-14 16:25:52 +00:00
parent 4b5b82615b
commit 2760ce3d1f

View File

@ -642,8 +642,8 @@ namespace {
public:
const static int N_FILES = 128;
const static int N_SETS = 256;
#if defined(DEV_BUILD) || defined(FREEBSD)
const static int SEM_PER_SET = 4; // force multiple sets allocation || work with default freebsd kernel
#if defined(DEV_BUILD)
const static int SEM_PER_SET = 4; // force multiple sets allocation
#else
const static int SEM_PER_SET = 31; // hard limit for some old systems, might set to 32
#endif