diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-14 13:59:54 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-14 13:59:54 +0200 |
commit | dd5b27b164ffd16756218795b4f6c1892ad795d2 (patch) | |
tree | 2f06af87f49bf3f382055a97f137a1d229b2f5bf /vconsole.h | |
parent | 72a7b882581d685b84d3cde0704029af710fc15e (diff) | |
download | vconsole-dd5b27b164ffd16756218795b4f6c1892ad795d2.tar.gz |
visualize cpu load
Diffstat (limited to 'vconsole.h')
-rw-r--r-- | vconsole.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -28,8 +28,11 @@ enum vconsole_cols { /* guests only */ DPTR_COL, // vconsole_domain ID_COL, + RUNNING_COL, STATE_COL, - LOAD_COL, + NR_CPUS_COL, + LOAD_STR_COL, + LOAD_INT_COL, /* beautify */ FOREGROUND_COL, @@ -81,7 +84,7 @@ struct vconsole_connect *connect_init(struct vconsole_window *win, struct vconsole_domain { struct vconsole_connect *conn; char uuid[VIR_UUID_STRING_BUFLEN]; - char idstr[16]; + int id; const char *name; GtkWidget *vbox, *vte, *status; |