-2

Here are screenshots of my current issue:

  1. First
  2. Second
  3. Three
  4. Four
  5. Five
  6. Six

RamMap

RamMap

Do I have a memory leak? Zombie Handlers? What do I do? Never had this issue before..

Toto
  • 17,839
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Apr 24 '23 at 23:38
  • 3
    Hello, instead of dropping 10 screens without any context, describe please describe as specifically as possible what the issue is and what did you try to solve it. "Too high RAM usage IMO" doesn't tell us much. – Destroy666 Apr 24 '23 at 23:46
  • 3
    You have a 64-bit OS so 4 GB in use immediately. How much memory does the computer have? – John Apr 24 '23 at 23:59
  • 2
    1/3 of the memory being used by your system is reserved by a driver. You should identify which driver is using that memory. Task Manager screenshots are not helpful, as they are only user processes, or that’s what it appears to be (6 screenshots are way to many to mentally process) essentially since you didn’t include the Performance tab. This contains the necessary information to diagnose the problem or at least provide us the required information to do so – Ramhound Apr 25 '23 at 00:10
  • 1
    I think you mean zombie handles / zombie processes; Zombie Handlers are a thing in Dead Rising https://deadrising.fandom.com/wiki/Zombie_Handlers – Gantendo Apr 25 '23 at 00:48

1 Answers1

0

Adding a Windows task manager view is one thing, but opening the "subprocesses" is another. Task manager only shows the resource use of the parent process and does not add up all sub processes.

Unless more information is provided I can only make a guess, but that guess would be that your Browser (Brave), which is build on the chromium code, allocates your RAM. Every plugin and (almost) every tab is started in a separate process, which adds to stability and security, but adds overhead and hides the total memory used across all of them.

Unfolding all of these subprocesses and adding together their memory allocation should give you more. As a hint: the main process takes about 960 MB, which is already about 6% of the 16 GB available (which can be inferred from the 16,691,696 K given in RamMap).

Have 7 processes of equal use and you're up to 60%, add what windows and other processes naturally use (like the bitdefender's host process with 400 MB) and you're quickly at 12-ish GB or 67% of 16 GB

The same would account for other programs build on the code (like Discord, Steam, etc and other electron apps, which are basically chromium in a wrapper)


Next would be the about 3.4 GB taken by an unspecified driver. Integrated graphics?

(Those are still only about 22% use, keeping 46% or about 7.5 GB in use elsewhere. It can be said that Windows and it's own processes will take about 2 GB, so that leaves about 5.5 GB of memory used elsewhere, which isn't unusual for a system that is in use)

Here is another question with a "driver locked" memory situation and the (as of now) single answer that provides a guide on how to identify which driver is causing it: Driver locked memory on a non-virtual machine Going through these steps would help finding the cause.