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

Disable hard limit on number of worker threads. Something more smart should be implemented instead.

This commit is contained in:
hvlad 2010-06-23 13:30:18 +00:00
parent 559306231e
commit e9ac9979b1

View File

@ -277,7 +277,7 @@ inline bool bad_service(ISC_STATUS* status_vector, Rdb* rdb)
class Worker
{
public:
static const int MAX_THREADS = 127; // With 128 gdb shows -128. gcc/gdb bug?
static const int MAX_THREADS = MAX_SLONG;
static const int IDLE_TIMEOUT = 60;
Worker();