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

    start
    start -> zero_entry_count [weight=10]

    zero_entry_count
    zero_entry_count -> end [label="No Entries"]
    zero_entry_count -> action_map [label="Add first entry", weight=10]

    action_map [shape=point,label=""]
    action_map -> map_entry [weight=10]

    map_entry
    map_entry -> action_map [label="Next entry"]
    map_entry -> set_entry_count [label="No more Entries", weight=10]

    set_entry_count
    set_entry_count -> end [weight=10]

    end
    end
}