distortos  v0.7.0
object-oriented C++ RTOS for microcontrollers
SchedulingPolicy.hpp
Go to the documentation of this file.
1 
12 #ifndef INCLUDE_DISTORTOS_SCHEDULINGPOLICY_HPP_
13 #define INCLUDE_DISTORTOS_SCHEDULINGPOLICY_HPP_
14 
15 #include <cstdint>
16 
17 namespace distortos
18 {
19 
26 enum class SchedulingPolicy : uint8_t
27 {
29  fifo,
31  roundRobin,
32 };
33 
34 } // namespace distortos
35 
36 #endif // INCLUDE_DISTORTOS_SCHEDULINGPOLICY_HPP_
FIFO scheduling policy.
SchedulingPolicy
scheduling policy of the thread
Definition: SchedulingPolicy.hpp:26
Top-level namespace of distortos project.
Definition: buttons.hpp:33
round-robin scheduling policy