值得一提的是,Beginning Linux Programming 的第 4 版于 2007 年出版;它的一部分可能有点过时了。 (这不是对这本书的批评,我没有读过。)
至少在 Linux 系统上,OPEN_MAX 似乎已被弃用。原因似乎是可以同时打开的文件的最大数量不固定,因此扩展为整数文字的宏不是获取该信息的好方法。
还有另一个宏FOPEN_MAX 应该是类似的;我想不出为什么OPEN_MAX 和FOPEN_MAX(如果它们都已定义)应该具有不同值的原因。但是FOPEN_MAX 是 C 语言标准强制要求的,所以系统没有不定义它的选项。 C标准说FOPEN_MAX
扩展为一个整数常量表达式,它是最小文件数
实现保证可以同时开启
(如果“最小”这个词令人困惑,这是一个程序可以同时打开至少那么多文件的保证。)
如果你想要当前可以打开的最大文件数,看看sysconf()函数;在我的系统上,sysconf(_SC_OPEN_MAX) 返回 1024。(sysconf() 手册页指的是符号 OPEN_MAX。这不是计数,而是 sysconf() 识别的值。而且它没有在我的系统上定义。)
我在我的 Ubuntu 系统上搜索了OPEN_MAX(单词匹配,所以不包括FOPEN_MAX),发现了以下内容(这些显然只是简短的摘录):
/usr/include/X11/Xos.h:
# ifdef __GNU__
# define PATH_MAX 4096
# define MAXPATHLEN 4096
# define OPEN_MAX 256 /* We define a reasonable limit. */
# endif
/usr/include/i386-linux-gnu/bits/local_lim.h:
/* The kernel header pollutes the namespace with the NR_OPEN symbol
and defines LINK_MAX although filesystems have different maxima. A
similar thing is true for OPEN_MAX: the limit can be changed at
runtime and therefore the macro must not be defined. Remove this
after including the header if necessary. */
#ifndef NR_OPEN
# define __undef_NR_OPEN
#endif
#ifndef LINK_MAX
# define __undef_LINK_MAX
#endif
#ifndef OPEN_MAX
# define __undef_OPEN_MAX
#endif
#ifndef ARG_MAX
# define __undef_ARG_MAX
#endif
/usr/include/i386-linux-gnu/bits/xopen_lim.h:
/* We do not provide fixed values for
ARG_MAX Maximum length of argument to the `exec' function
including environment data.
ATEXIT_MAX Maximum number of functions that may be registered
with `atexit'.
CHILD_MAX Maximum number of simultaneous processes per real
user ID.
OPEN_MAX Maximum number of files that one process can have open
at anyone time.
PAGESIZE
PAGE_SIZE Size of bytes of a page.
PASS_MAX Maximum number of significant bytes in a password.
We only provide a fixed limit for
IOV_MAX Maximum number of `iovec' structures that one process has
available for use with `readv' or writev'.
if this is indeed fixed by the underlying system.
*/