aboutsummaryrefslogtreecommitdiffstats
path: root/src/directory.h
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-23 22:37:18 +0200
committerMax Kellermann <max@duempel.org>2008-09-23 22:37:18 +0200
commit3f0ae13c4b409bcf39d926f5e73d5eb0feff6eb3 (patch)
treeb01aacd0c3c3ab7f7018830d630ada1d9d3838ae /src/directory.h
parent0f0ac43b8fa4dfecad5548cde42152dba8d9a652 (diff)
downloadmpd-3f0ae13c4b409bcf39d926f5e73d5eb0feff6eb3.tar.gz
mpd-3f0ae13c4b409bcf39d926f5e73d5eb0feff6eb3.tar.xz
mpd-3f0ae13c4b409bcf39d926f5e73d5eb0feff6eb3.zip
directory: update do its work inside a thread
A lot of the preparation was needed (and done in previous months) in making update thread-safe, but here it is. This was the first thing I made work inside a thread when I started mpd-uclinux many years ago, and also the last thing I've done in mainline mpd to work inside a thread, go figure.
Diffstat (limited to '')
-rw-r--r--src/directory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directory.h b/src/directory.h
index ccd20501e..6a8ca733f 100644
--- a/src/directory.h
+++ b/src/directory.h
@@ -34,7 +34,7 @@ typedef struct _Directory {
unsigned stat; /* not needed if ino_t == dev_t == 0 is impossible */
} Directory;
-void readDirectoryDBIfUpdateIsFinished(void);
+void reap_update_task(void);
int isUpdatingDB(void);