This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com

learn more… | top users | synonyms

7
votes
0answers
233 views

Instances referenced by 'bound_this' only are not garbage collected

I have a question regarding garbage-collection in google chrome (Version 20.0.1132.47, Ubuntu 11.04 64bit). While comparing heap-dumps and checking for memory-leaks, I discovered some instances, that ...
5
votes
0answers
202 views

what does “exited abnormally with signal 9: Killed: 9” mean

How to read error codes which appear in the console? <Warning>: ....... -exited abnormally with signal 9: Killed: 9 <Warning>: ....... -1 err = Bad file descriptor (0x00000009) Here ...
5
votes
0answers
145 views

How to reduce huge RAM usage on decoding MIME using Synapse TMimeMess?

I use TMimeMess for decoding incoming e-mails of my SMTP server based on Synapse. I discovered that for decoding 50MB MIME message (simple text with attachments), TMimeMess used 600-800MB of memory. ...
4
votes
0answers
79 views

Application memory issue with mac

I face a problem with java application I built in javaFx. It consumes only 2-3% of cpu usage and around 50 to 80 MB of memory in windows. But in mac same application initially starts with 50 mb of ...
4
votes
0answers
207 views

Using Spring @Scheduled and @Async together

Here is my use case. A legacy system updates a database queue table QUEUE. I want a scheduled recurring job that - checks the contents of QUEUE - if there are rows in the table it locks the row and ...
4
votes
0answers
163 views

How can I reduce CFData(Store)?

I have been looking for the solution to solve below problem, but could not find. I made the filtering method to modify HSV values of UIImage. This method is working fine, but when I use this method, ...
3
votes
0answers
137 views

Android Eclipse DDMS > Heap > Cause GC greyed out

I'm unable to click the Cause GC button in the Heap tab under the DDMS Perspective in Eclipse because it is greyed out. I'm using ADT v22 (the Eclipse/Android/ADT package) on OS X. Device I'm using ...
3
votes
0answers
174 views

Cache Addressing: Length of Index, Block offset, Byte offset & Tag?

Let's say I know the following values: W = Word length (= 32 bits) S = Cache size in words B = Block size in words M = Main memory size in words How do I calculate how many bits are needed for: - ...
3
votes
0answers
78 views

Use Xcode Instruments to look at non-zombie object history at pointer

I am currently debugging a "message sent to deallocated object" error using Instruments. I am able to access the history of the object at fault through a "Zombie Messaged" dialog box. I want to find ...
3
votes
0answers
55 views

how to create a service that monitors data related to CPU Status, Memory Usage etc

I want to know if we can create a background app (non UI) which monitors data related to systems CPU Status, Memory Usage, Disk Space, Installed Apps using services/BR in android. I know its not ...
3
votes
0answers
41 views

What is the difference between RES and PRES fields in linux procstat

Here is the peace of procstat output: PID START END PRT RES PRES REF SHD FL TP PATH 36502 0x400000 0x45d000 r-x 77 0 23 11 CN vn ...
3
votes
0answers
257 views

Maximum memory allocation on openCL CPU

I have read that there's a limit to the maximum memory allocation to around 60% of device memory, and these can be changed by modifying the GPU_MAX_HEAP_SIZE and GPU_MAX_ALLOC_SIZE environment ...
3
votes
0answers
950 views

Consumer closed input channel or an error occurred. events=0x8

So, I was testing my app out on various devices, and on some with less memory, it decides to crash after playing for a while. I think I have a memory leak somewhere, but that isn't the issue. When ...
3
votes
0answers
320 views

Live Wallpaper - “Set Wallpaper” - Need event to use to clear memory

I've created a Live Wallpaper that displays an animation by storing 70 or so images in an array and then displays them one at time to create the animation. I used the structure of the CubeEngine to ...
3
votes
0answers
111 views

WPF : Focus delay when clicked away and back to the app

I have a datagrid inside the WPF application and I need to have it very responsive so that the user can work on one screen with Excel and on the other screen work with WPF application's datagrid. ...
3
votes
0answers
613 views

Anti debugging - Preventing memory dumps

I am trying to implement some basic anti debugging functionality in my application. One area that I wanted to focus on in particular, is attempting to prevent people from easily taking a usable memory ...
3
votes
0answers
960 views

4.6 QWebView memory leaks?

I wrote a quick test app to use the google analytics scripts in a client app. It works fine using QWebView and QWebFrame* pFrame = m_pWebView->page()->mainFrame(); ...
2
votes
0answers
70 views

Remove elements (and change size) of std::vector without affecting allocated memory

I'm using code such as the following: const int MY_SIZE = 100000; std::vector<double> v; v.reserve(MY_SIZE); // add no more than MY_SIZE elements to the vector f(v); v.clear(); // again, ...
2
votes
0answers
92 views

How can I find out what's changing the return address of a function in c++

I have a program that behaves weirdly and probably has undefined behaviour. Sometimes, the return address of a function seems to be changed, and I don't know what's causing it. The return address is ...
2
votes
0answers
51 views

Am I short on pc memory, or found a blob size limitation?

Working on Plone project - thinking I have a pc memory problem, or a blob size limitation. Project is to create folders for database of airports worldwide, and am only up to P's Traceback ...
2
votes
0answers
60 views

Need to get info about objects in Permgen

I want to get info about what contents are getting placed into permgen. Using "jmap -permstat PID;", i am able to get list of classes, classloaders and no. of bytes occupied but what i really want to ...
2
votes
0answers
71 views

CUDA memory (type) for device only calculation during kernel calls (compute 1.1 or 1.2)

I'm currently learning CUDA and my algorithm has to do some heavy calculations based on some input data. Those calculations are made in a loop that spins up to 1024 rounds. Everything works fine as ...
2
votes
0answers
67 views

The missing address space in 64-bit Windows

In today x86-64 processors, the usable address space is 48 bits long and is separated into two halves. One is from 00000000`00000000 to 00007fff`ffffffff, another one is from ffff8000`00000000 to ...
2
votes
0answers
91 views

How to cut down RAM consumption when moving a picture inside a picturebox?

I'm trying to do a "googlemaps effect" this way: I have a huuge picture so I cut a reasonably big picture out of it (2000x2000). Let us call it cachedImage. Now I want to be able to drag and move ...
2
votes
0answers
137 views

C++ Memory Scanning

I have a application that I need to scan for certain datatypes in the memory. To get some benchmarking tests, I whipped up this program : long count = 0; MEMORY_BASIC_INFORMATION meminfo; unsigned ...
2
votes
0answers
99 views

Android Game loop, Memory and animations

I'm new in Android and i'm developing the Insult Swordfighting of Monkey Island 1, but i'm facing some noob problems :) This is my GameLoop: public class MainThread extends Thread { private static ...
2
votes
0answers
87 views

Invalid pointer when using global variables/lambda functions in python?

I've come across a bit of a strange bug, and I'm really not sure what's causing it. I have a list containing lambda functions, and i have set this list to be a global variable as shown below. The ...
2
votes
0answers
64 views

At what point does javascript allocate a memory slot for a variable(in OO context)?

I'm looking for a very specific answer to my question. The question is as per title, here's a sample case: function MyObject(){ this.value = null; //do we allocate a piece of memory of some sort ...
2
votes
0answers
103 views

How to handle multiple pages buffers and scatterlists for Linux Crypto API?

I am facing some trouble processing large buffers. Since I was testing my code only on quite small buffers (not larger than PAGE_SIZE), I have not met this before. The code is simply about ciphering ...
2
votes
0answers
180 views

javaFX Memory release , javaFX bug?

I found when switch pages frequently in the javaFX sample Ensemble.jar, memory will get higher an higher and can't release. This also happened in my project. Is that a bug of javaFX? Now our testers ...
2
votes
0answers
119 views

Java Max Heap Memory - Code is Stopping?

I am loading a big text file into memory (filling a class with a table to hold all the data). Text files range from several MB to 1 GB. However when loading a text file around 100 MB my java app ...
2
votes
0answers
54 views

Linking/build vernacular/jargon - Dynamic linking methods

I'm familiar with general program memory layout (ie: text segment, data segment, heap, stack, etc), and am trying to find something similar to the description and diagrams here: ...
2
votes
0answers
55 views

Why does host_statistics64() return inconsistent results?

Why does host_statistics64() in OS X 10.6.8 (I don't know if other versions have this problem) return counts for free, active, inactive, and wired memory that don't add up to the total amount of ram? ...
2
votes
0answers
101 views

my process is mapping to PCI memory hole, why?

I modify the kernel and walk the page table myself to get the physical address of one process's code sectoin. I pass "(current->mm)->start_code" as parameter. The function I use is as below: ...
2
votes
0answers
275 views

What's the most storage efficient Octree structure for reconstruction?

I've coded a full octree implementation without too much optimization for 3D reconstruction, however, the tree structure contains too many pointers, and cannot support more than 256^3 voxels. ...
2
votes
0answers
125 views

How to free memory after deleting an object

I am contacting you directly as I am unable to find the solution by myself. I am loading huge shapePoly using the readShapePoly function. I do some treatments on them and substraction in order to work ...
2
votes
0answers
313 views

EditText causing memory leak

Intro: I have an app which has the following structure: ActionBar up top (ActionBarSherlock) ViewPagerIndicator below that (for tabs) ViewPager (hosts Fragments) I have a problem that one of my ...
2
votes
0answers
141 views

How to convert a D3D9 surface's D3DPOOL type from D3DPOOL_DEFAULT to D3DPOOL_SYSTEMMEM?

I have a D3DPOOL_DEFAULT type surface and I want to convert it into a D3DPOOL_SYSTEMMEM. I know UpdateSurface does the opposite.
2
votes
0answers
44 views

MITLM smoothing

I have problem with smoothing large files of 3-grams counts. I use :estimate-ngram -order 3 -counts allgrams -smoothing FixModKN -wl allgrams.FixModKN.lm command and i get this error: Saving LM to ...
2
votes
0answers
19 views

How to assing IO memory and IRQs

I need to provide memory and IRQ resources to the Linux kernel in order to bring up the CAN controller. Have no idea how to get them. Below is the structure I need to fill in. This structure I have ...
2
votes
0answers
109 views

How to access Classloaders/App Linearalloc classinformation size?

INFO: Its not the LinearAlloc problem which should be solved here! Hi, my problem is the analysis of a LinearAlloc exceeded capacity error(1). While i already have a solution for the error, i still ...
2
votes
0answers
122 views

Updating a file without allocating it in memory - IOS

I am trying to sequentially overwrite bytes on an existing file filled with 0s. I simply opened the file this way: File *filePointer = fopen(filePath, "rb+"); and then I write in the file this ...
2
votes
0answers
89 views

Lightweight Alternative to XmlTextReader.ReadElementContentAsBinHex?

I'm running into a problem with memory bloat using XmlTextReader.ReadElementContentAsBinHex. Let me first say that I'm not using hex by choice, but as a result of needing to interop with a legacy ...
2
votes
0answers
428 views

CFString (immutable) memory usage keeps on growing in IOS application

I'm checking the memory usage of my IOS application using instruments, and found that CFString keeps on being allocated and growing. I used StringWithFormat method, not something like [[NSString ...
2
votes
0answers
118 views

How I can get the peak memory on Mac OS?

In Windows I can get the Peak Memory usage by calling GetProcessMemoryInfo function TProcess.Peek: Cardinal; var PMC: PPROCESS_MEMORY_COUNTERS; PMCSize: Cardinal; begin PMCSize := ...
2
votes
0answers
110 views

ios pushViewController loop memory cash

I have problem "How to handle view stack" if I have 2 viewController which can push to themself #sample A,B A can push to B and B can push to A I found this problem when user try to push A -> ...
2
votes
0answers
278 views

Limit Memory allocation to a process in Mac-OS X 10.8

I would like to control the maximum memory, a process can use in Mac-OS X 10.8. I feel that setting ulimit -v should achieve the goals but doesn't seem to be the case. I tried following simple ...
2
votes
0answers
72 views

JFrame smoothly resizing memory leak

For a certain GUI project I'm working on I have a JFrame that contains a pane with tabs and such. For each tab it has a different size, so I wanted to resize the window to that size, but I don't want ...
2
votes
0answers
77 views

node.js extension: Is it possible to set Handle<Value>'s without ::New

I'm writing a node.js extension that has a processing thread, and I need to be able to set some values and then call a javascript callback within the processing loop. When I call String::New or ...
2
votes
0answers
190 views

Django: Uploaded files not being garbage collected, causing memory problems

I have a Django view which handles uploaded files, and when it is called repeatedly, we always encounter over memory errors. (We're on Heroku, so we get 512mb of memory per web dyno). The over ...

1 2 3 4 5 39