Skip to content
Snippets Groups Projects
Commit b9603488 authored by Danny Auble's avatar Danny Auble
Browse files

Print usage if you have a limit or not.

parent 49ba8b43
No related branches found
No related tags found
No related merge requests found
......@@ -57,11 +57,15 @@ static void _print_tres_line(const char *name, uint64_t *limits, uint64_t *used,
goto endit;
for (i=0; i<tres_cnt; i++) {
if (limits[i] == INFINITE64)
/* only print things that have limits or usage */
if (!used && (limits[i] == INFINITE64))
continue;
printf("%s%s=%"PRIu64,
comma ? "," : "", tres_names[i], limits[i]);
printf("%s%s=", comma ? "," : "", tres_names[i]);
if (limits[i] == INFINITE64)
printf("N");
else
printf("%"PRIu64, limits[i]);
if (used) {
uint64_t total_used = used[i];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment