diff options
| author | hobbs <hobbs> | 2006-08-30 17:24:25 (GMT) |
|---|---|---|
| committer | hobbs <hobbs> | 2006-08-30 17:24:25 (GMT) |
| commit | a0f0de064ec475b18aa466dae476c7e3c13d4ba3 (patch) | |
| tree | 5511b9035000c24427ad2ca3ae9d4ed030fd8ecc | |
| parent | 1ce6616d78116a1570b8dd3772fbc39c01762d09 (diff) | |
| download | tcl-a0f0de064ec475b18aa466dae476c7e3c13d4ba3.zip tcl-a0f0de064ec475b18aa466dae476c7e3c13d4ba3.tar.gz tcl-a0f0de064ec475b18aa466dae476c7e3c13d4ba3.tar.bz2 | |
* generic/tclBasic.c (Tcl_CreateInterp): init iPtr->threadId
| -rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 1941ca0..e13d01e 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.75.2.21 2006/03/06 21:56:13 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.75.2.22 2006/08/30 17:24:25 hobbs Exp $ */ #include "tclInt.h" @@ -363,6 +363,7 @@ Tcl_CreateInterp() iPtr->emptyObjPtr = Tcl_NewObj(); /* another empty object */ Tcl_IncrRefCount(iPtr->emptyObjPtr); iPtr->resultSpace[0] = 0; + iPtr->threadId = Tcl_GetCurrentThread(); iPtr->globalNsPtr = NULL; /* force creation of global ns below */ iPtr->globalNsPtr = (Namespace *) Tcl_CreateNamespace(interp, "", |
