aboutsummaryrefslogtreecommitdiffstats
path: root/src/main_notify.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-12-31 00:32:56 +0100
committerMax Kellermann <max@duempel.org>2008-12-31 00:32:56 +0100
commitdd0f8e42f386abda02490745a0f2365e9412da7b (patch)
tree7dd47f2702f6f7ec65716009a4beead0e26d90e8 /src/main_notify.c
parent2cdfd93830b6c915dbf9c23c877d9954bab3a7a2 (diff)
downloadmpd-dd0f8e42f386abda02490745a0f2365e9412da7b.tar.gz
mpd-dd0f8e42f386abda02490745a0f2365e9412da7b.tar.xz
mpd-dd0f8e42f386abda02490745a0f2365e9412da7b.zip
main_notify: removed lock()/unlock()
These functions are not used anymore since we use the GLib main loop.
Diffstat (limited to '')
-rw-r--r--src/main_notify.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main_notify.c b/src/main_notify.c
index e9552efbc..6a5ff484e 100644
--- a/src/main_notify.c
+++ b/src/main_notify.c
@@ -79,16 +79,6 @@ void wakeup_main_task(void)
g_error("error writing to pipe: %s", strerror(errno));
}
-void main_notify_lock(void)
-{
- assert(main_task == g_thread_self());
-}
-
-void main_notify_unlock(void)
-{
- assert(main_task == g_thread_self());
-}
-
void wait_main_task(void)
{
consume_pipe();