xtd 0.2.0
Loading...
Searching...
No Matches
process_priority_class.h
Go to the documentation of this file.
1
4#pragma once
5#include "../enum.h"
6
8namespace xtd {
10 namespace diagnostics {
26 normal = 0x20,
28 idle = 0x40,
30 high = 0x80,
32 real_time = 0x100,
34 below_normal = 0x4000,
36 above_normal = 0x8000,
37 };
38 }
39}
40
44};
process_priority_class
Indicates the priority that the system associates with a process. This value, together with the prior...
Definition process_priority_class.h:24
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
@ below_normal
Specifies that the process has priority above Idle but below Normal.
@ above_normal
Specifies that the process has priority higher than Normal but lower than High.
@ high
Specifies that the process performs time-critical tasks that must be executed immediately,...
@ real_time
Specifies that the process has the highest possible priority. The threads of a process with RealTime ...
@ idle
Specifies that the threads of this process run only when the system is idle, such as a screen saver....
@ normal
Specifies that the process has no special scheduling needs.
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:36