diff options
author | Max Kellermann <max@duempel.org> | 2014-01-29 20:16:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-30 18:47:05 +0100 |
commit | c6725884bc155da431889468c86c546f0f64f9a1 (patch) | |
tree | 61d89751ecc98db9600620ac1788f32dea9214e1 /src/db/update/InotifyUpdate.cxx | |
parent | a31738f6f1473f4f621bc16513ed0c6024749389 (diff) |
db/update: convert to OO API
Move global variables into the new classes. That may allow multiple
update threads for multiple databases one day.
Diffstat (limited to 'src/db/update/InotifyUpdate.cxx')
-rw-r--r-- | src/db/update/InotifyUpdate.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/update/InotifyUpdate.cxx b/src/db/update/InotifyUpdate.cxx index 72f22ceb1..3ba92ebf0 100644 --- a/src/db/update/InotifyUpdate.cxx +++ b/src/db/update/InotifyUpdate.cxx @@ -285,7 +285,7 @@ mpd_inotify_callback(int wd, unsigned mask, } void -mpd_inotify_init(EventLoop &loop, unsigned max_depth) +mpd_inotify_init(EventLoop &loop, UpdateService &update, unsigned max_depth) { LogDebug(inotify_domain, "initializing inotify"); @@ -320,7 +320,7 @@ mpd_inotify_init(EventLoop &loop, unsigned max_depth) recursive_watch_subdirectories(inotify_root, path, 0); - inotify_queue = new InotifyQueue(loop); + inotify_queue = new InotifyQueue(loop, update); LogDebug(inotify_domain, "watching music directory"); } |