From f2ea79176d3d701ab5ecacf44e66199483c3d9a8 Mon Sep 17 00:00:00 2001 From: chombier <> Date: Sat, 24 Aug 2002 10:15:16 +0000 Subject: [PATCH] Increased the max file-descriptors count to 256 (was 64) --- GUSI/include/GUSIDescriptor.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/GUSI/include/GUSIDescriptor.h b/GUSI/include/GUSIDescriptor.h index 69aabfe..b24dced 100755 --- a/GUSI/include/GUSIDescriptor.h +++ b/GUSI/include/GUSIDescriptor.h @@ -5,6 +5,9 @@ // % Language : C++ // % // % $Log$ +// % Revision 1.2 2001/03/28 14:03:59 chombier +// % GUSI 2.1.6b2 update +// % // % Revision 1.1.1.1 2001/03/07 09:50:41 chombier // % First Imported. // % @@ -96,7 +99,8 @@ // = class GUSIDescriptorTable { public: - enum { SIZE = 64 }; +// enum { SIZE = 64 }; + enum { SIZE = 256 }; static GUSIDescriptorTable * Instance();