Tcl Source Code

Ticket Change Details
Login
Overview

Artifact ID: 95660eb5dc7a127a1895b23654e30873ecead048
Ticket: 0b874c344dd5331a5bc28b24f723ef8905903129
Tcl SEGV
User & Date: dgp 2013-12-03 19:58:52
Changes

  1. icomment:
    Here's a much shorter demo script:
    
        proc a {} {
            after 0 [info coroutine]
            yield
            coroutine C c
        }
    
        proc b {} {
            yield
            info frame
        }
    
        proc c {} {
            tailcall B
        }
    
        after 0 {
            coroutine A a
            coroutine B b
        }
        vwait forever
    
  2. login: "dgp"
  3. mimetype: "text/plain"