summaryrefslogtreecommitdiff
path: root/misc
Commit message (Collapse)AuthorAgeFilesLines
* Bumped version number to 2.14.6.Benoît Dejean2007-01-111-2/+0
| | | | | | | | | | | | | | 2007-01-11 Benoît Dejean <benoit@placenet.org> * configure.in: Bumped version number to 2.14.6. * *: Got rid of CVS admin files. svn path=/trunk/; revision=2545
* whitespace clean up.Benoît Dejean2004-06-091-1/+1
| | | | * *.{c,h} : whitespace clean up.
* The indentation in LibGTop was done with the following command:Martin Baulig1999-12-262-0/+13
| | | | | | | | find . -name \*.[ch] | xargs -i emacs -batch {} \ -l /gnome/compile/libgtop/misc/format.el -f save-buffer December 26, 1999 Martin
* Added first timings for my new sysctl () based kernel interface.Martin Baulig1999-03-271-0/+27
|
* This statistics were made on a PPRO 200 running Linux 2.2.1Martin Baulig1999-03-241-0/+26
| | | | reading everything from /proc while the system was idle.
* Added a few instructions on how to port LibGTop to Solaris.Martin Baulig1999-02-191-0/+81
| | | | | | | 1999-02-19 Martin Baulig <martin@home-of-linux.org> * misc/porting-libgtop.txt: Added a few instructions on how to port LibGTop to Solaris.
* Added new feature to get PPP/ISDN support:Martin Baulig1998-10-254-0/+175
enum { GLIBTOP_PPP_STATE_UNKNOWN = 0, GLIBTOP_PPP_STATE_HANGUP, GLIBTOP_PPP_STATE_ONLINE }; struct _glibtop_ppp { u_int64_t flags, state, /* GLIBTOP_PPP_STATE */ bytes_in, /* GLIBTOP_PPP_BYTES_IN */ bytes_out; /* GLIBTOP_PPP_BYTES_OUT */ }; Currently only implemented in the FreeBSD port with ISDN via I4B. - Martin