Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GetNewUnit: increase allowed number of open files to 16384 (#1392)
As of GCC 4.5 and Ifort ~10, the maximum allowed unit number is 2**31-1. We are setting this to 16384, which is the limit on Eagle. However, the OS may impose a limit: - macos -- 256 (change with ulimit -n) - linux -- 1024 typically (change with ulimit -n -- may require elevated permissions on clusters) - windows -- probably 255 (`_setmaxstdio` to change)
- Loading branch information