documentation/graphs/fsm_pdo_read.dot
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sat, 29 Sep 2018 23:58:09 +0200
branchstable-1.5
changeset 2714 ec417efca1fd
parent 2513 e60c68f33e4f
permissions -rw-r--r--
This fix a segfault in xenomai_posix example when calling pthread_setschedparam(cyclic_thread, ...) from main thread. As a side effect EL2004 becomes EL2088 - that's what IU have for testing.

/* $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
}