diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-11 20:34:07 (GMT) |
commit | e975dd1380b75e0736e5737ecf73efe9129361bc (patch) | |
tree | 020db13467ebfca10c4f307cd55644e9f167a694 /generic/tclBasic.c | |
parent | 8c9ff9ac6ac043b04ecfe5593ba048130c61bcbd (diff) | |
parent | 89c110fbb0e12918bbcb59f9d1a8c5503a5fa019 (diff) | |
download | tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.zip tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.tar.gz tcl-e975dd1380b75e0736e5737ecf73efe9129361bc.tar.bz2 |
[Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 280290c..8905849 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -928,17 +928,6 @@ Tcl_CreateInterp(void) TclPrecTraceProc, NULL); TclpSetVariables(interp); -#ifdef TCL_THREADS - /* - * The existence of the "threaded" element of the tcl_platform array - * indicates that this particular Tcl shell has been compiled with threads - * turned on. Using "info exists tcl_platform(threaded)" a Tcl script can - * introspect on the interpreter level of thread safety. - */ - - Tcl_SetVar2(interp, "tcl_platform", "threaded", "1", TCL_GLOBAL_ONLY); -#endif - /* * Register Tcl's version number. * TIP #268: Full patchlevel instead of just major.minor |