/* * $Id: Priority_transition_priority_round_robin.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Generic/Priority/include/Priority.h" namespace morpheo { namespace behavioural { namespace generic { namespace priority { #undef FUNCTION #define FUNCTION "Priority::transition_priority_round_robin" void Priority::transition_priority_round_robin (void) { log_begin(Priority,FUNCTION); reg_GRP_PRIORITY = (reg_GRP_PRIORITY+1)%_nb_grp; log_end(Priority,FUNCTION); }; }; // end namespace priority }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo