gsocketclient: Handle cancellation between CONNECTING and CONNECTED
[platform/upstream/glib.git] / gio / fam / fam-module.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  * Copyright (C) 2007 Sebastian Dröge.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General
17  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  *
19  * Authors: Alexander Larsson <alexl@redhat.com>
20  *          John McCutchan <john@johnmccutchan.com> 
21  *          Sebastian Dröge <slomo@circular-chaos.org>
22  */
23
24 #include <gio/giomodule.h>
25 #include "gfamdirectorymonitor.h"
26 #include "gfamfilemonitor.h"
27 #include "fam-helper.h"
28
29 void
30 g_io_module_load (GIOModule *module)
31 {
32   g_fam_file_monitor_register (module);
33   g_fam_directory_monitor_register (module);
34 }
35
36 void
37 g_io_module_unload (GIOModule   *module)
38 {
39   _fam_sub_shutdown ();
40 }
41
42 char **
43 g_io_module_query (void)
44 {
45   char *eps[] = {
46     G_LOCAL_DIRECTORY_MONITOR_EXTENSION_POINT_NAME,
47     G_LOCAL_FILE_MONITOR_EXTENSION_POINT_NAME,
48     G_NFS_DIRECTORY_MONITOR_EXTENSION_POINT_NAME,
49     G_NFS_FILE_MONITOR_EXTENSION_POINT_NAME,
50     NULL
51   };
52   return g_strdupv (eps);
53 }
54