summaryrefslogtreecommitdiff
path: root/include/glibtop/loadavg.h
diff options
context:
space:
mode:
authorGerman Poo-Caaman~o <gpoo@ubiobio.cl>2006-04-18 20:17:25 +0000
committerGermán Poó Caamaño <gpoo@src.gnome.org>2006-04-18 20:17:25 +0000
commit05b94bd263c3b91c94508cb0d1299c80f4de169f (patch)
treeef30f2d42e2ebd2d0bdc76e330700a9525802bfa /include/glibtop/loadavg.h
parent956527cb57d65c07599fb8d3e701133b0fdfd814 (diff)
downloadlibgtop-05b94bd263c3b91c94508cb0d1299c80f4de169f.tar.gz
Changed struct's definitions to be one type-one member. To avoid problems
2006-04-18 German Poo-Caaman~o <gpoo@ubiobio.cl> * /include/glibtop/cpu.h: * /include/glibtop/fsusage.h: * /include/glibtop/loadavg.h: * /include/glibtop/mem.h: * /include/glibtop/mountlist.h: * /include/glibtop/msg_limits.h: * /include/glibtop/netload.h: * /include/glibtop/ppp.h: * /include/glibtop/procargs.h: * /include/glibtop/prockernel.h: * /include/glibtop/proclist.h: * /include/glibtop/procmap.h: * /include/glibtop/procmem.h: * /include/glibtop/procopenfiles.h: * /include/glibtop/procsegment.h: * /include/glibtop/procsignal.h: * /include/glibtop/procstate.h: * /include/glibtop/proctime.h: * /include/glibtop/procuid.h: * /include/glibtop/sem_limits.h: * /include/glibtop/shm_limits.h: * /include/glibtop/swap.h: * /include/glibtop/sysdeps.h: * /include/glibtop/uptime.h: Changed struct's definitions to be one type-one member. To avoid problems with any further gtk-doc's implementation.
Diffstat (limited to 'include/glibtop/loadavg.h')
-rw-r--r--include/glibtop/loadavg.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/glibtop/loadavg.h b/include/glibtop/loadavg.h
index 72c8eb32..020b73ae 100644
--- a/include/glibtop/loadavg.h
+++ b/include/glibtop/loadavg.h
@@ -42,9 +42,9 @@ struct _glibtop_loadavg
{
guint64 flags;
double loadavg [3]; /* GLIBTOP_LOADAVG_LOADAVG */
- guint64 nr_running, /* GLIBTOP_LOADAVG_NR_RUNNING */
- nr_tasks, /* GLIBTOP_LOADAVG_NR_TASKS */
- last_pid; /* GLIBTOP_LOADAVG_LAST_PID */
+ guint64 nr_running; /* GLIBTOP_LOADAVG_NR_RUNNING */
+ guint64 nr_tasks; /* GLIBTOP_LOADAVG_NR_TASKS */
+ guint64 last_pid; /* GLIBTOP_LOADAVG_LAST_PID */
};
void glibtop_get_loadavg(glibtop_loadavg *buf);