Remove unsed functuion pazpar2_sleep
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 13 Aug 2014 11:28:32 +0000 (13:28 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 13 Aug 2014 11:28:32 +0000 (13:28 +0200)
src/eventl.c
src/eventl.h

index f0c51df..2808c07 100644 (file)
 #include <stdio.h>
 #include <assert.h>
 
-#ifdef WIN32
-#include <winsock.h>
-#else
 #include <unistd.h>
-#endif
-#if HAVE_SYS_TIME_H
-#include <sys/time.h>
-#endif
 
 #include <stdlib.h>
 #include <errno.h>
@@ -400,18 +393,6 @@ void iochan_man_events(iochan_man_t man)
     event_loop(man, &man->channel_list);
 }
 
-void pazpar2_sleep(double d)
-{
-#ifdef WIN32
-    Sleep( (DWORD) (d * 1000));
-#else
-    struct timeval tv;
-    tv.tv_sec = floor(d);
-    tv.tv_usec = (d - floor(d)) * 1000000;
-    select(0, 0, 0, 0, &tv);
-#endif
-}
-
 /*
  * Local variables:
  * c-basic-offset: 4
index 5e46eca..b320078 100644 (file)
@@ -69,8 +69,6 @@ void iochan_man_destroy(iochan_man_t *mp);
 
 IOCHAN iochan_create(int fd, IOC_CALLBACK cb, int flags, const char *name);
 
-void pazpar2_sleep(double d);
-
 #endif
 /*
  * Local variables: