X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=a3b1b0324c8ee20357fb515294696d9b9befb240;hp=ae8b6ffbed302c7e0075d5ddfe29a9fcd3ecc4b9;hb=a189a5f0c53ec444652fdec78cff206279575bf8;hpb=24b25b4827df4b3629d46ef019f4fea645d6dc91 diff --git a/src/misc.cpp b/src/misc.cpp index ae8b6ffb..a3b1b032 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -17,7 +17,7 @@ along with this program. If not, see . */ -#if defined(_MSC_VER) +#if defined(_WIN32) || defined(_WIN64) #define _CRT_SECURE_NO_DEPRECATE #define NOMINMAX // disable macros min() and max() @@ -113,7 +113,7 @@ void dbg_print() { int system_time() { -#if defined(_MSC_VER) +#if defined(_WIN32) || defined(_WIN64) struct _timeb t; _ftime(&t); return int(t.time * 1000 + t.millitm); @@ -129,7 +129,7 @@ int system_time() { int cpu_count() { -#if defined(_MSC_VER) +#if defined(_WIN32) || defined(_WIN64) SYSTEM_INFO s; GetSystemInfo(&s); return std::min(int(s.dwNumberOfProcessors), MAX_THREADS); @@ -155,7 +155,7 @@ int cpu_count() { void timed_wait(WaitCondition& sleepCond, Lock& sleepLock, int msec) { -#if defined(_MSC_VER) +#if defined(_WIN32) || defined(_WIN64) int tm = msec; #else struct timeval t;