Add additional newline to debug.mutex.prof.stats header, so that

column names are printed exactly above the columns.
This commit is contained in:
Gleb Smirnoff 2005-04-08 14:14:09 +00:00
parent 0ec44eb5e2
commit 4f20185860
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144806

View File

@ -193,7 +193,7 @@ dump_mutex_prof_stats(SYSCTL_HANDLER_ARGS)
retry_sbufops:
sb = sbuf_new(NULL, NULL, MPROF_SBUF_SIZE * multiplier, SBUF_FIXEDLEN);
sbuf_printf(sb, "%6s %12s %11s %5s %12s %12s %s\n",
sbuf_printf(sb, "\n%6s %12s %11s %5s %12s %12s %s\n",
"max", "total", "count", "avg", "cnt_hold", "cnt_lock", "name");
/*
* XXX this spinlock seems to be by far the largest perpetrator