summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBenoît Dejean <benoit@placenet.org>2007-04-27 17:37:47 +0000
committerBenoît Dejean <bdejean@src.gnome.org>2007-04-27 17:37:47 +0000
commitcd389851b961691507d80968d64d9e275350a7b4 (patch)
treef96d5a7e31aa8353db2f157da326cb6017e647cc /include
parent7ee8dae9c505fe87ecbb46080935ba058fb24452 (diff)
downloadlibgtop-cd389851b961691507d80968d64d9e275350a7b4.tar.gz
Got rid of InodeDB. This feature was optionnal and i have never heard of
2007-04-27 Benoît Dejean <benoit@placenet.org> Got rid of InodeDB. This feature was optionnal and i have never heard of anyone using it. I have never touched it so it may be broken since 2.6. svn path=/trunk/; revision=2573
Diffstat (limited to 'include')
-rw-r--r--include/glibtop/Makefile.am2
-rw-r--r--include/glibtop/inodedb.h67
2 files changed, 1 insertions, 68 deletions
diff --git a/include/glibtop/Makefile.am b/include/glibtop/Makefile.am
index 4b1bdb1e..2b4df591 100644
--- a/include/glibtop/Makefile.am
+++ b/include/glibtop/Makefile.am
@@ -7,7 +7,7 @@ glibtop_HEADERS = close.h loadavg.h prockernel.h procstate.h \
procsegment.h sysdeps.h global.h \
procsignal.h union.h gnuserv.h \
parameter.h mountlist.h fsusage.h procmap.h signal.h \
- inodedb.h sysinfo.h ppp.h procargs.h netload.h \
+ sysinfo.h ppp.h procargs.h netload.h \
netlist.h procopenfiles.h open.h
noinst_HEADERS = error.h write.h read_data.h read.h init_hooks.h
diff --git a/include/glibtop/inodedb.h b/include/glibtop/inodedb.h
deleted file mode 100644
index 7ce5640d..00000000
--- a/include/glibtop/inodedb.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/* 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.
-*/
-
-#ifndef __GLIBTOP_INODEDB_H__
-#define __GLIBTOP_INODEDB_H__
-
-#include <glibtop.h>
-#include <gdbm.h>
-
-#define GLIBTOP_INODEDB_SYSTEM 1
-#define GLIBTOP_INODEDB_USER 2
-#define GLIBTOP_INODEDB_CACHE 4
-
-#define GLIBTOP_INODEDB_ALL 7
-
-G_BEGIN_DECLS
-
-typedef struct _glibtop_inodedb glibtop_inodedb;
-
-typedef struct _glibtop_inodedb_key glibtop_inodedb_key;
-
-struct _glibtop_inodedb_key
-{
- guint64 device, inode;
-};
-
-struct _glibtop_inodedb
-{
- GDBM_FILE system_dbf, user_dbf;
-};
-
-#define glibtop_inodedb_open(p1,p2) glibtop_inodedb_open_s(glibtop_global_server, p1, p2)
-#define glibtop_inodedb_lookup(p1,p2,p3) glibtop_inodedb_lookup_s(glibtop_global_server, p1, p2, p3)
-#define glibtop_inodedb_close(p1) glibtop_inodedb_close_s(glibtop_global_server)
-
-glibtop_inodedb *
-glibtop_inodedb_open_s (glibtop *server, unsigned databases, unsigned long cache_size);
-
-const char *
-glibtop_inodedb_lookup_s (glibtop *server,
- glibtop_inodedb *inodedb,
- guint64 device, guint64 inode);
-
-void
-glibtop_inodedb_close_s (glibtop *server, glibtop_inodedb *inodedb);
-
-G_END_DECLS
-
-#endif