Created
February 19, 2018 12:13
-
-
Save thomas-fossati/b864808b408c313c1fd7672f0bd4c55e to your computer and use it in GitHub Desktop.
mscgen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msc { | |
a,b,c; | |
a->b [label="ab()"] ; | |
b->c [label="bc(TRUE)"]; | |
c=>c [label="process(1)"]; | |
c=>c [label="process(2)"]; | |
...; | |
c=>c [label="process(n)"]; | |
c=>c [label="process(END)"]; | |
a<<=c [label="callback()"]; | |
--- [label="If more to run", ID="*"]; | |
a->a [label="next()"]; | |
a->c [label="ac()"]; | |
b<-c [label="cb(TRUE)"]; | |
b->b [label="stalled(...)"]; | |
a<-b [label="ab() = FALSE"]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment