Large API rename in ThreadsManager

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2011-04-25 00:22:48 +01:00
parent 339e1b49f6
commit 05cfb00f26
6 changed files with 150 additions and 155 deletions

View File

@@ -55,7 +55,7 @@ int main(int argc, char* argv[]) {
Position::init_piece_square_tables();
init_kpk_bitbase();
init_search();
ThreadsMgr.init_threads();
Threads.init();
#ifdef USE_CALLGRIND
CALLGRIND_START_INSTRUMENTATION;
@@ -82,6 +82,6 @@ int main(int argc, char* argv[]) {
<< "[limit = 12] [fen positions file = default] "
<< "[depth, time, perft or node limited = depth]" << endl;
ThreadsMgr.exit_threads();
Threads.exit();
return 0;
}