Task manager: Windows XP RAM usage doesn't add up

6

2

When using the task manager in Windows XP Pro, the amount of RAM that is listed as being used by the individual processes is not adding up to the total memory used (as listed by the total commit on the performance page).

The total sum of all the RAM being used the the processes: 195604 K

The amount in use as listed by performance page and the status bar: 280028 K

1) Why is this?

2) How do I reduce the amount of memory used?

David Oneill

Posted 2009-11-20T22:54:12.837

Reputation: 2 381

Answers

3

what you see in the status bar is the the total commit charge which represents the current amount of virtual memory used.

The "Mem Usage" column in Task Manager's "Processes" display, however, shows each process's current working set. This is a count of physical memory (RAM) rather than virtual address space.

The total commit charge will always be larger than the sum of these values, as the total includes system-wide allocations such as the paged pool.

Molly7244

Posted 2009-11-20T22:54:12.837

Reputation:

"the total commit charge which represents the current amount of virtual memory used." Sorry but this isn't true. There is much virtual memory that is not counted in commit charge. Paged and nonpaged pool are included, but any virtual memory that is backed by mapped files (which includes v.m. occupied by code in exe's and dll's) is not. Therefore the "total commit charge" is not the total amount of virtual memory used. – Jamie Hanrahan – 2018-02-08T23:30:31.573

2

Answering question 2) How do I reduce the amount of memory used?

It is probably obvious, but the simplest way to free up RAM is to close applications (or sub-application units like browser tabs or extensions). Maybe you can deactivate some startup items.

If a program has a memory leak, it can help restarting it. Try it and compare the memory footprints in the task manager, to find out where that's worth the hassle. By the way, Sysinternals provides an excellent free advanced task manager replacement called Process Explorer. It can detail out all the aspects of processes' memory usage. You have to choose the respective columns.

As far as I remember, in Windows XP it is also still helpful rebooting the whole system from time to time.

Good luck speeding up!

Aaron Thoma

Posted 2009-11-20T22:54:12.837

Reputation: 550

2

Not all the ram is used by processes.

The OS also uses memory, which is not listed under any of the processes

Am.

Posted 2009-11-20T22:54:12.837

Reputation: 1 546