id summary reporter owner description type status milestone component version severity resolution keywords cc 6951 Entry pseudo state and anonymous transition problem Takatoshi Kondo Christophe Henry "'''Problem''' See fig1. If the event from Entry1 to State2_1 is none, Action1 is invoked unexpectedly. See fig2. If the event from Entry1 to State2_1 is Event1, Action1 is not invoked. My understanding is that Boost.Msm requires the same event for transitions that to entry pseudo state and from entry pseudo state. Consider fig3, it's impossible to place correct event from Entry1 to State3_1. '''Solution''' In the transition process, outer event(Event1) preserved, and in the final phase of processing transition preserved event is invoked. When the event from entry pseudo state is none, avoid preserving outer event. (fix_pseudo_entry_and_none_event.patch) '''Test''' I tested my patch and all existing tests. All of them passed successfully. The new test, PseudoEntry.cpp, is also included in fix_pseudo_entry_and_none_event.patch. " Patches closed To Be Determined msm Boost 1.51.0 Problem fixed