diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2015-05-18 20:33:56 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2015-05-18 20:33:56 (GMT) |
commit | 8c0a7dab9b12dda93f76637c8e32316148890b88 (patch) | |
tree | 9ac06e69edb62cbb5a23db9265d76689584f644d /unix/tclUnixThrd.c | |
parent | 193821f1117e26ef65b36062a8e5488450a3525c (diff) | |
download | tcl-8c0a7dab9b12dda93f76637c8e32316148890b88.zip tcl-8c0a7dab9b12dda93f76637c8e32316148890b88.tar.gz tcl-8c0a7dab9b12dda93f76637c8e32316148890b88.tar.bz2 |
First attempt at implementing the necessary auto-magic for usleep.
Diffstat (limited to 'unix/tclUnixThrd.c')
-rw-r--r-- | unix/tclUnixThrd.c | 8 |
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. |