I am trying to fix a memory issue in an Android application. I am convinced that the memory leak is not happening on the internal heap, as I have thoroughly investigated this possibility using the Me
The subject says it all. After i closed my app, it stays in the list of processes with some memory. I tried google perf tools and hours of debugging to find the leak.
I am doing a game. it requires lots of images.When using the app in normal case it will be quite running fine. But when it rash then i get the error 24 - too many files open.
I am using a tabhost which contains three activities in different tabs. Due to too many images for the background UI, this leads to the problem \"Out of Memory\".
I do a lot of analysis in MATLAB, 开发者_运维百科and while the machine on which I run it has 16 GB of memory, MATLAB almost never uses more than 1GB of Real Memory.Even if I disable the virtual memory
I am trying to add an entry to MTRR to mark a memory region as write combining, but the 开发者_开发知识库kernel does not accepts my call. It returns EINVAL errno. What could be the problem? I have tri
I am reviewing one java code base for finding some memory leaks. During the review I have find the following scenarios.
A few days ago I found a nice snippet on SO to test memory warnings by just sending a UIApplicationDidReceiveMemoryWarningNotification notification every 10 seconds or so.
I have a http post connection method as shown below: request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:url]];
I\'m getting what looks like a crash due to overreleasing but as far as I can tell I\'m not doing anything wrong, however I may have the wrong idea about AutoreleasePools and class variables.