Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
ThreadSchedulingParams.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_OS_LINUX_THREADSCHEDULINGPARAMS_H
4#define IMT_BASE_OS_LINUX_THREADSCHEDULINGPARAMS_H
5
8
9namespace imt {
10namespace base {
11namespace os {
12namespace linux {
13
18
19public:
20
28 constexpr ThreadSchedulingParams(ThreadSchedulingPolicy policy, int32_t priority) noexcept :
29 m_policy {policy},
30 m_priority {priority} {
31 }
32
37 constexpr ThreadSchedulingParams() noexcept :
39 }
40
45 constexpr ThreadSchedulingPolicy getPolicy() const noexcept {
46 return m_policy;
47 }
48
53 constexpr int32_t getPriority() const noexcept {
54 return m_priority;
55 }
56
57private:
58
60 int32_t m_priority;
61};
62
63} // namespace linux
64} // namespace os
65} // namespace base
66} // namespace imt
67
68#endif // IMT_BASE_OS_LINUX_THREADSCHEDULINGPARAMS_H
Provides the parameters required to setup the scheduling of a thread.
constexpr ThreadSchedulingPolicy getPolicy() const noexcept
Gets the scheduling policy.
constexpr int32_t getPriority() const noexcept
Gets the scheduling priority.
constexpr ThreadSchedulingParams(ThreadSchedulingPolicy policy, int32_t priority) noexcept
Constructor.
constexpr ThreadSchedulingParams() noexcept
Constructor Sets the policy to ThreadSchedulingPolicy::OTHER and priority to 0.
ThreadSchedulingPolicy
Supported thread scheduling policies.
@ OTHER
Maps to SCHED_OTHER policy described in "man sched 7".
This is a application specific file which is used to configure Imt.Base.Core.Math.
__int32 int32_t
Definition stdint.h:60