]> git.stg.codes - stg.git/blobdiff - stglibs/ia.lib/ia.cpp
Replace deprecated usleep with POSIX-compliant nanosleep
[stg.git] / stglibs / ia.lib / ia.cpp
index f08c46145d1d2f6860ce9499996a5f6ab5e3cca9..abecef09f552fa4ff4f8a949402c4bc313e65429 100644 (file)
     #include <winnt.h>
 #else
     #include <fcntl.h>
     #include <winnt.h>
 #else
     #include <fcntl.h>
-    #include <sys/types.h>
-    #include <sys/socket.h>
     #include <netdb.h>
     #include <netdb.h>
-    #include <netinet/in.h>
     #include <arpa/inet.h>
     #include <unistd.h>
 #endif
     #include <arpa/inet.h>
     #include <unistd.h>
 #endif
@@ -72,7 +69,7 @@ static int a = 0;
 
 if (a == 0)
     {
 
 if (a == 0)
     {
-    usleep(50000);
+    Sleep(50);
     a = 1;
     }
 
     a = 1;
     }
 
@@ -85,7 +82,9 @@ return NULL;
 //---------------------------------------------------------------------------
 void Sleep(int ms)
 {
 //---------------------------------------------------------------------------
 void Sleep(int ms)
 {
-usleep(ms * 1000);
+long long res = ms * 1000000;
+struct timespec ts = {res / 1000000000, res % 1000000000};
+nanosleep(&ts, NULL);
 }
 //---------------------------------------------------------------------------
 long GetTickCount()
 }
 //---------------------------------------------------------------------------
 long GetTickCount()