diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-10-06 18:31:59 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-06 18:31:59 +0200 |
commit | 700f18eee55cd6a5906bd526f62e958647cea221 (patch) | |
tree | 1167532d758050ba3acfb9ee2026b6350a005af0 /src/main_notify.c | |
parent | 19a4803bc926efa8c61f0e1b47cc8eb76d10bc96 (diff) | |
download | mpd-700f18eee55cd6a5906bd526f62e958647cea221.tar.gz mpd-700f18eee55cd6a5906bd526f62e958647cea221.tar.xz mpd-700f18eee55cd6a5906bd526f62e958647cea221.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 'src/main_notify.c')
-rw-r--r-- | src/main_notify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main_notify.c b/src/main_notify.c index 96fb374b5..996b750cf 100644 --- a/src/main_notify.c +++ b/src/main_notify.c @@ -27,7 +27,7 @@ static struct ioOps main_notify_IO; static int main_pipe[2]; -static pthread_t main_task; +pthread_t main_task; static Notify main_notify; static pthread_mutex_t select_mutex = PTHREAD_MUTEX_INITIALIZER; @@ -60,6 +60,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; |