summaryrefslogtreecommitdiffstats
path: root/bus/dir-watch.h
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-10-19 19:43:05 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-10-19 19:43:05 +0000
commitfe1f793a4f8296fb00d409a4a52b12ed7526caac (patch)
tree7368703202421dc436a438389261c43bb1233b4e /bus/dir-watch.h
parenteb357c5ff9a36bafe608707a7df933fe228d2ba6 (diff)
* bus/dir-watch-default.c, bus/dir-watch-dnotify.c,
bus/dir-watch-kqueue.c (bus_watch_directory): Pass in a BusContext instead of a void *. kqueue uses this to get the context's loop while the other modules ignore the parameter. This allows us to avoid platform conditionals * bus/bus.c (process_config_postinit): Pass in the context to the watch
Diffstat (limited to 'bus/dir-watch.h')
-rw-r--r--bus/dir-watch.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bus/dir-watch.h b/bus/dir-watch.h
index 3b754261..263ee035 100644
--- a/bus/dir-watch.h
+++ b/bus/dir-watch.h
@@ -21,11 +21,13 @@
*
*/
+#include "bus.h"
+
#ifndef DIR_WATCH_H
#define DIR_WATCH_H
/* setup a watch on a directory (OS dependent, may be a NOP) */
-void bus_watch_directory (const char *directory, void *userdata);
+void bus_watch_directory (const char *directory, BusContext *context);
/* drop all the watches previously set up by bus_config_watch_directory (OS dependent, may be a NOP) */
void bus_drop_all_directory_watches (void);