summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2006-04-18 13:36:30 +0000
committerPierre Ossman <ossman@cendio.se>2006-04-18 13:36:30 +0000
commitc3087d02ba272059f86f9b1794f792daf2cd8e89 (patch)
treeb5068dcfdccc2704861724e0f654384692e3020f
parentabea726d16eecbc0ecfb60c5e23958ed5275b779 (diff)
Avoid including non-portable header sys/poll.h.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@739 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/polyp/mainloop.h6
1 files changed, 3 insertions, 3 deletions
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 <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);