1
vote
2answers
74 views
How does free calculate used memory?
How does free calculate used memory and why does it differ from what /proc reports?
# cat /proc/*/status | grep VmSize | awk '{sum += $2} END {print sum}'
281260
But free says:
# free
…
0
votes
2answers
14 views
Memory warning after using the UIImagePicker once
Hi, I've referred to this very good reference: http://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more but I'm having some very serious issues. After I take a photo, …
3
votes
0answers
32 views
How do I structure the memory map in an N64 emulator?
According to Wikipedia, the N64 only has 4 MB of RDRAM (8 MB with the Expansion Pack), and the other quantities are similarly small (4 KB or so of L1 cache). However, technical documents I have found …
0
votes
3answers
41 views
PostgreSQL In Memory Database
Hi, I want to run my PostgreSQL database server from memory. The reason is that on my new server, I have 24 GB of memory, and hardly any of it is used.
I know I can run this command to make a …
1
vote
2answers
56 views
dynamic allocation/deallocation of 2D & 3D arrays
I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays.
Using this knowledge and a bit of symmetry, I came up with the following …
1
vote
3answers
28 views
Tomcat per webapp memory settings
I am having two webapplication running inside tomcat. Java Heap space is allocated for Tomcat and it is shared for both appliaction. In that one application consumes more and other is getting …
1
vote
3answers
83 views
How is memory allocated for a static multi-dimensional array?
All,
This has been bugging me for a while now. In C\C++( i guess java and .NET as well) we do not have to specify the row index in a multi-dimensional array.
So, for example i can declare an array …
0
votes
1answer
20 views
GWT + Object Persistence + Maintaining Data In Memory
Hi,
I am currently carrying out research for the design and implementation of a web-based RSS aggregation system, with the aim being the use and evaluation of recommendation algorithms.
This system …
0
votes
2answers
88 views
What can cause “corrupted double-linked list” error?
I am having problems with a fairly complex code. I wasn't able to produce a short snippet that reproduces the error, so I'll try to explain the problem in words.
The code crashes randomly with the …
0
votes
1answer
30 views
Java Clip (Sound / Audio) Memory Leak after closing with close()
The following code creates a new audio clip, plays it, sleeps for 3 seconds and then closes it when it is finished playing. Despite the call to close(), I am watching the memory usage of the jvm go up …
0
votes
2answers
30 views
collections on appdelegate get stomped
I am a 15 year veteran of C++ and thought I could easily handle the memory issues on the iPhone. But I have been humbled by this new environment at several turns. Here is my problem. I hope I am …
0
votes
4answers
142 views
Does my code leak memory (python)?
links_list = char.getLinks(words)
for source_url in links_list:
try:
print 'Downloading URL: ' + source_url
urldict = hash_url(source_url)
…
0
votes
1answer
11 views
Code leaks memory, seems to be coming from ID3DXBuffer, unsure why..
I load a shader with the following:
ID3DXBuffer* errors = 0; ID3DXEffect
*effect = 0;
HR(D3DXCreateEffectFromFile(
gd3dDevice, L"Shader.fx", 0, 0,
…
1
vote
5answers
191 views
Memory Leak in C
Hello,
I am a C beginner, and I am writing a very simple linked-list. I am wondering if there would be a memory leak in the following code:
void removeListEntry(struct tableEntry *symp, struct …
0
votes
0answers
17 views
Is my centOS dedicated server caching disk files appropriately, or not? [closed]
Here's the head of the top output from my centOS 5 server, at a moment with very low load. What I want to know is whether it is using its free memory wisely to cache files from disk. Of 2G of RAM, …
