aboutsummaryrefslogtreecommitdiffstats
path: root/native/include/edf/gfb.h
blob: d7dc3cdfc01a4b07516dd6e0713382dc9662a8d2 (plain) (blame)
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