对 `fstat`、`lstat` 或 `stat` 的并行调用是否受限于 linux 上的打开文件限制?
Are parallel calls to `fstat`, `lstat` or `stat` limited by the open file limit on linux?
和标题差不多:
对 fstat
、lstat
或 stat
的并行调用是否受到 linux 上打开文件限制的限制?
问题可能归结为,如果我将答案解释为问题 Is the value of a Linux file descriptor always smaller than the open file limits? 正确。
None 会打开任何文件,因此不会直接受到影响。也就是说,fstat
接受 一个文件描述符,因此您必须打开一个文件描述符(但调用 fstat
的次数无关紧要)。
和标题差不多:
对 fstat
、lstat
或 stat
的并行调用是否受到 linux 上打开文件限制的限制?
问题可能归结为,如果我将答案解释为问题 Is the value of a Linux file descriptor always smaller than the open file limits? 正确。
None 会打开任何文件,因此不会直接受到影响。也就是说,fstat
接受 一个文件描述符,因此您必须打开一个文件描述符(但调用 fstat
的次数无关紧要)。