xtd 0.2.0
Loading...
Searching...
No Matches
thread_priority.h
Go to the documentation of this file.
1
4#pragma once
5#include "../enum.h"
6
8namespace xtd {
10 namespace threading {
24 enum class thread_priority {
26 lowest = 0,
28 below_normal = 1,
30 normal = 2,
32 above_normal = 3,
34 highest = 4,
35 };
36 }
37}
38
42};
thread_priority
Specifies the scheduling priority of a system::threading::thread.
Definition thread_priority.h:24
@ lowest
The system::threading::thread can be scheduled after threads with any other priority.
@ below_normal
The system::threading::thread can be scheduled after threads with thread_priority::normal priority an...
@ above_normal
The system::threading::thread can be scheduled after threads with thread_priority::highest priority a...
@ highest
The system::threading::thread can be scheduled before threads with any other priority.
@ normal
The system::threading::thread can be scheduled after threads with thread_priority::above_normal prior...
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:38