summaryrefslogtreecommitdiff
path: root/misc
Commit message (Collapse)AuthorAgeFilesLines
* 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