1998-07-30 Martin Baulig <martin@home-of-linux.org> * include/glibtop/*.h: Using `u_int64_t' instead of `unsigned long' and `long' to avoid problems when client is on a 32bit system and the server on a 64bit system.
112 lines
3.0 KiB
C
112 lines
3.0 KiB
C
/* $Id$ */
|
|
|
|
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
This file is part of the Gnome Top Library.
|
|
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
|
|
|
The Gnome Top Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
The Gnome Top Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <locale.h>
|
|
|
|
#include <glibtop.h>
|
|
#include <glibtop/open.h>
|
|
#include <glibtop/close.h>
|
|
#include <glibtop/xmalloc.h>
|
|
|
|
#include <glibtop/parameter.h>
|
|
|
|
#include <glibtop/mountlist.h>
|
|
#include <glibtop/fsusage.h>
|
|
|
|
#ifndef PROFILE_COUNT
|
|
#define PROFILE_COUNT 1000
|
|
#endif
|
|
|
|
int
|
|
main (int argc, char *argv [])
|
|
{
|
|
glibtop_fsusage fsusage;
|
|
glibtop_mountlist mount_list;
|
|
glibtop_mountentry *mount_entries;
|
|
unsigned c, index, method, count, port;
|
|
char buffer [BUFSIZ];
|
|
|
|
setlocale (LC_ALL, "");
|
|
bindtextdomain (PACKAGE, GTOPLOCALEDIR);
|
|
textdomain (PACKAGE);
|
|
|
|
glibtop_init_r (&glibtop_global_server, 0, GLIBTOP_INIT_NO_OPEN);
|
|
|
|
glibtop_get_parameter (GLIBTOP_PARAM_METHOD, &method, sizeof (method));
|
|
|
|
printf ("Method = %d\n", method);
|
|
|
|
count = glibtop_get_parameter (GLIBTOP_PARAM_COMMAND, buffer, BUFSIZ);
|
|
buffer [count] = 0;
|
|
|
|
printf ("Command = '%s'\n", buffer);
|
|
|
|
count = glibtop_get_parameter (GLIBTOP_PARAM_HOST, buffer, BUFSIZ);
|
|
buffer [count] = 0;
|
|
|
|
glibtop_get_parameter (GLIBTOP_PARAM_PORT, &port, sizeof (port));
|
|
|
|
printf ("Host = '%s' - %u\n\n", buffer, port);
|
|
|
|
printf ("sbrk (0) = %p\n\n", sbrk (0));
|
|
|
|
for (c = 0; c < PROFILE_COUNT; c++) {
|
|
mount_entries = glibtop_get_mountlist (&mount_list, 1);
|
|
|
|
glibtop_free (mount_entries);
|
|
}
|
|
|
|
printf ("sbrk (0) = %p\n\n", sbrk (0));
|
|
|
|
mount_entries = glibtop_get_mountlist (&mount_list, 1);
|
|
|
|
if (mount_entries == NULL)
|
|
_exit (1);
|
|
|
|
for (index = 0; index < mount_list.number; index++)
|
|
printf ("Mount_Entry: %-30s %-10s %-20s\n",
|
|
mount_entries [index].mountdir,
|
|
mount_entries [index].type,
|
|
mount_entries [index].devname);
|
|
|
|
printf ("\n\n%-23s %9s %9s %9s %9s %9s\n\n",
|
|
"", "Blocks", "Free", "Avail", "Files", "Free");
|
|
|
|
for (index = 0; index < mount_list.number; index++) {
|
|
glibtop_get_fsusage (&fsusage,
|
|
mount_entries [index].mountdir);
|
|
|
|
printf ("Usage: %-16s %9Lu %9Lu %9Lu %9Lu %9Lu\n",
|
|
mount_entries [index].mountdir,
|
|
fsusage.blocks, fsusage.bfree,
|
|
fsusage.bavail, fsusage.files,
|
|
fsusage.ffree);
|
|
}
|
|
|
|
glibtop_free (mount_entries);
|
|
|
|
printf ("\nsbrk (0) = %p\n\n", sbrk (0));
|
|
|
|
glibtop_close ();
|
|
|
|
exit (0);
|
|
}
|