summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
Diffstat (limited to 'unix')
-rw-r--r--unix/tclUnixThrd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 3963f84..02f18b8 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -530,7 +530,7 @@ retry:
* to yield to other threads for a while.
*/
#ifdef HAVE_USLEEP
- usleep(TCL_MUTEX_LOCK_SLEEP_TIME);
+ usleep(TCL_MUTEX_LOCK_SLEEP_TIME * 1000);
#else
Tcl_Sleep(TCL_MUTEX_LOCK_SLEEP_TIME);
#endif