diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2016-02-28 17:52:33 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2016-02-28 17:52:33 +0000 |
commit | 1bdbd705993eab79189dff87b69a9cff5c69b17e (patch) | |
tree | 93354adb0a612a635964c8498072087760a0f93b /usr.bin/procstat/procstat_rlimit.c | |
parent | 3f3af790f95027d0c3b859a53eb82ef5d00dc4f8 (diff) | |
download | src-test2-1bdbd705993eab79189dff87b69a9cff5c69b17e.tar.gz src-test2-1bdbd705993eab79189dff87b69a9cff5c69b17e.zip |
Notes
Diffstat (limited to 'usr.bin/procstat/procstat_rlimit.c')
-rw-r--r-- | usr.bin/procstat/procstat_rlimit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/procstat/procstat_rlimit.c b/usr.bin/procstat/procstat_rlimit.c index 5e7d12efc55f..5088c59767e9 100644 --- a/usr.bin/procstat/procstat_rlimit.c +++ b/usr.bin/procstat/procstat_rlimit.c @@ -47,7 +47,7 @@ static struct { const char *name; const char *suffix; -} rlimit_param[14] = { +} rlimit_param[15] = { {"cputime", "sec"}, {"filesize", "B "}, {"datasize", "B "}, @@ -62,9 +62,10 @@ static struct { {"pseudo-terminals", " "}, {"swapuse", "B "}, {"kqueues", " "}, + {"umtxp", " "}, }; -#if RLIM_NLIMITS > 14 +#if RLIM_NLIMITS > 15 #error "Resource limits have grown. Add new entries to rlimit_param[]." #endif |