diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-05-06 16:38:09 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-05-06 16:38:09 +0000 |
commit | 3f92e3efa92d946e0410bc78d7329039b4ad6f47 (patch) | |
tree | 6628abba34fb426c431699d1f599f442781cd6ce /src/polyp | |
parent | 4cff5d3150297830bc7b348dc9fe238cc663d97f (diff) |
allow signalling from event loop thread
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@828 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/polyp')
-rw-r--r-- | src/polyp/thread-mainloop.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/polyp/thread-mainloop.c b/src/polyp/thread-mainloop.c index 32be494d..51fafe92 100644 --- a/src/polyp/thread-mainloop.c +++ b/src/polyp/thread-mainloop.c @@ -184,9 +184,6 @@ void pa_threaded_mainloop_unlock(pa_threaded_mainloop *m) { void pa_threaded_mainloop_signal(pa_threaded_mainloop *m) { assert(m); - /* Make sure that this function is called from the helper thread */ - assert(m->thread_running && pthread_equal(pthread_self(), m->thread_id)); - pthread_cond_broadcast(&m->cond); } |