diff options
author | Christopher Faylor <me@cgf.cx> | 2000-08-12 04:48:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-08-12 04:48:44 +0000 |
commit | 9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd (patch) | |
tree | 14cc365950ecf7a837508a410cf4dd0fa4ab3b97 /winsup/cygwin/sysconf.cc | |
parent | 86bf05d54094008ba6e8a1c692d4a71879ee6590 (diff) | |
download | cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.tar.gz cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.tar.bz2 cygnal-9015e0fb8c0fbb98f919dd3726ddbc97e46bd9fd.zip |
Rename hinfo -> dtable. Name the former dtable array 'fdtab'.
Diffstat (limited to 'winsup/cygwin/sysconf.cc')
-rw-r--r-- | winsup/cygwin/sysconf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/sysconf.cc b/winsup/cygwin/sysconf.cc index 1d89c0b7e..75bf69f61 100644 --- a/winsup/cygwin/sysconf.cc +++ b/winsup/cygwin/sysconf.cc @@ -27,9 +27,9 @@ sysconf (int in) return 1048576; case _SC_OPEN_MAX: /* FIXME: this returns the current limit which can increase - if and when hinfo::find_unused_handle is called. Perhaps + if and when dtable::find_unused_handle is called. Perhaps we should return NOFILE or OPEN_MAX instead? */ - return dtable.size; + return fdtab.size; case _SC_PAGESIZE: { SYSTEM_INFO b; |