GetThreadPriority

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function returns the priority value for the specified thread.

Syntax

int GetThreadPriority(
  HANDLE hThread
);

Parameters

  • hThread
    [in] Handle to the thread.

Return Value

The thread priority level indicates success. THREAD_PRIORITY_ERROR_RETURN indicates failure. To get extended error information, call GetLastError.

This function returns the base priority of the thread. If priority inheritance changes the priority of a thread, the value returned by this function might not match the original thread priority or the value assigned by SetThreadPriority.

The following table shows priority level values.

Priority level Description

THREAD_PRIORITY_TIME_CRITICAL

Indicates 3 points above normal priority.

THREAD_PRIORITY_HIGHEST

Indicates 2 points above normal priority.

THREAD_PRIORITY_ABOVE_NORMAL

Indicates 1 point above normal priority.

THREAD_PRIORITY_NORMAL

Indicates normal priority (251).

THREAD_PRIORITY_BELOW_NORMAL

Indicates 1 point below normal priority.

THREAD_PRIORITY_LOWEST

Indicates 2 points below normal priority.

THREAD_PRIORITY_ABOVE_IDLE

Indicates 3 points below normal priority.

THREAD_PRIORITY_IDLE

Indicates 4 points below normal priority.

Note

Priority levels 0 through 7, available in earlier versions of Windows Embedded CE, are now mapped to priority levels 248 through 255.

Remarks

Windows Embedded CE does not support priority classes. The order in which threads are scheduled is determined only by their thread priorities.

When manipulating priorities, be sure a high-priority thread does not consume all available CPU time.

Threads are scheduled in a round-robin fashion at each priority level. Threads at a lower level are only scheduled when no executable threads exist at a higher level.

Note

In previous releases, a call to GetThreadPriority or CEGetThreadPriority would return the current thread's priority. The value returned might have been a priority boosted by priority inheritance.

For more information about priority levels in Windows Embedded CE, see Priority Levels.

Requirements

Header winbase.h
Library coredll.lib
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

Process and Thread Functions
SetThreadPriority