Skip to content

Commit

Permalink
Increase default limit of used file descriptors to 512 - needed for F#.
Browse files Browse the repository at this point in the history
  • Loading branch information
hermanzdosilovic committed May 15, 2020
1 parent c43acde commit 9be3ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isolate.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ setup_rlimits(void)
RLIM(FSIZE, (rlim_t)fsize_limit * 1024);

RLIM(STACK, (stack_limit ? (rlim_t)stack_limit * 1024 : RLIM_INFINITY));
RLIM(NOFILE, 256);
RLIM(NOFILE, 512);
RLIM(MEMLOCK, 0);

if (max_processes)
Expand Down

0 comments on commit 9be3ff6

Please sign in to comment.