Increased the max file-descriptors count to 256 (was 64)

This commit is contained in:
chombier 2002-08-24 10:15:16 +00:00
parent a9f3575642
commit f2ea79176d
1 changed files with 5 additions and 1 deletions

View File

@ -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 @@
// <Definition of class [[GUSIDescriptorTable]]>=
class GUSIDescriptorTable {
public:
enum { SIZE = 64 };
// enum { SIZE = 64 };
enum { SIZE = 256 };
static GUSIDescriptorTable * Instance();