home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource
/
21_7.tcl
< prev
next >
Wrap
Text File
|
2003-04-16
|
218b
|
14 lines
#
# Example 21-7
# Executing commands after thread::wait returns.
#
set t [thread::create {
puts "Starting worker thread"
thread::wait
# This is executed after the thread is released
puts "Exiting worker thread"
}]