Avoid including non-portable header sys/poll.h.
authorPierre Ossman <ossman@cendio.se>
Tue, 18 Apr 2006 13:36:30 +0000 (13:36 +0000)
committerPierre Ossman <ossman@cendio.se>
Tue, 18 Apr 2006 13:36:30 +0000 (13:36 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@739 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/polyp/mainloop.h

index f60c355..4681912 100644 (file)
@@ -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 <sys/poll.h>
-
 /** 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);