/* ------------------------------------------- Copyright Zeta Electronics Corporation ------------------------------------------- */ /***********************************************************************************/ /// @file ProcessTeam.cxx /// @brief Process teams implementation. /***********************************************************************************/ #include namespace NewOS { /// @brief Process list array getter. /// @return The list of process to schedule. MutableArray>& ProcessTeam::AsArray() { return mProcessList; } /// @brief Current process getter. /// @return The current process header. Ref& ProcessTeam::AsRef() { return mCurrentProcess; } } // namespace NewOS // last rev 05-03-24