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
33 lines
885 B
Plaintext
33 lines
885 B
Plaintext
1998-10-25 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* ppp.c: New file. Currently empty.
|
|
|
|
1998-10-11 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* procdata.c: Removed this obsolete file.
|
|
|
|
1998-10-02 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* proclist.c (glibtop_init_proclist_s): You can now also use the
|
|
`GLIBTOP_EXCLUDE_*' flags for the `which' parameter.
|
|
|
|
1998-10-01 Martin Baulig <baulig@Stud.Informatik.uni-trier.de>
|
|
|
|
* proclist.c (glibtop_init_proclist_s): Honor the `which' parameter
|
|
to select which processes to fetch.
|
|
|
|
1998-09-12 Martin Baulig <martin@home-of-linux.org>
|
|
|
|
* sysinfo.c: New file.
|
|
|
|
1998-09-09 Martin Baulig <baulig@Stud.Informatik.uni-trier.de>
|
|
|
|
* proctime.c (glibtop_get_proc_time_s): Added SMP support.
|
|
|
|
* open.c (glibtop_init_s): Initialize `ncpu' on SMP systems.
|
|
|
|
* cpu.c (glibtop_get_cpu_s): Added SMP support.
|
|
|
|
* ChangeLog: New file.
|
|
|