Added read, write. This members provides total read and write in bytes

* include/glibtop/fsusage.h: Added read, write. This members provides
	total read and write in bytes since boot_time.

	* include/glibtop/netload.h: Added hwaddress : provides harware address,
	eg MAC address. mtu, address and subnet are now guint32.
This commit is contained in:
Benoît Dejean
2004-07-17 12:09:01 +00:00
parent e5a855db7c
commit 644b0ebcf5
3 changed files with 25 additions and 10 deletions

View File

@@ -34,8 +34,9 @@ G_BEGIN_DECLS
#define GLIBTOP_FSUSAGE_FILES 3
#define GLIBTOP_FSUSAGE_FFREE 4
#define GLIBTOP_FSUSAGE_BLOCK_SIZE 5
#define GLIBTOP_MAX_FSUSAGE 6
#define GLIBTOP_FSUSAGE_READ 6
#define GLIBTOP_FSUSAGE_WRITE 7
#define GLIBTOP_MAX_FSUSAGE 8
typedef struct _glibtop_fsusage glibtop_fsusage;
@@ -49,6 +50,7 @@ struct _glibtop_fsusage
files, /* Total file nodes. */
ffree; /* Free file nodes. */
guint32 block_size; /* Size of a block in bytes. */
guint64 read, write; /* Total blocks read and written */
};
#define glibtop_get_fsusage(fsusage,disk) glibtop_get_fsusage_l(glibtop_global_server, fsusage, disk)