../
|
win32.h
|
1.1
(19 years ago)
by tdb:
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
|
win32.c
|
1.2
(18 years ago)
by tdb:
Apply fix to Win32 code.
Patch by: "Tim Teulings" <rael@edge.ping.de>
|
vector.h
|
1.7
(20 years ago)
by tdb:
Add header block.
|
vector.c
|
1.9
(20 years ago)
by tdb:
Whitespace tidyup - change spaces to tabs.
|
user_stats.c
|
1.28
(19 years ago)
by tdb:
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
|
tools.h
|
1.26
(19 years ago)
by tdb:
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
|
tools.c
|
1.65
(17 years ago)
by tdb:
Update strlcat and strlcpy to latest OpenBSD versions.
Remove last references to strcat and strcpy.
Patch submitted by: David Love <david@homeunix.org.uk>
|
swap_stats.c
|
1.25
(17 years ago)
by tdb:
Last argument to sysctl is an integer not a pointer. It should be set
to 0 if the preceding argument is NULL.
|
statgrab_deprecated.h
|
1.1
(20 years ago)
by tdb:
Add compatibility code. This provides a working pre-0.10 API for old
applications. To use simply change the #include line to:
#define SG_ENABLE_DEPRECATED
#include <statgrab.h>
This can be disabled at build time completely using --disable-deprecated.
|
statgrab_deprecated.c
|
1.2
(20 years ago)
by tdb:
Fix a couple of includes.
|
statgrab.h
|
1.58
(18 years ago)
by tdb:
Nasty hack to make inclusion in C++ code easier. We seem to be getting
regular reports of problems with C++, and this should fix them.
|
process_stats.c
|
1.82
(18 years ago)
by tdb:
Fix process time_spent on Linux.
Spotted by: Fred Barnes
|
page_stats.c
|
1.23
(19 years ago)
by tdb:
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
|
os_info.c
|
1.24
(18 years ago)
by tdb:
Make sure we always close kstat.
Spotted by: "Javier Donaire" <jyuyu@fraguel.org> (in load_stats.c)
|
network_stats.c
|
1.80
(18 years ago)
by tdb:
When checking the interface up status check the link status as well.
Suggested by: "Vassallo, Michelangelo (Michelangelo)" <vassallo@lucent.com>
|
memory_stats.c
|
1.35
(17 years ago)
by tdb:
Fix memory stats on OpenBSD - they were returning results in the wrong
units.
Patch submitted by: David Love <david@homeunix.org.uk>
|
load_stats.c
|
1.19
(18 years ago)
by tdb:
Make sure we always close kstat.
Spotted by: "Javier Donaire" <jyuyu@fraguel.org> (in load_stats.c)
|
error.c
|
1.17
(19 years ago)
by tdb:
Add WIN32 support via MINGW. We'll need to add stuff to the README file
about what this requires to build.
All the hard work done by: skel
|
disk_stats.c
|
1.85
(18 years ago)
by tdb:
Make sure we always close kstat.
Spotted by: "Javier Donaire" <jyuyu@fraguel.org> (in load_stats.c)
|
cpu_stats.c
|
1.27
(18 years ago)
by tdb:
Attempt to fix cpu stats on solaris. It seems iowait covers all the
various types of wait, including IO and swap. So instead we do:
iowait = cs.cpu_sysinfo.wait[W_IO] + cs.cpu_sysinfo.wait[W_PIO]
swap = cs.cpu_sysinfo.wait[W_SWAP]
I'm also not sure if cs.cpu_sysinfo.cpu[CPU_STATES] means anything.
|
Makefile.am
|
1.34
(17 years ago)
by tdb:
Bump library revision for 0.15 release.
|