/* * ResponseTimeAnalysis.h * * Created on: 07.11.2010 * Author: sven */ #ifndef RESPONSETIMEANALYSIS_H_ #define RESPONSETIMEANALYSIS_H_ #ifndef TASK_H_ #include "Task.h" #endif #ifndef RMSSCHEDULER_H_ #include "RMSScheduler.h" #endif #include #include class ResponseTimeAnalysis { public: ResponseTimeAnalysis(); virtual ~ResponseTimeAnalysis(); bool analyse(rms_queue&); void calcOptimalStaticPriorities(task_set&); void swap(vector&,int,int); }; #endif /* RESPONSETIMEANALYSIS_H_ */