On Wednesday 29 October 2003 14:20, you wrote: > Thanks for the explanation. > Am I correct in thinking that AOLServer never releases TCL_Objs for the > lifetime of the thread ?
It has a per-thread list and global list and it shuffles Tcl_Obj's among those lists, but they never get released. Just reused. When thread leaves the show, its per-thread list is merged to the global one. When new thread enters the show, it gets a chunk of Tcl objs to start with from the global list. So, yes, they never get released. Cheer's Zoran -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
