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

  • SEARCH
  • Home
  • 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 6808661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:59:01+00:00 2026-05-26T19:59:01+00:00

How can I obtain this information: Total Memory Free Memory Memory used by current

  • 0

How can I obtain this information:

  • Total Memory
  • Free Memory
  • Memory used by current running application ?

I think Qt should have memory options, that would be platform-independent, but
I can’t find it. So what can I do when I want to make a platform-independent application that shows memory state?

  • 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-26T19:59:01+00:00Added an answer on May 26, 2026 at 7:59 pm

    Unfortunately, there is nothing built into Qt for this. You must do this per-platform.

    Here are some samples to get you started. I had to implement this in one of my apps just last week. The code below is still very much in development; there may be errors or leaks, but it might at least point you in the correct direction. I was only interested in total physical RAM, but the other values are available in the same way. (Except perhaps memory in use by the current application … not sure about that one.)

    Windows (GlobalMemoryStatusEx)

    MEMORYSTATUSEX memory_status;
    ZeroMemory(&memory_status, sizeof(MEMORYSTATUSEX));
    memory_status.dwLength = sizeof(MEMORYSTATUSEX);
    if (GlobalMemoryStatusEx(&memory_status)) {
      system_info.append(
            QString("RAM: %1 MB")
            .arg(memory_status.ullTotalPhys / (1024 * 1024)));
    } else {
      system_info.append("Unknown RAM");
    }
    

    Linux (/proc/meminfo)

    QProcess p;
    p.start("awk", QStringList() << "/MemTotal/ { print $2 }" << "/proc/meminfo");
    p.waitForFinished();
    QString memory = p.readAllStandardOutput();
    system_info.append(QString("; RAM: %1 MB").arg(memory.toLong() / 1024));
    p.close();
    

    Mac (sysctl)

    QProcess p;
    p.start("sysctl", QStringList() << "kern.version" << "hw.physmem");
    p.waitForFinished();
    QString system_info = p.readAllStandardOutput();
    p.close();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I obtain the .NET Framework directory path inside my C# application? The
How can I obtain the physical machine name that my jvm is running in?
How can you obtain the system clock's current time of day (in milliseconds) in
I have starter new System.Diagnostics.Process and it launchs FireFox. How can I obtain the
I have a very basic application that uses JAXB marshaller to validate input information
I have been using the graph to obtain feed / post information for pages,
Using Android TelephonyManager an application can obtain the state of data activity over the
I have a Visual Studio 2010 extension, a .vsix file. I can obtain the
Whilst inside an iframe, can you please let me know how I can obtain
How can you obtain the Type (the name as a string is sufficient) of

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.