home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource / 21_2.tcl < prev    next >
Text File  |  2003-04-16  |  166b  |  12 lines

  1. #
  2. # Example 21-2
  3. # Initializing a thread before entering its event loop with thread::wait.
  4. #
  5.  
  6. set httpThread [thread::create {
  7. package require http
  8. thread::wait
  9. }]
  10.  
  11.  
  12.