mirror of https://github.com/macssh/macssh.git
Increased the max file-descriptors count to 256 (was 64)
This commit is contained in:
parent
a9f3575642
commit
f2ea79176d
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue