Skip to content

Instantly share code, notes, and snippets.

@thomas-fossati
Created February 19, 2018 12:13
Show Gist options
  • Save thomas-fossati/b864808b408c313c1fd7672f0bd4c55e to your computer and use it in GitHub Desktop.
Save thomas-fossati/b864808b408c313c1fd7672f0bd4c55e to your computer and use it in GitHub Desktop.
mscgen
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