Use pa_read, pa_write and pa_poll instead of system functions

This commit is contained in:
Maarten Bosmans 2011-01-05 19:50:44 +01:00
parent 30c7c95184
commit 821562b9bc
4 changed files with 14 additions and 14 deletions

View file

@ -67,7 +67,7 @@ static int poll_func(struct pollfd *ufds, unsigned long nfds, int timeout, void
* avahi_simple_poll_quit() can succeed from another thread. */
pa_mutex_unlock(mutex);
r = poll(ufds, nfds, timeout);
r = pa_poll(ufds, nfds, timeout);
pa_mutex_lock(mutex);
return r;