X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmisc.cpp;h=246cfd2dd196a700745e4fbd4cab5d37f6c076cf;hb=5c81602d14539f8259a715477315e28b5de7cb54;hp=1c16726e809bf11fd70887f0bd4cc8f8f0c82c40;hpb=ef600437250a12aad8cb9ba95716528c40902a9f;p=stockfish diff --git a/src/misc.cpp b/src/misc.cpp index 1c16726e..246cfd2d 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2009 Marco Costalba Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -29,11 +29,33 @@ # include #else +/* + (c) Copyright 1992 Eric Backus + This software may be used freely so long as this copyright notice is + left intact. There is no warrantee on this software. +*/ # include # include # include "dos.h" -int gettimeofday(struct timeval * tp, struct timezone * tzp); + +static int gettimeofday(struct timeval* tp, struct timezone*) +{ + SYSTEMTIME systime; + + if (tp) + { + struct tm tmrec; + time_t theTime = time(NULL); + + tmrec = *localtime(&theTime); + tp->tv_sec = mktime(&tmrec); + GetLocalTime(&systime); /* system time */ + + tp->tv_usec = systime.wMilliseconds * 1000; + } + return 0; +} #endif