mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-05 02:36:19 +01:00
Drop GVFS_INOTIFY_DIAG debug feature
Just not a good idea to have this in production code.
This commit is contained in:
parent
7a0c47843f
commit
6a50dc511b
@ -262,17 +262,6 @@
|
|||||||
</para>
|
</para>
|
||||||
</formalpara>
|
</formalpara>
|
||||||
|
|
||||||
<formalpara>
|
|
||||||
<title><envar>GVFS_INOTIFY_DIAG</envar></title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
When this environment variable is set and GIO has been built
|
|
||||||
with inotify support, a dump of diagnostic inotify information
|
|
||||||
will be written every 20 seconds to a file named
|
|
||||||
<filename>/tmp/gvfsdid.<replaceable>pid</replaceable></filename>.
|
|
||||||
</para>
|
|
||||||
</formalpara>
|
|
||||||
|
|
||||||
<formalpara>
|
<formalpara>
|
||||||
<title><envar>GIO_EXTRA_MODULES</envar></title>
|
<title><envar>GIO_EXTRA_MODULES</envar></title>
|
||||||
|
|
||||||
|
@ -10,8 +10,6 @@ libinotify_la_SOURCES = \
|
|||||||
inotify-path.c \
|
inotify-path.c \
|
||||||
inotify-missing.c \
|
inotify-missing.c \
|
||||||
inotify-helper.c \
|
inotify-helper.c \
|
||||||
inotify-diag.c \
|
|
||||||
inotify-diag.h \
|
|
||||||
inotify-kernel.h \
|
inotify-kernel.h \
|
||||||
inotify-missing.h \
|
inotify-missing.h \
|
||||||
inotify-path.h \
|
inotify-path.h \
|
||||||
|
@ -1,74 +0,0 @@
|
|||||||
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 8 -*- */
|
|
||||||
|
|
||||||
/* inotify-helper.c - Gnome VFS Monitor based on inotify.
|
|
||||||
|
|
||||||
Copyright (C) 2005 John McCutchan
|
|
||||||
|
|
||||||
The Gnome 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 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 Gnome 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.
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
John McCutchan <john@johnmccutchan.com>
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#include <glib.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include "inotify-missing.h"
|
|
||||||
#include "inotify-path.h"
|
|
||||||
#include "inotify-diag.h"
|
|
||||||
|
|
||||||
#define DIAG_DUMP_TIME 20000 /* 20 seconds */
|
|
||||||
|
|
||||||
G_LOCK_EXTERN (inotify_lock);
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
id_dump (gpointer userdata)
|
|
||||||
{
|
|
||||||
GIOChannel *ioc;
|
|
||||||
pid_t pid;
|
|
||||||
char *fname;
|
|
||||||
G_LOCK (inotify_lock);
|
|
||||||
ioc = NULL;
|
|
||||||
pid = getpid ();
|
|
||||||
|
|
||||||
fname = g_strdup_printf ("/tmp/gvfsid.%d", pid);
|
|
||||||
ioc = g_io_channel_new_file (fname, "w", NULL);
|
|
||||||
g_free (fname);
|
|
||||||
|
|
||||||
if (!ioc)
|
|
||||||
{
|
|
||||||
G_UNLOCK (inotify_lock);
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
_im_diag_dump (ioc);
|
|
||||||
|
|
||||||
g_io_channel_shutdown (ioc, TRUE, NULL);
|
|
||||||
g_io_channel_unref (ioc);
|
|
||||||
|
|
||||||
G_UNLOCK (inotify_lock);
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
_id_startup (void)
|
|
||||||
{
|
|
||||||
if (!g_getenv ("GVFS_INOTIFY_DIAG"))
|
|
||||||
return;
|
|
||||||
|
|
||||||
g_timeout_add (DIAG_DUMP_TIME, id_dump, NULL);
|
|
||||||
}
|
|
@ -1,29 +0,0 @@
|
|||||||
/* inotify-helper.h - GNOME VFS Monitor using inotify
|
|
||||||
|
|
||||||
Copyright (C) 2006 John McCutchan <john@johnmccutchan.com>
|
|
||||||
|
|
||||||
The Gnome 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 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 Gnome 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.
|
|
||||||
|
|
||||||
Author: John McCutchan <john@johnmccutchan.com>
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __INOTIFY_DIAG_H
|
|
||||||
#define __INOTIFY_DIAG_H
|
|
||||||
|
|
||||||
void _id_startup (void);
|
|
||||||
|
|
||||||
#endif /* __INOTIFY_DIAG_H */
|
|
@ -36,7 +36,6 @@
|
|||||||
#include "inotify-helper.h"
|
#include "inotify-helper.h"
|
||||||
#include "inotify-missing.h"
|
#include "inotify-missing.h"
|
||||||
#include "inotify-path.h"
|
#include "inotify-path.h"
|
||||||
#include "inotify-diag.h"
|
|
||||||
|
|
||||||
static gboolean ih_debug_enabled = FALSE;
|
static gboolean ih_debug_enabled = FALSE;
|
||||||
#define IH_W if (ih_debug_enabled) g_warning
|
#define IH_W if (ih_debug_enabled) g_warning
|
||||||
@ -87,7 +86,6 @@ _ih_startup (void)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
_im_startup (ih_not_missing_callback);
|
_im_startup (ih_not_missing_callback);
|
||||||
_id_startup ();
|
|
||||||
|
|
||||||
IH_W ("started gvfs inotify backend\n");
|
IH_W ("started gvfs inotify backend\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user