Define SIGPIPE for Win32, fix sleep() for Win32

This commit is contained in:
cpq 2023-05-23 03:49:24 +01:00
parent 38d7799ffa
commit bad05485d0
2 changed files with 10 additions and 2 deletions

View File

@ -468,7 +468,7 @@ typedef int socklen_t;
(((errcode) < 0) && (WSAGetLastError() == WSAECONNRESET))
#define realpath(a, b) _fullpath((b), (a), MG_PATH_MAX)
#define sleep(x) Sleep(x)
#define sleep(x) Sleep((x) *1000)
#define mkdir(a, b) _mkdir(a)
#ifndef S_ISDIR
@ -479,6 +479,10 @@ typedef int socklen_t;
#define MG_ENABLE_DIRLIST 1
#endif
#ifndef SIGPIPE
#define SIGPIPE 0
#endif
#endif

View File

@ -94,7 +94,7 @@ typedef int socklen_t;
(((errcode) < 0) && (WSAGetLastError() == WSAECONNRESET))
#define realpath(a, b) _fullpath((b), (a), MG_PATH_MAX)
#define sleep(x) Sleep(x)
#define sleep(x) Sleep((x) *1000)
#define mkdir(a, b) _mkdir(a)
#ifndef S_ISDIR
@ -105,4 +105,8 @@ typedef int socklen_t;
#define MG_ENABLE_DIRLIST 1
#endif
#ifndef SIGPIPE
#define SIGPIPE 0
#endif
#endif