summaryrefslogtreecommitdiff
path: root/lib/init.c
diff options
context:
space:
mode:
authorMartin Baulig <martin@home-of-linux.org>2000-01-12 17:39:58 +0000
committerMartin Baulig <martin@src.gnome.org>2000-01-12 17:39:58 +0000
commit50f0929ae861a7d75c5f8fb03d2c50109dc78b8b (patch)
tree4c161890de2aec88e562b0bd73427ec54d3fb42d /lib/init.c
parent62c59f60877b706982956357a5e51b9727fd694e (diff)
downloadlibgtop-50f0929ae861a7d75c5f8fb03d2c50109dc78b8b.tar.gz
Comment out `_glibtop_init_hook_s'.
2000-01-12 Martin Baulig <martin@home-of-linux.org> * lib/init.c (glibtop_init_s): Comment out `_glibtop_init_hook_s'.
Diffstat (limited to 'lib/init.c')
-rw-r--r--lib/init.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/init.c b/lib/init.c
index ac7bc249..ec5756a2 100644
--- a/lib/init.c
+++ b/lib/init.c
@@ -247,7 +247,9 @@ glibtop *
glibtop_init_s (glibtop **server_ptr, unsigned long features, unsigned flags)
{
glibtop *server;
+#if 0
glibtop_init_func_t *init_fkt;
+#endif
if (server_ptr == NULL)
return NULL;
@@ -262,6 +264,7 @@ glibtop_init_s (glibtop **server_ptr, unsigned long features, unsigned flags)
if (flags & GLIBTOP_INIT_NO_INIT)
return server;
+#if 0
/* Do the initialization, but only if not already initialized. */
if ((server->flags & _GLIBTOP_INIT_STATE_SYSDEPS) == 0) {
@@ -274,6 +277,7 @@ glibtop_init_s (glibtop **server_ptr, unsigned long features, unsigned flags)
server->flags |= _GLIBTOP_INIT_STATE_SYSDEPS;
}
+#endif
return server;
}