Click here to Skip to main content
Click here to Skip to main content

Enum Processes with kernel and user times

By , 7 Feb 2005
 

Sample Image -EnumProcesses.jpg

Introduction

This article shows how to enumerate all the processes currently running on your system and display them with the process name, process ID tag, Kernel time and User time.

Background

Process kernel mode and user mode times are amounts of time. For example, if a process has spent one second in kernel mode, this function will fill the FILETIME structure specified by lpKernelTime with a 64-bit value of ten million. That is the number of 100-nanosecond units in one second. To verify this, I used the following code:

DWORD dwLow, dwLow2, dwRes;
FILETIME ft, ft2;
SYSTEMTIME st;

    GetSystemTime(&st);              // gets current time
    SystemTimeToFileTime(&st, &ft);  // converts to file time format
    dwLow = ft.dwLowDateTime;
    st.wSecond += 1;                 // add 1 second
    SystemTimeToFileTime(&st, &ft2); // converts to file time format
    dwLow2 = ft2.dwLowDateTime;
    dwRes = dwLow2 - dwLow;
    printf("%lu\n", dwRes);
    result: 10,000,000

Using the code

I first saved all the kernel and user times in an array of a structure which saves the 64 bit values in an __int64 variable. Then after five seconds, I sample them again and calculate the difference, the difference is then divided by 156250. The number 156250 is 1/64 of the 64-bit value of ten million, the smallest amount of time a process is running. Now the CPU usage can be calculated, the sum of the kernel and user times divided by five. The console functions defined in Console.h are useful in any Win32 console application. The function clrscr(int screenSize) can be called with MINIMUM or MAXIMUM, the first will set the screen buffer size to its normal size of 24 by 80, the second sets it to 60 by 80. The function gotoxy(x, y) sets the cursor at line y character position x. The function setrgb(int fgc, int bgc) is used to set the background and foreground colors. The colors are defined in an enum in the header file, for example, setrgb(BLACK, INT_WHITE) is the default.

typedef struct tagPROCESSTIMES
{
   __int64 m_kernel;
   __int64 m_user;
} PROCESSTIMES[100];

Points of Interest

Being basically lazy, I don't like to click the maximize window button and then scroll to the top of the console window. See Console.cpp, I added code to set the console screen buffer to its maximum size when the second screen is called to display the results.

History

26, January 2005 - Version 1.0.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Roger65
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralThanks, Good JobmemberMember 62587418 Mar '09 - 15:54 
GeneralFunction that I build for my application from this article.memberAndrewSmirnov30 May '06 - 5:44 
GeneralConsole Commandsmembercoolnaveen12343 Apr '06 - 19:34 
GeneralRe: Console CommandsmemberRoger654 Apr '06 - 2:48 
GeneralRe: Console Commandsmembercoolnaveen12344 Apr '06 - 19:08 
GeneralPsapi ErrorsmemberCyKill22 Mar '05 - 6:25 
GeneralRe: Psapi ErrorsmemberRoger6522 Mar '05 - 6:36 
GeneralRe: Psapi Errorsmemberk999930 Aug '06 - 5:50 
Generalcsrss CPU usagememberNathan Evans8 Feb '05 - 5:55 
GeneralRe: csrss CPU usagememberRoger658 Feb '05 - 7:34 
GeneralRe: csrss CPU usagememberNathan Evans8 Feb '05 - 7:38 
GeneralRe: csrss CPU usagememberRoger658 Feb '05 - 9:48 
GeneralGood!memberWREY3 Feb '05 - 11:51 
GeneralRe: Good!memberRoger654 Feb '05 - 0:55 
GeneralRe: Good!memberWREY4 Feb '05 - 2:19 
GeneralRe: Good!memberRoger654 Feb '05 - 2:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 8 Feb 2005
Article Copyright 2005 by Roger65
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid