1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef GFB_H #define GFB_H class GFBGedf : public SchedulabilityTest { private: unsigned int m; public: GFBGedf(unsigned int num_processors) : m(num_processors) {}; bool is_schedulable(const TaskSet &ts, bool check_preconditions = true); }; #endif