From 6c16eb4ce5bc9b7ee16f08ff62f685d33c350c58 Mon Sep 17 00:00:00 2001 From: hobbs Date: Wed, 30 Aug 2006 19:33:11 +0000 Subject: * generic/tclBasic.c (Tcl_CreateInterp): init iPtr->threadId --- ChangeLog | 2 ++ generic/tclBasic.c | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c0ef3d4..3bf0e5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-08-30 Jeff Hobbs + * generic/tclBasic.c (Tcl_CreateInterp): init iPtr->threadId + * win/tclWinChan.c [Bug 819667] Improve logic for identifying COM ports. diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 0afd68f..1c3eb2c 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.195 2006/08/10 12:15:29 dkf Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.196 2006/08/30 19:33:11 hobbs Exp $ */ #include "tclInt.h" @@ -343,6 +343,7 @@ Tcl_CreateInterp(void) 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, "", -- cgit v0.12