documentation/graphs/fsm_sii.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 sii {
    node [fontname="Helvetica"]
    edge [fontname="Helvetica", fontsize="12"]

    start_reading
    start_reading -> read_check [weight=5]

    read_check
    read_check -> error
    read_check -> read_fetch [weight=5]

    read_fetch
    read_fetch -> error
    read_fetch -> end [weight=5]
    read_fetch -> read_fetch

    start_writing
    start_writing -> write_check [weight=5]

    write_check
    write_check -> error
    write_check -> write_check2 [weight=5]

    write_check2
    write_check2 -> error
    write_check2 -> end [weight=5]
    write_check2 -> write_check2

    end

    error
}