aboutsummaryrefslogtreecommitdiffstats
path: root/src/main_notify.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-10-03 15:16:33 -0700
committerEric Wong <normalperson@yhbt.net>2008-10-03 17:13:19 -0700
commit41a44f79ee1e559257fb6b2c88e1eb140fe657bf (patch)
tree26556fbd4d35dc76e2c7ee5777b2533b0d3e98c6 /src/main_notify.c
parentddc39977bc530954a2497c96cb78e7def0747908 (diff)
downloadmpd-41a44f79ee1e559257fb6b2c88e1eb140fe657bf.tar.gz
mpd-41a44f79ee1e559257fb6b2c88e1eb140fe657bf.tar.xz
mpd-41a44f79ee1e559257fb6b2c88e1eb140fe657bf.zip
main_notify: define main_task so we can use it for assertions
It'll be easier to keep track of what code runs in what task/thread this way.
Diffstat (limited to '')
-rw-r--r--src/main_notify.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main_notify.c b/src/main_notify.c
index 2c546633d..04ceac62d 100644
--- a/src/main_notify.c
+++ b/src/main_notify.c
@@ -24,6 +24,8 @@
#include "gcc.h"
#include "log.h"
+pthread_t main_task;
+
static struct ioOps main_notify_IO;
static int main_pipe[2];
@@ -55,6 +57,7 @@ static int ioops_consume(int fd_count, fd_set * rfds,
void init_main_notify(void)
{
+ main_task = pthread_self();
init_async_pipe(main_pipe);
main_notify_IO.fdset = ioops_fdset;
main_notify_IO.consume = ioops_consume;