Geschrieben von:/Posted by: Cesar Contreras at 12 August 2004 01:48:02:
I'm working on getting winboard or user input when searching, to force a move or to quit, because my current public version receibe the message only when the search finish. Current public version does the next:
main() {
do {
gets(message);
...
...
// Process message
...
...
} while (message!="quit");
}
I have now a private version that creates a thread to receibe input, and all i do is to ask in the search function if is there any new message to process.
But my problem it's that now the main function uses too much CPU time polling a function to see if there is a new message:
main()
{
create_threat_for_input();
do {
// Next line is the problem, the program waste valuable time polling
// for a message instead of bloking until getting a message.
while(is_there_a_message()==false) {};
messaje=last_message();
...
...
// Process message
...
...
} while (message!="quit");
}
I now can poll for input during search, and it seems to work ok, now i can force a move or quit while searching, but at the cost of wasting time when not in search. Now my program waste CPU time when it's not calculating!!. I have seen other engines, and those don't waste time when waiting for input. I'm missing something.
I'm looking for an alternative, something like a way to block the main thread until getting a message, or trigering an event.
Any help is apreciated.
Thanks in advance.