X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/05e8ac5cfffa65d5083de901716c5e828cd6bf57..5fc72d28104dca5e9f2fb0d2bb047c7277a7999f:/include/xbt/base.h diff --git a/include/xbt/base.h b/include/xbt/base.h index 1241b6366e..54ab2700e6 100644 --- a/include/xbt/base.h +++ b/include/xbt/base.h @@ -89,7 +89,7 @@ # define XBT_INLINE # endif # else -# if defined (__VISUALC__) +# if defined (_MSC_VER) # define XBT_INLINE __inline # else # define XBT_INLINE inline @@ -97,6 +97,20 @@ # endif /* __cplusplus */ #endif +#if defined(__GNUC__) +# define XBT_ALWAYS_INLINE inline __attribute__ ((always_inline)) +#else +# define XBT_ALWAYS_INLINE XBT_INLINE +#endif + +#if defined(__GNUC__) +# define XBT_THREAD_LOCAL __thread +#elif defined(_MSC_VER) +# define XBT_THREAD_LOCAL __declspec(thread) +#else +# define XBT_THREAD_LOCAL No thread local on this architecture +#endif + /* improvable on gcc (by evaluating arguments only once), but wouldn't be portable */ #ifdef MIN # undef MIN @@ -223,6 +237,23 @@ #endif +#ifdef _MSC_VER /* MSVC has no ssize_t, and I fail to use the SSIZE_T declared in BaseTsd.h */ + #if defined(_WIN64) + typedef __int64 ssize_t; + #else + typedef long ssize_t; + #endif + +/* Microsoft wants to improve the code quality blah blah blah */ +/* See: https://msdn.microsoft.com/en-us/library/8ef0s5kh.aspx */ + /* warning C4996: '_strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. */ + # define _CRT_NONSTDC_NO_WARNINGS + /* warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. */ + # define _CRT_SECURE_NO_WARNINGS +#endif + + + #ifdef _XBT_WIN32 #define XBT_INTERNAL #else