xtd 0.2.0
Loading...
Searching...
No Matches
process pricority class

Definition

process priority class definitions.

Warning
Internal use only

Variables

constexpr int32_t NORMAL_PRIORITY_CLASS
 Process with no special scheduling needs.
 
constexpr int32_t IDLE_PRIORITY_CLASS
 Process whose threads run only when the system is idle and are preempted by the threads of any process running in a higher priority class. An example is a screen saver. The idle priority class is inherited by child processes.
 
constexpr int32_t HIGH_PRIORITY_CLASS
 Process that performs time-critical tasks that must be executed immediately for it to run correctly. The threads of a high-priority class process preempt the threads of normal or idle priority class processes. An example is the Task List, which must respond quickly when called by the user, regardless of the load on the operating system. Use extreme care when using the high-priority class, because a high-priority class CPU-bound application can use nearly all available cycles.
 
constexpr int32_t REALTIME_PRIORITY_CLASS
 Process that has the highest possible priority. The threads of a real-time priority class process preempt the threads of all other processes, including operating system processes performing important tasks. For example, a real-time process that executes for more than a very brief interval can cause disk caches not to flush or cause the mouse to be unresponsive.
 
constexpr int32_t BELOW_NORMAL_PRIORITY_CLASS
 Process that has priority above IDLE_PRIORITY_CLASS but below NORMAL_PRIORITY_CLASS.
 
constexpr int32_t ABOVE_NORMAL_PRIORITY_CLASS
 Process that has priority above NORMAL_PRIORITY_CLASS but below HIGH_PRIORITY_CLASS.
 

Variable Documentation

◆ NORMAL_PRIORITY_CLASS

constexpr int32_t NORMAL_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process with no special scheduling needs.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ IDLE_PRIORITY_CLASS

constexpr int32_t IDLE_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process whose threads run only when the system is idle and are preempted by the threads of any process running in a higher priority class. An example is a screen saver. The idle priority class is inherited by child processes.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ HIGH_PRIORITY_CLASS

constexpr int32_t HIGH_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process that performs time-critical tasks that must be executed immediately for it to run correctly. The threads of a high-priority class process preempt the threads of normal or idle priority class processes. An example is the Task List, which must respond quickly when called by the user, regardless of the load on the operating system. Use extreme care when using the high-priority class, because a high-priority class CPU-bound application can use nearly all available cycles.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ REALTIME_PRIORITY_CLASS

constexpr int32_t REALTIME_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process that has the highest possible priority. The threads of a real-time priority class process preempt the threads of all other processes, including operating system processes performing important tasks. For example, a real-time process that executes for more than a very brief interval can cause disk caches not to flush or cause the mouse to be unresponsive.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ BELOW_NORMAL_PRIORITY_CLASS

constexpr int32_t BELOW_NORMAL_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process that has priority above IDLE_PRIORITY_CLASS but below NORMAL_PRIORITY_CLASS.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ ABOVE_NORMAL_PRIORITY_CLASS

constexpr int32_t ABOVE_NORMAL_PRIORITY_CLASS
constexpr

#include <xtd.core.native/include/xtd/native/priority_class.h>

Process that has priority above NORMAL_PRIORITY_CLASS but below HIGH_PRIORITY_CLASS.

Library
xtd.core.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only