documentation/graphs/fsm_change.dot
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 05 Oct 2018 01:26:51 +0200
branchstable-1.5
changeset 2719 94c9657e0bee
parent 2513 e60c68f33e4f
permissions -rw-r--r--
Xenomai 2 to 3 migration says "RTDM drivers implementing differentiated ioctl() support for both domains should serve all real-time only requests from ioctl_rt(), returning -ENOSYS for any unrecognized request, which will cause the adaptive switch to take place automatically to the ioctl_nrt() handler. The ioctl_nrt() should then implement all requests which may be valid from the regular Linux domain exclusively."

/* $Id$ */

digraph change {
    node [fontname="Helvetica"]
    edge [fontname="Helvetica", fontsize="12"]

    start
    start -> check [weight=5]

    check
    check -> status [weight=5]
    check -> error [label="Response\ntimeout"]

    status
    status -> end [label="Success", weight=5]
    status -> code [label="Refuse", weight=5]
    status -> error [label="Change\ntimeout"]

    code
    code -> ack [weight=2]

    start_ack
    start_ack -> ack [label="Ack only"]

    ack
    ack -> check_ack [weight=2]

    check_ack
    check_ack -> end [label="Ack only"]
    check_ack -> error [weight=2]

    end

    error
}