瀏覽代碼

Remove the FD_SETSIZE check.

This is a hold-over from using select() back in the past.
It now uses libevent, so it no longer (itself) cares about the size of
FD_SETSIZE.
ahc_fix_select
adrian.chadd 10 年之前
父節點
當前提交
ed5c6311ab
共有 1 個檔案被更改,包括 0 行新增7 行删除
  1. +0
    -7
      httperf/src/core.c

+ 0
- 7
httperf/src/core.c 查看文件

@@ -689,13 +689,6 @@ core_init(void)
exit(1);
}

if (rlimit.rlim_max > FD_SETSIZE) {
fprintf(stderr, "%s: warning: open file limit > FD_SETSIZE; "
"limiting max. # of open files to FD_SETSIZE\n",
prog_name);
rlimit.rlim_max = FD_SETSIZE;
}

rlimit.rlim_cur = rlimit.rlim_max;
if (setrlimit(RLIMIT_NOFILE, &rlimit) < 0) {
fprintf(stderr,


Loading…
取消
儲存