Tcl Source Code

Artifact [713f7dc1e4]
Login

Artifact 713f7dc1e4146e4c63bb47891d0e28d235bbb14c:

Attachment "crash.tcl" to ticket [1356721fff] added by nickpa 2005-11-15 00:24:45.
package require Thread 2.6

proc LaunchThreads {} {
        for {set i 1} {$i<=5} {incr i} {
                puts "launching thead:$i"

                set thread($i) [thread::create {
                        # require tls
                        package require tls 1.5

                        proc Tester {keke} {

                                puts "we got info: $keke for [thread::id]"

                        }

                        thread::wait
                }]

                thread::send -async $thread($i) "Tester \"bah\""
        }
}


proc Menu {} {

        puts "Menu"

        set option [gets stdin]

        if { $option == "l" } {
                LaunchThreads
        }


        while { $option != "q" } {
                Menu
        }


}

Menu