more info

This commit is contained in:
Doug MacEachern 2007-08-01 13:46:12 +00:00
parent 339c4b1640
commit 9a8c76df14
1 changed files with 2 additions and 2 deletions

View File

@ -15,9 +15,9 @@ int main(int argc, char **argv) {
if (strncmp(kp->ks_name, "kstat_", 6) == 0) {
continue;
}
fprintf(stdout, "%-5s %s\n",
fprintf(stdout, "%-5s %s.%s[%d]\n",
kstat_type_names[kp->ks_type],
kp->ks_name);
kp->ks_module, kp->ks_name, kp->ks_instance);
}
kstat_close(kc);