dbus/dbus-sysdeps-win.c: tighter "scoping" for alternate _dbus_poll implementations...
authorTor Lillqvist <tml@iki.fi>
Wed, 22 Apr 2009 13:28:58 +0000 (15:28 +0200)
committerRalf Habacker <ralf.habacker@freenet.de>
Mon, 30 Nov 2009 12:43:15 +0000 (13:43 +0100)
dbus/dbus-sysdeps-win.c

index 60e2552..bca2f1c 100644 (file)
@@ -1015,13 +1015,15 @@ out0:
  * @param timeout_milliseconds timeout or -1 for infinite
  * @returns numbers of fds with revents, or <0 on error
  */
-#define USE_CHRIS_IMPL 0
-#if USE_CHRIS_IMPL
 int
 _dbus_poll (DBusPollFD *fds,
             int         n_fds,
             int         timeout_milliseconds)
 {
+#define USE_CHRIS_IMPL 0
+
+#if USE_CHRIS_IMPL
+
 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
   char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
   char *msgp;
@@ -1160,15 +1162,9 @@ _dbus_poll (DBusPollFD *fds,
     free(pEvents);
 
   return ret;
-}
 
-#else   // USE_CHRIS_IMPL
+#else   /* USE_CHRIS_IMPL */
 
-int
-_dbus_poll (DBusPollFD *fds,
-            int         n_fds,
-            int         timeout_milliseconds)
-{
 #define DBUS_POLL_CHAR_BUFFER_SIZE 2000
   char msg[DBUS_POLL_CHAR_BUFFER_SIZE];
   char *msgp;
@@ -1283,10 +1279,9 @@ _dbus_poll (DBusPollFD *fds,
           }
       }
   return ready;
+#endif  /* USE_CHRIS_IMPL */
 }
 
-#endif  // USE_CHRIS_IMPL
-