SKCOM: Difference between revisions
Jump to navigation
Jump to search
| Line 6: | Line 6: | ||
EXIT [label="EXIT"]; | EXIT [label="EXIT"]; | ||
LOGIN [label="LOGIN\ | LOGIN [label="LOGIN\n(SKCenterLib_Login() in main thread)"]; | ||
LOGIN_DONE [label="LOGIN_DONE\n(nCode==0)"]; | LOGIN_DONE [label="LOGIN_DONE\n(nCode==0)"]; | ||
LOGIN_FAILED [label="LOGIN_FAILED\n(nCode!=0)"]; | LOGIN_FAILED [label="LOGIN_FAILED\n(nCode!=0)"]; | ||
MONITOR [label="MONITOR\ | MONITOR [label="MONITOR\n(SKQuoteLib_EnterMonitor() in child thread)"]; | ||
MONITOR_DONE [label="MONITOR_DONE\n(nCode==0)"]; | MONITOR_DONE [label="MONITOR_DONE\n(nCode==0)"]; | ||
MONITOR_FAILED [label="MONITOR_FAILED\n(nCode!=0)"]; | MONITOR_FAILED [label="MONITOR_FAILED\n(nCode!=0)"]; | ||
Revision as of 06:18, 4 June 2021
Life Cycle
Fontconfig error: No writable cache directories
Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories Fontconfig error: No writable cache directories failed at node 25[1] dot: maze.c:313: chkSgraph: Assertion `np->cells[1]' failed. Aborted (core dumped)
digraph skcom_lifecycle {
// options
// theme = warm
// usage =
// default settings of graphs
graph [
rankdir = LR,
color = "#804000",
bgcolor = "#fffff7",
fontcolor = "#000000",
fontsize = 12,
style = dashed,
gradientangle = 65,
splines = ortho,
];
// default settings of nodes
node [
shape = box,
style = "filled,rounded",
height = 0.3,
fontsize = 10,
// theme
color = "#c07000",
fontcolor = "#000000",
fillcolor = "#ffffff:#ffffc0",
gradientangle = 295 // left, top -> right, bottom
];
// default settings of edges
edge [
color = "#704000",
fontcolor = "#704000",
fontsize = 10,
arrowsize = 0.6
];
// nodes, edges, and clusters
rankdir=TB;
IDLE [label="IDLE"];
EXIT [label="EXIT"];
LOGIN [label="LOGIN\n(SKCenterLib_Login() in main thread)"];
LOGIN_DONE [label="LOGIN_DONE\n(nCode==0)"];
LOGIN_FAILED [label="LOGIN_FAILED\n(nCode!=0)"];
MONITOR [label="MONITOR\n(SKQuoteLib_EnterMonitor() in child thread)"];
MONITOR_DONE [label="MONITOR_DONE\n(nCode==0)"];
MONITOR_FAILED [label="MONITOR_FAILED\n(nCode!=0)"];
IDLE -> LOGIN;
LOGIN -> LOGIN_DONE;
LOGIN -> LOGIN_FAILED;
LOGIN_DONE -> MONITOR;
MONITOR -> MONITOR_DONE;
MONITOR -> MONITOR_FAILED;
LOGIN_DONE -> EXIT;
LOGIN_FAILED -> EXIT;
MONITOR_DONE -> EXIT;
MONITOR_FAILED -> EXIT;
}