summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixThrd.c
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2015-05-18 20:33:56 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2015-05-18 20:33:56 (GMT)
commit0dd03dfef90c4e73923a50809af00903246fdbc0 (patch)
tree9ac06e69edb62cbb5a23db9265d76689584f644d /unix/tclUnixThrd.c
parent2e3d1fac48ab90dc6870398c1d19cd41361470ec (diff)
downloadtcl-0dd03dfef90c4e73923a50809af00903246fdbc0.zip
tcl-0dd03dfef90c4e73923a50809af00903246fdbc0.tar.gz
tcl-0dd03dfef90c4e73923a50809af00903246fdbc0.tar.bz2
First attempt at implementing the necessary auto-magic for usleep.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r--unix/tclUnixThrd.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/unix/tclUnixThrd.c b/unix/tclUnixThrd.c
index 2cb2d87..3963f84 100644
--- a/unix/tclUnixThrd.c
+++ b/unix/tclUnixThrd.c
@@ -35,14 +35,6 @@ static Tcl_ThreadDataKey dataKey;
#endif
/*
- * TODO: Remove this section and add the necessary "auto* magic".
- */
-
-#ifndef HAVE_USLEEP
-# define HAVE_USLEEP
-#endif
-
-/*
* masterLock is used to serialize creation of mutexes, condition variables,
* and thread local storage. This is the only place that can count on the
* ability to statically initialize the mutex.