X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmisc.h;h=8d21c1adfb3d328d48768a62e26bfd012527aca1;hb=32d3a07c6710e84d78999cb69c6a866b0bfff482;hp=cda0ef591192c9852e422447a3a3f57ef91bb1c6;hpb=161c6b025e763d6bcc8339a614be312f2b173437;p=stockfish diff --git a/src/misc.h b/src/misc.h index cda0ef59..8d21c1ad 100644 --- a/src/misc.h +++ b/src/misc.h @@ -23,13 +23,13 @@ #include #include -#include "lock.h" #include "types.h" extern const std::string engine_info(bool to_uci = false); extern int cpu_count(); extern void timed_wait(WaitCondition&, Lock&, int); extern void prefetch(char* addr); +extern void start_logger(bool b); extern void dbg_hit_on(bool b); extern void dbg_hit_on_c(bool c, bool b); @@ -57,7 +57,7 @@ public: static Time current_time() { Time t; t.restart(); return t; } private: - my_time_t t; + sys_time_t t; }; #endif // !defined(MISC_H_INCLUDED)