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

    start
    start -> action_next_sync [label="First SM", weight=5]

    action_next_sync [shape=point,label=""]
    action_next_sync -> pdo_count [weight=5]
    action_next_sync -> end

    pdo_count
    pdo_count -> action_next_pdo [weight=5]

    action_next_pdo [shape=point,label=""]
    action_next_pdo -> pdo [label="Next PDO", weight=5]
    action_next_pdo -> action_next_sync [label="No more PDOs"]

    pdo
    pdo -> pdo_entries [weight=5]

    pdo_entries
    pdo_entries -> action_next_pdo

    end
}