X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b52350bf53c07bb9b589c7f03324033d16dcd604..da946dcb996a556fd433face6caa6e8469ffa790:/src/portable.h diff --git a/src/portable.h b/src/portable.h index 15fc63dcab..5534f4f72c 100644 --- a/src/portable.h +++ b/src/portable.h @@ -13,9 +13,13 @@ #include "gras_config.h" -#include -#include /* struct timeval */ -#include +#ifdef HAVE_ERRNO_H +# include +#endif + +#ifdef HAVE_UNISTD_H +# include +#endif /**** **** Networking @@ -87,14 +91,18 @@ const char *gras_wsa_err2string(int errcode); #include #ifdef HAVE_SYS_STAT_H -#include +# include +#endif + +#ifndef O_BINARY +# define O_BINARY 0 #endif /**** **** Time handling ****/ -#if TIME_WITH_SYS_TIME +#ifdef TIME_WITH_SYS_TIME # include # include #else @@ -109,5 +117,15 @@ const char *gras_wsa_err2string(int errcode); #define sleep _sleep /* else defined in stdlib.h */ #endif +/**** + **** Contexts + ****/ + +#ifdef HAVE_UCONTEXT_H +# include +#else +# include "xbt/context_win32.h" /* Manual reimplementation for prehistoric platforms */ +#endif + #endif /* GRAS_PORTABLE_H */