Updated.
* reference.texi: Updated.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2005-01-03 Benoît Dejean <TazForEver@dlfp.org>
|
||||||
|
|
||||||
|
* reference.texi: Updated.
|
||||||
|
|
||||||
2004-12-04 Benoît Dejean <tazforever@dlfp.org>
|
2004-12-04 Benoît Dejean <tazforever@dlfp.org>
|
||||||
|
|
||||||
* reference.texi: Updated.
|
* reference.texi: Updated.
|
||||||
|
@@ -56,18 +56,19 @@ struct _glibtop_cpu
|
|||||||
nice,
|
nice,
|
||||||
sys,
|
sys,
|
||||||
idle,
|
idle,
|
||||||
|
iowait,
|
||||||
|
irq,
|
||||||
|
softirq,
|
||||||
frequency,
|
frequency,
|
||||||
xcpu_total [GLIBTOP_NCPU],
|
xcpu_total [GLIBTOP_NCPU],
|
||||||
xcpu_user [GLIBTOP_NCPU],
|
xcpu_user [GLIBTOP_NCPU],
|
||||||
xcpu_nice [GLIBTOP_NCPU],
|
xcpu_nice [GLIBTOP_NCPU],
|
||||||
xcpu_sys [GLIBTOP_NCPU],
|
xcpu_sys [GLIBTOP_NCPU],
|
||||||
@ifset LIBGTOP-1-1
|
|
||||||
xcpu_idle [GLIBTOP_NCPU],
|
xcpu_idle [GLIBTOP_NCPU],
|
||||||
|
xcpu_iowait [GLIBTOP_NCPU],
|
||||||
|
xcpu_irq [GLIBTOP_NCPU],
|
||||||
|
xcpu_softirq [GLIBTOP_NCPU],
|
||||||
xcpu_flags;
|
xcpu_flags;
|
||||||
@end ifset
|
|
||||||
@ifclear LIBGTOP-1-1
|
|
||||||
xcpu_idle [GLIBTOP_NCPU];
|
|
||||||
@end ifclear
|
|
||||||
@};
|
@};
|
||||||
@end cartouche
|
@end cartouche
|
||||||
@end example
|
@end example
|
||||||
@@ -92,25 +93,33 @@ Number of clock ticks the system spent in system mode.
|
|||||||
@item idle
|
@item idle
|
||||||
Number of clock ticks the system spent in the idle task.
|
Number of clock ticks the system spent in the idle task.
|
||||||
|
|
||||||
|
@item iowait
|
||||||
|
Number of clock ticks the system spent waiting for I/O to complete.
|
||||||
|
|
||||||
|
@item irq
|
||||||
|
Number of clock ticks the system spent servicing interrupts.
|
||||||
|
|
||||||
|
@item softirq
|
||||||
|
Number of clock ticks the system spent servicing softirqs.
|
||||||
|
|
||||||
@item frequency
|
@item frequency
|
||||||
Tick frequency (default is 100).
|
Tick frequency (default is 100).
|
||||||
|
|
||||||
@end table
|
@end table
|
||||||
|
|
||||||
The @samp{xcpu_} values are for SMP systems - they are the same than
|
The @samp{xcpu_} values are for SMP systems - they are the same than
|
||||||
@code{total}, @code{user}, @code{nice}, @code{sys} and @code{idle}
|
@code{total}, @code{user}, @code{nice}, @code{sys}, @code{idle},
|
||||||
|
@code{iowait}, @code{irq} and @code{softirq}
|
||||||
except that they are arrays of @code{GLIBTOP_NCPU} (defined in
|
except that they are arrays of @code{GLIBTOP_NCPU} (defined in
|
||||||
@file{<glibtop/limits.h>}) elements and contain one value for each CPU
|
@file{<glibtop/limits.h>}) elements and contain one value for each CPU
|
||||||
in the system.
|
in the system.
|
||||||
|
|
||||||
@ifset LIBGTOP-1-1
|
|
||||||
@table @code
|
@table @code
|
||||||
@item xcpu_flags
|
@item xcpu_flags
|
||||||
This is interpreted as a bit-field: on systems like Solaris, not all CPUs
|
This is interpreted as a bit-field: on systems like Solaris, not all CPUs
|
||||||
need to be running all the time, so we set the corresponding bit for each
|
need to be running all the time, so we set the corresponding bit for each
|
||||||
CPU that is currently running.
|
CPU that is currently running.
|
||||||
@end table
|
@end table
|
||||||
@end ifset
|
|
||||||
|
|
||||||
Please note that all of the cpu values are absolute values measured in
|
Please note that all of the cpu values are absolute values measured in
|
||||||
certain units (to get seconds, divide them by @code{frequency}) since system
|
certain units (to get seconds, divide them by @code{frequency}) since system
|
||||||
@@ -1051,16 +1060,7 @@ struct _glibtop_proc_segment
|
|||||||
dirty_size,
|
dirty_size,
|
||||||
start_code,
|
start_code,
|
||||||
end_code,
|
end_code,
|
||||||
start_data,
|
start_stack;
|
||||||
end_data,
|
|
||||||
start_brk,
|
|
||||||
end_brk,
|
|
||||||
start_stack,
|
|
||||||
start_mmap,
|
|
||||||
arg_start,
|
|
||||||
arg_end,
|
|
||||||
env_start,
|
|
||||||
env_end;
|
|
||||||
@};
|
@};
|
||||||
@end cartouche
|
@end cartouche
|
||||||
@end example
|
@end example
|
||||||
|
Reference in New Issue
Block a user