X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/60b5a5343a46b30521319379620c94d1314eb1bc..8ee8653c4dd04de41da4c67466c3d214be41cf11:/src/portable.h diff --git a/src/portable.h b/src/portable.h index cbc1c57c57..5aca5446e3 100644 --- a/src/portable.h +++ b/src/portable.h @@ -12,11 +12,7 @@ #include "internal_config.h" #include "xbt/misc.h" -/* - * win32 or win64 (__XBT_WIN32 is defined for win32 and win64 applications, __TOS_WIN__ is defined by xlC). -*/ #ifdef _XBT_WIN32 -# include "win32/config.h" # include #endif @@ -44,6 +40,30 @@ #include +#ifdef _XBT_WIN32 + #ifndef EWOULDBLOCK + #define EWOULDBLOCK WSAEWOULDBLOCK + #endif + + #ifndef EINPROGRESS + #define EINPROGRESS WSAEINPROGRESS + #endif + + #ifndef ETIMEDOUT + #define ETIMEDOUT WSAETIMEDOUT + #endif + + #ifdef S_IRGRP + #undef S_IRGRP + #endif + #define S_IRGRP 0 + + #ifdef S_IWGRP + #undef S_IWGRP + #endif + #define S_IWGRP 0 +#endif + #ifdef HAVE_SYS_STAT_H # include #endif