diff --git a/ChangeLog b/ChangeLog index 4dd754d5..f72db0c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-07-03 Benoît Dejean + + * sysdeps/names/fsusage.c: Added missing fsusage names. + 2004-07-03 Benoît Dejean * glibtop.h: Moved foward declaration of glibtop to break circular diff --git a/sysdeps/names/fsusage.c b/sysdeps/names/fsusage.c index d4620405..a9596cc1 100644 --- a/sysdeps/names/fsusage.c +++ b/sysdeps/names/fsusage.c @@ -26,13 +26,13 @@ const char *glibtop_names_fsusage [GLIBTOP_MAX_FSUSAGE] = { - "blocks", "bfree", "bavail", "files", "ffree" + "blocks", "bfree", "bavail", "files", "ffree", "block_size" }; const unsigned glibtop_types_fsusage [GLIBTOP_MAX_FSUSAGE] = { GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG, - GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG + GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_ULONG, GLIBTOP_TYPE_INT }; const char *glibtop_labels_fsusage [GLIBTOP_MAX_FSUSAGE] = @@ -41,7 +41,8 @@ const char *glibtop_labels_fsusage [GLIBTOP_MAX_FSUSAGE] = N_("Free blocks"), N_("Available blocks"), N_("Total file nodes"), - N_("Free file nodes") + N_("Free file nodes"), + N_("Block size") }; const char *glibtop_descriptions_fsusage [GLIBTOP_MAX_FSUSAGE] = @@ -50,5 +51,6 @@ const char *glibtop_descriptions_fsusage [GLIBTOP_MAX_FSUSAGE] = N_("Free blocks available to the superuser"), N_("Free blocks available to non-superusers"), N_("Total file nodes"), - N_("Free file nodes") + N_("Free file nodes"), + N_("Block size") };