mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Implement ulimit -b for RLIMIT_SBSIZE.
This commit is contained in:
parent
6b3ced11a2
commit
7cde774d15
1 changed files with 4 additions and 1 deletions
|
|
@ -348,6 +348,9 @@ static const struct limits limits[] = {
|
|||
#endif
|
||||
#ifdef RLIMIT_SWAP
|
||||
{ "swap limit", "kbytes", RLIMIT_SWAP, 1024, 'w' },
|
||||
#endif
|
||||
#ifdef RLIMIT_SBSIZE
|
||||
{ "sbsize", "bytes", RLIMIT_SBSIZE, 1, 'b' },
|
||||
#endif
|
||||
{ (char *) 0, (char *)0, 0, 0, '\0' }
|
||||
};
|
||||
|
|
@ -367,7 +370,7 @@ ulimitcmd(argc, argv)
|
|||
struct rlimit limit;
|
||||
|
||||
what = 'f';
|
||||
while ((optc = nextopt("HSatfdsmcnul")) != '\0')
|
||||
while ((optc = nextopt("HSatfdsmcnulb")) != '\0')
|
||||
switch (optc) {
|
||||
case 'H':
|
||||
how = HARD;
|
||||
|
|
|
|||
Loading…
Reference in a new issue