2000-11-22 Martin Baulig <martin@home-of-linux.org> * lib/glibtop-server.c: New file. * lib/test-backends.c: New file. * lib/Makefile.am: Build test-backends test program. * lib/init-backends.c: Port this to libxml 2. * configure.in: Make this really work. * acinclude.m4: Removed the xml stuff. * Makefile.am (SUBDIRS): Put lib in front of sysdeps and backends.
67 lines
1.8 KiB
C
67 lines
1.8 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
/* $Id$ */
|
|
|
|
/* Copyright (C) 1998-99 Martin Baulig
|
|
This file is part of LibGTop 1.0.
|
|
|
|
Contributed by Martin Baulig <martin@home-of-linux.org>, April 1998.
|
|
|
|
LibGTop is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License,
|
|
or (at your option) any later version.
|
|
|
|
LibGTop 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 General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with LibGTop; see the file COPYING. If not, write to the
|
|
Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <glibtop.h>
|
|
#include <glibtop/backend.h>
|
|
|
|
int
|
|
main (int argc, char *argv [])
|
|
{
|
|
glibtop_client *client;
|
|
glibtop_backend *backend_common;
|
|
glibtop_backend *backend_sysdeps;
|
|
GError *error = NULL;
|
|
|
|
g_type_init ();
|
|
|
|
glibtop_init_backends ();
|
|
|
|
client = glibtop_client_new ();
|
|
|
|
backend_common = glibtop_open_backend_l (client, "glibtop-backend-common",
|
|
0, NULL, &error);
|
|
|
|
g_message (G_STRLOC ": backend = %p (%p)", backend_common, error);
|
|
|
|
if (error != NULL) {
|
|
glibtop_client_propagate_error (client, error);
|
|
g_error_free (error);
|
|
error = NULL;
|
|
}
|
|
|
|
backend_sysdeps = glibtop_open_backend_l (client, "glibtop-backend-sysdeps",
|
|
0, NULL, &error);
|
|
|
|
g_message (G_STRLOC ": backend = %p (%p)", backend_sysdeps, error);
|
|
|
|
if (error != NULL) {
|
|
glibtop_client_propagate_error (client, error);
|
|
g_error_free (error);
|
|
error = NULL;
|
|
}
|
|
|
|
exit (0);
|
|
}
|