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.
This commit is contained in:
Max Kellermann 2009-01-01 18:12:00 +01:00
parent 99f8dc0168
commit 9f5934d95b
10 changed files with 12 additions and 12 deletions

View File

@ -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 \

View File

@ -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"

View File

@ -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>

View File

@ -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"

View File

@ -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>

View File

@ -22,7 +22,7 @@
*/
#include "idle.h"
#include "main_notify.h"
#include "event_pipe.h"
#include <assert.h>
#include <glib.h>

View File

@ -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"

View File

@ -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>

View File

@ -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"

View File

@ -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"