Skip to main content

Questions tagged [memory-leaks]

A memory leak occurs when a program fails to release memory that it has allocated but is no longer using and is not recoverable.

0 votes
0 answers
6 views

Memory not released on skybox entity

So the issue is on realityView, I'm adding a skybox conditionally, since sometimes I don't want it to show anything, but when the view dismiss, the memory is not released.. everytime I change the ...
Zack Routin's user avatar
0 votes
0 answers
22 views

cAdvisor reports high WSS, but low RSS and cache memory usage

I observed the following cAdvisor memory metrics for a container deployed in Kubernetes Service on Azure and am struggling to come up with an explanation. It's a .NET 6 program running in the ...
scharnyw's user avatar
  • 2,634
-1 votes
0 answers
24 views

wxMathPlot plot freezes the system on resize

I have a plot created using wxMathplot library, at initial lunch the plot works perfect, but when I resize the window it stucks and the laptop freezes until I restart it, before the freeze, I noticed ...
Hzine's user avatar
  • 123
1 vote
1 answer
58 views

Valgrind is still showing memory is reachable with addrec()

The following code is for creating and managing hash table: hash.c: #include <stdio.h> #include <stdlib.h> #include "hash.h" typedef struct node { record_t rec; struct ...
bigmacBucky's user avatar
0 votes
0 answers
17 views

MaxListenersExceededWarning: Possible EventEmitter memory leak detected - client fetch

I get the following error after navigating between two pages a couple of times. (node:14880) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 timeout listeners added to [...
Ank's user avatar
  • 183
0 votes
0 answers
20 views

Huge memory consumption when iterating systemd journal

Dear community, here are the story description and 2 questions: I'm trying to fix significant memory consumption in a systemd (--version is 250) journal forwarding application. Our application is ...
user3518295's user avatar
0 votes
1 answer
46 views

Jemalloc with java on Mac

trying to load jemalloc for java program to find native memory leak ,but unable to get it worked. Steps performed so far versions : Mac OS 14.3 , JDK 11 , jemalloc - 5.3.0 1.Installed jemalloc via ...
prasannajoshi's user avatar
0 votes
1 answer
45 views

Using _CrtDumpMemoryLeaks to detect memory leaks in C++ DLL

Our C# code is calling an unmanaged C++ DLL. I want to have the ability to catch all unmanaged memory leaks that may occur while we're using the unmanaged code. May I call _CrtSetDbgFlag at the ...
eugen_nw's user avatar
  • 147
0 votes
0 answers
36 views

Chrome takes up unproportioned memory in web app

I have a web app I am developing using Angular 14, and I've had windows task manager open while I was using it. I've noticed the memory that chrome is using is somewhere around 1.5GB (with only my app'...
Eric Krief's user avatar
-3 votes
0 answers
32 views

Are the following dynamic slices garbage collected in go?

In the following simplified code, are the pipe.stats automatically deallocated when a new pipe is created? package main var pipe = &Pipe{} type Stat struct { Counter int } type Pipe struct {...
Dibom's user avatar
  • 55
1 vote
0 answers
20 views

Unity Editor never releasing memory

I've been working on my unity project, and this happened: So, my project has some Recursive functions, since it is about making a chess engine(rule-based AI). And when I test it out, I find my memory ...
E_ple's user avatar
  • 35
0 votes
0 answers
21 views

Why Chrome tab memory keeps growing and heap size stays the same until it runs out of memory?

I tried to analyze the memory snapshot using chrome memory tool, As well as trying to use the performance analysis tool, so far I have not found the reason, is it possible to debug the contents of ...
Zoe Lee's user avatar
0 votes
1 answer
53 views

Function takes progressively longer to execute over time C#

I have been trying to trace down a memory leak in my program and every method I have timed thus far has been as predicted and constant except for this one. As I leave the program running the time to ...
Terrence's user avatar
0 votes
1 answer
38 views

Problem of memory leak with PHP and queryFontMetrics from Imagick

I've been using Imagick etqueryFontMetrics for years for my projects. And for the past few days, I've been having memory problems. My PHP code using queryFontMetrics, and at the end of the execution, ...
Wylls's user avatar
  • 91
2 votes
1 answer
68 views

Memory leak using Nvidia's NVML

In a project I'm using the nvml lib to get info about the GPU in a system. I use it to query the GPU name and GPU UUID. This happens cyclic 6 to 8 time per minute. I noticed a small memory leak which ...
Jakob's user avatar
  • 127

15 30 50 per page
1
2 3 4 5
1364