blob: bac460a3f342e93a4543439102de12b5f4460a72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef QPA_H
#define QPA_H
class QPATest : public SchedulabilityTest
{
public:
QPATest(unsigned int num_processors);
bool is_schedulable(const TaskSet &ts, bool check_preconditions = true);
};
#endif
|