Commit 9f5934d9 authored by Max Kellermann's avatar Max Kellermann

main_notify: renamed source to event_pipe.c

We are going to migrate away from the concept of notifying the main thread. There should be events sent to it instead. This patch starts a series to implement that.
parent 99f8dc01
......@@ -44,7 +44,7 @@ mpd_headers = \
log.h \
ls.h \
main.h \
main_notify.h \
event_pipe.h \
daemon.h \
normalize.h \
compress.h \
......@@ -125,7 +125,7 @@ mpd_SOURCES = \
log.c \
ls.c \
main.c \
main_notify.c \
event_pipe.c \
daemon.c \
normalize.c \
compress.c \
......
......@@ -22,7 +22,7 @@
#include "listen.h"
#include "permission.h"
#include "utils.h"
#include "main_notify.h"
#include "event_pipe.h"
#include "dlist.h"
#include "idle.h"
#include "main.h"
......
......@@ -28,7 +28,7 @@
#include "utils.h"
#include "dbUtils.h"
#include "update.h"
#include "main_notify.h"
#include "event_pipe.h"
#include "config.h"
#include <glib.h>
......
......@@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "main_notify.h"
#include "event_pipe.h"
#include "utils.h"
#include "log.h"
......
......@@ -18,8 +18,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef MPD_MAIN_NOTIFY_H
#define MPD_MAIN_NOTIFY_H
#ifndef EVENT_PIPE_H
#define EVENT_PIPE_H
#include <glib.h>
......
......@@ -22,7 +22,7 @@
*/
#include "idle.h"
#include "main_notify.h"
#include "event_pipe.h"
#include <assert.h>
#include <glib.h>
......
......@@ -49,7 +49,7 @@
#include "../config.h"
#include "normalize.h"
#include "zeroconf.h"
#include "main_notify.h"
#include "event_pipe.h"
#include "dirvec.h"
#include "songvec.h"
#include "tag_pool.h"
......
......@@ -23,7 +23,7 @@
#include "song.h"
#include "idle.h"
#include "pcm_utils.h"
#include "main_notify.h"
#include "event_pipe.h"
#include <assert.h>
#include <stdio.h>
......
......@@ -22,7 +22,7 @@
#include "audio.h"
#include "pcm_utils.h"
#include "path.h"
#include "main_notify.h"
#include "event_pipe.h"
#include "crossfade.h"
#include "song.h"
#include "pipe.h"
......
......@@ -26,7 +26,7 @@
#include "path.h"
#include "playlist.h"
#include "utils.h"
#include "main_notify.h"
#include "event_pipe.h"
#include "condition.h"
#include "update.h"
#include "idle.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment