From c3087d02ba272059f86f9b1794f792daf2cd8e89 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 18 Apr 2006 13:36:30 +0000 Subject: Avoid including non-portable header sys/poll.h. git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@739 fefdeb5f-60dc-0310-8127-8f9354f1896f --- src/polyp/mainloop.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/polyp') diff --git a/src/polyp/mainloop.h b/src/polyp/mainloop.h index f60c355a..4681912b 100644 --- a/src/polyp/mainloop.h +++ b/src/polyp/mainloop.h @@ -27,6 +27,8 @@ PA_C_DECL_BEGIN +struct pollfd; + /** \page mainloop Main Loop * * \section overv_sec Overview @@ -70,8 +72,6 @@ PA_C_DECL_BEGIN * defined in \ref mainloop-api.h. This implementation is thread safe * as long as you access the main loop object from a single thread only.*/ -#include - /** An opaque main loop object */ typedef struct pa_mainloop pa_mainloop; @@ -117,7 +117,7 @@ void pa_mainloop_quit(pa_mainloop *m, int r); void pa_mainloop_wakeup(pa_mainloop *m); /** Generic prototype of a poll() like function */ -typedef int (*pa_poll_func)(struct pollfd *ufds, nfds_t nfds, int timeout, void*userdata); +typedef int (*pa_poll_func)(struct pollfd *ufds, unsigned long nfds, int timeout, void*userdata); /** Change the poll() implementation */ void pa_mainloop_set_poll_func(pa_mainloop *m, pa_poll_func poll_func, void *userdata); -- cgit