From: Zoran V. <zv...@ar...> - 2006-10-04 10:05:54
|
On 03.10.2006, at 01:01, Stephen Deasey wrote: > ns_serialize { > # whatever > } I've been thinking about that... Basically, what you try to avoid is to replicate common C-idioms to Tcl because Tcl is not C after all. Would this include common threading paradigms like mutex lock while (true) { cond wait cond mutex } mutex ulock ? To what extent are you prepared to go? More specifically, how would you code this particular thing in a Tcl-like way? |