Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
validate/validate: Linux rlimits extend the POSIX rlimits
So don't duplicate those values. Also drop RLIMIT_LOCKS, which the man page documents as an obsolete-by-Linux-2.6 value [1]. A quick way to get a set of strings from the man page is: $ curl -s 'https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/plain/man2/getrlimit.2?h=man-pages-4.13' | > sed -n 's/^\.BR\? \(RLIMIT_[^ ]*\)/\1/p' | sort | uniq Also rename the old default*Rlimits, because these are valid-value arrays, not defaults. [1]: https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getrlimit.2?h=man-pages-4.13#n209 Signed-off-by: W. Trevor King <[email protected]>
- Loading branch information