Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 365289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:31:22+00:00 2026-05-12T13:31:22+00:00

Looking for Win32 API functions, C++ or Delphi sample code that tells me the

  • 0

Looking for Win32 API functions, C++ or Delphi sample code that tells me the CPU usage (percent and/or total CPU time) of a thread (not the total for a process). I have the thread ID.

I know that Sysinternals Process Explorer can display this information, but I need this information inside my program.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T13:31:22+00:00Added an answer on May 12, 2026 at 1:31 pm

    With the help of RRUZ’s answer above I finally came up with this code for Borland Delphi:

    const
      THREAD_TERMINATE                 = $0001;
      THREAD_SUSPEND_RESUME            = $0002;
      THREAD_GET_CONTEXT               = $0008;
      THREAD_SET_CONTEXT               = $0010;
      THREAD_SET_INFORMATION           = $0020;
      THREAD_QUERY_INFORMATION         = $0040;
      THREAD_SET_THREAD_TOKEN          = $0080;
      THREAD_IMPERSONATE               = $0100;
      THREAD_DIRECT_IMPERSONATION      = $0200;
      THREAD_SET_LIMITED_INFORMATION   = $0400;
      THREAD_QUERY_LIMITED_INFORMATION = $0800;
      THREAD_ALL_ACCESS                = STANDARD_RIGHTS_REQUIRED or SYNCHRONIZE or $03FF;
    
    function OpenThread(dwDesiredAccess: DWord;
                        bInheritHandle: Bool;
                        dwThreadId: DWord): DWord; stdcall; external 'kernel32.dll';
    
    
    procedure TForm1.Button1Click(Sender: TObject);
    var iii:integer;
        handle:thandle;
        creationtime,exittime,kerneltime,usertime:filetime;
    begin
      Handle:=OpenThread(THREAD_SET_INFORMATION or THREAD_QUERY_INFORMATION, False, windows.GetCurrentThreadId);
      if handle<>0 then
      begin
        getthreadtimes(Handle,creationtime,exittime,kerneltime,usertime);
        label1.caption:='Total time for Thread #'+inttostr(windows.GetCurrentThreadId)+': '+inttostr( (int64(kerneltime)+int64(usertime)) div 1000 )+' msec';
        CloseHandle(Handle);
      end;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 214k
  • Answers 214k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer An important difference, which no one seems to have mentioned… May 12, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer I try to keep as much in RAM as possible… May 12, 2026 at 10:49 pm
  • Editorial Team
    Editorial Team added an answer create a new WindowsForms application and use the following code.… May 12, 2026 at 10:49 pm

Related Questions

Are there no high-level HTTP libraries for native C/C++ in Win32 or am I
I intend to write a small application to scratch a personal itch and probably
i'm playing with a vb6 gui frontend for ffmpeg and as of now all
I found similar questions but no answer to what I am looking for. So

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.