aboutsummaryrefslogtreecommitdiffstats
path: root/native/include/schedulability.h
blob: 08ef23d8de9a813aef470d28f4884685c3139226 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SCHEDULABILITY_H
#define SCHEDULABILITY_H

class SchedulabilityTest
{
  public:
    virtual bool is_schedulable(const TaskSet &ts,
                                bool check_preconditions = true) = 0;

    virtual ~SchedulabilityTest() {};
};

#endif