본문 바로가기

My Study/Function

SetPriorityClass

BOOL WINAPI SetPriorityClass(
  __in  HANDLE hProcess,
  __in  DWORD dwPriorityClass
);

프로세스의 우선순위를 수정하는 함수
hProcess : 우선순위를 변경할 프로세스의 핸들
dwPriorityClass : 새롭게 적용할 우선순위 정보

두번째 인자(숫자가 높을 수록 우선순위 높음)
IDLE_PRIORITY_CLASS 기준 우선순위 4
BELOW_NORMAL_PRIORITY_CLASS 사이
NORMAL_PRIORITY_CLASS 기준 우선순위 9
ABOVE_NORMAL_PRIORITY_CLASS 사이
HIGH_PRIORITY_CLASS 기준 우선순위 13
REALTIME_PRIORITY_CLASS 기준 우선순위 24

'My Study > Function' 카테고리의 다른 글

CloseHandle  (0) 2010.02.24
SetThreadPriority  (0) 2010.02.24
GetCurrentProcess  (0) 2010.02.24
GetCurrentDirectory  (0) 2010.02.24
VirtualFree  (0) 2010.02.24