소스 검색

Limit max open fds to 20K.

master
Arun Prakash Jana 7 년 전
부모
커밋
be77094235
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일9개의 추가작업 그리고 3개의 파일을 삭제
  1. +9
    -3
      nnn.c

+ 9
- 3
nnn.c 파일 보기

@@ -246,10 +246,16 @@ max_openfds()
rl.rlim_cur = rl.rlim_max;

/* Return ~75% of max possible */
if (setrlimit(RLIMIT_NOFILE, &rl) == 0)
return (rl.rlim_max - (rl.rlim_max >> 2));
if (setrlimit(RLIMIT_NOFILE, &rl) == 0) {
limit = rl.rlim_max - (rl.rlim_max >> 2);
/*
* 20K is arbitrary> If the limit is set to max possible
* value, the memory usage increases to more than double.
*/
return limit > 20480 ? 20480 : limit;
}

return 32;
return limit;
}

/*


불러오는 중...
취소
저장