+2196. [port] win32: yield processor while waiting for once to
+ to complete. [RT# 16958]
+
2194. [bug] Close journal before calling 'done' in xfrin.c.
2193. [port] win32: BINDInstall.exe is now linked statically.
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: once.c,v 1.9.2.1 2004/03/09 06:12:19 marka Exp $ */
+/* $Id: once.c,v 1.9.2.2 2007/06/18 01:22:08 marka Exp $ */
/* Principal Authors: DCL */
} else {
while (controller->status == ISC_ONCE_INIT_NEEDED) {
/*
- * Spin wait.
+ * Sleep(0) indicates that this thread
+ * should be suspended to allow other
+ * waiting threads to execute.
*/
+ Sleep(0);
}
}
}