New file.

1998-07-21  Martin Baulig  <martin@home-of-linux.org>

	* doc/ChangeLog: New file.

	* sysdeps/kernel/*.c: Using `glibtop_error_io_r' instead
	of `glibtop_error_r'.

	* sysdeps/kernel/proclist.c: Now using the table () function, too.
	This means that currently the table () function can fetch all
	information for libgtop and you can even unmount /proc !
This commit is contained in:
Martin Baulig
1998-07-21 21:13:13 +00:00
committed by Martin Baulig
parent 5a1fa089f3
commit 7efcda3082
17 changed files with 58 additions and 133 deletions

View File

@@ -33,10 +33,12 @@ static const unsigned long _glibtop_sysdeps_proc_state =
#define NR_STATES 7
void
glibtop_get_proc_state_s (glibtop *server, glibtop_proc_state *buf, pid_t pid)
glibtop_get_proc_state_s (glibtop *server, glibtop_proc_state *buf,
pid_t pid)
{
union table tbl;
static const char states [NR_STATES] = { 'R', 'S', 'D', 'Z', 'T', 'W', '.' };
static const char states [NR_STATES] =
{ 'R', 'S', 'D', 'Z', 'T', 'W', '.' };
unsigned state;
glibtop_init_r (&server, 0, 0);
@@ -50,7 +52,7 @@ glibtop_get_proc_state_s (glibtop *server, glibtop_proc_state *buf, pid_t pid)
}
if (table (TABLE_PROC_STATE, &tbl, &pid))
glibtop_error_r (server, "table(TABLE_PROC_STATE): %s\n", strerror (errno));
glibtop_error_io_r (server, "table(TABLE_PROC_STATE)");
buf->flags = _glibtop_sysdeps_proc_state;