From 2760ce3d1f62209a0aa7d465276451f190089c1d Mon Sep 17 00:00:00 2001 From: mapopa Date: Sun, 14 Sep 2014 16:25:52 +0000 Subject: [PATCH] Apply patch from 2.5 branch related to #CORE-3400 http://sourceforge.net/p/firebird/mailman/message/27734396/ --- src/common/isc_sync.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/isc_sync.cpp b/src/common/isc_sync.cpp index 7c5857c9e4..1adc2618f5 100644 --- a/src/common/isc_sync.cpp +++ b/src/common/isc_sync.cpp @@ -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