]> git.sesse.net Git - stockfish/commit
We don't need lpThreadId parameter in CreateThread()
authorMarco Costalba <mcostalba@gmail.com>
Sun, 28 Feb 2010 10:53:29 +0000 (11:53 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 28 Feb 2010 22:36:01 +0000 (23:36 +0100)
commit8286e6ded2f2c6c9d48b317f077a8462d4b1f26e
tree4a4cd5735419287ce9b0e150199ca439078bb9b5
parent3a558a3d8b1400e0bafe0ba5c368c65542462a36
We don't need lpThreadId parameter in CreateThread()

Under Windows we use CreateThread() to setup threads and
we pass a pointer to a variable that receives the thread
identifier, but this parameter is optional and we don't
use it, so remove it.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/search.cpp