xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
process_priority_class.h
Go to the documentation of this file.
1
4#pragma once
5#include "../ustring.h"
6
8namespace xtd {
10 namespace diagnostics {
21 normal = 0x20,
23 idle = 0x40,
25 high = 0x80,
27 real_time = 0x100,
29 below_normal = 0x4000,
31 above_normal = 0x8000,
32 };
33
38 }
39}
process_priority_class
Indicates the priority that the system associates with a process. This value, together with the prior...
Definition: process_priority_class.h:19
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition: to_string.h:37
@ 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: system_report.h:17