Posted to tcl by hypnotoad at Thu May 30 17:07:22 GMT 2019view raw

  1. % info patchlevel
  2. 8.6.9
  3. % package require Thread
  4. 2.9a1
  5. % info vars ::starkit::*
  6. ::starkit::localHome ::starkit::static_packages ::starkit::topdir ::starkit::thread_init
  7. % set t [thread::create]
  8. tid0x70000db2a000
  9. % thread send $t {info vars ::starkit::* }
  10. invalid command name "thread"
  11. % thread::send $t {info vars ::starkit::* }
  12. ::starkit::topdir
  13. %
  14.