> Is there a list of Tcl commands that aren't threadsafe and thus > shouldn't be used in AS?
All Tcl commands are "threadsafe" in the traditional sense, in that they are reentrant from multiple threads. However, commands like 'cd' aren't "threadsafe" because of the effects they have across all threads. Jeff
