This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com
20
votes
3answers
26k views
What is 'PermSize' in Java?
I was going through the document in Java Memory Management and in that I came across PermSize which I couldn't understand. The document says that it stores, "JVM stores its metadata", but I couldn't ...
18
votes
8answers
24k views
Explicitly freeing memory in c#
I've create a c# application which uses up 150mb of memory (private bytes), mainly due to a big dictionary:
Dictionary<string, int> Txns = new Dictionary<string, int>();
I was wondering ...
33
votes
9answers
7k views
jQuery or javascript to find memory usage of page
Is there a way to find out how much memory is being used by a web page, or by my jquery application?
Here's my situation:
I'm building a data heavy webapp using a jquery frontend and a restful ...
35
votes
6answers
6k views
Python subprocess.Popen “OSError: [Errno 12] Cannot allocate memory”
Note: This question was originally asked here but the bounty time expired even though an acceptable answer was not actually found. I am re-asking this question including all details provided in the ...
17
votes
5answers
10k views
Best way for interprocess communication in C++
I have two processes one will query other for data.There will be huge amount of queries in a limited time (10000 per second) and data (>100 mb) will be transferred per second.Type of data will be an ...
12
votes
12answers
16k views
C++ Multi-dimensional Arrays on the Heap
I went looking for this the other day, and thought it should probably be added to StackOverflow's reservoir of questions.
How would I go about dynamically allocating a multi-dimensional array?
8
votes
6answers
2k views
How is read-only memory implemented in C?
I heard that in C, if I do
char *s = "hello world".
the "hello world" is actually stored in read-only memory.
I am not so clear about read-only memory. What is the explanation? Is that like a ...
15
votes
9answers
4k views
How to print out the memory contents of a variable in C?
Suppose I do a
double d = 234.5;
I want to see the memory contents of d [the whole 8 bytes]
How do I do that?
11
votes
3answers
5k views
What tools and techniques do you use to fix browser memory leaks?
I am trying to fix memory leaks in IE 7. Using Drip for investigations but it is not helping much when most dynamically generated DOM elements do not have unique ids.
Tips?
10
votes
5answers
3k views
Android AdMob causes memory leak?
I've integrated AdMob v4.1.0 into my application and it seems to have caused a huge memory leak (pretty sure that it already happened on 4.0.4).
In order to isolate the problem I created a new ...
10
votes
6answers
3k views
How do I allocate a std::string on the stack using glibc's string implementation?
int main(void)
{
std::string foo("foo");
}
My understanding is that the above code uses the default allocator to call new. So even though the std::string foo is allocated on the stack the ...
7
votes
5answers
872 views
Differences between dynamic memory and “ordinary” memory
What are some of the technical differences between memory that is allocated with the new operator and memory that is allocated via a simple variable declaration, such as int var? Does c++ have any ...
7
votes
4answers
3k views
Difference between 'global' and 'static global'
A global variable's scope is in all the files.. while a static global variable's scope is just the file where it is declared.. why so ? where are global or static global variables stored in memory ?
6
votes
5answers
14k views
Create a Java File object (or equivalent) using a byte array in memory (without a physical file)
I want to create a Java File object in memory (without creating a physical file) and populate its content with a byte array.
Can this be done?
The idea is to pass it to a Spring InputStreamSource. ...
20
votes
9answers
7k views
How to detect possible / potential stack overflow problems in a c / c++ program?
Is there a standard way to see how much stack space your app has and what the highest watermark for stack usage is during a run?
Also in the dreaded case of actual overflow what happens?
Does it ...
17
votes
5answers
5k views
What is the best way to access memory in Java, similar to mmap?
I'm working on a Java application that needs to communicate with a C application. The C application uses shared memory and mmap to communicate, and I need the Java application to have access to the ...
13
votes
9answers
3k views
Maximum .NET achievable memory?
Which is the maximum amount of memory one can achieve in .NET managed code? Does it depend on the actual architecture (32/64 bits)?
12
votes
3answers
2k views
What does Bitmap#recycle() in Android Honeycomb actually DO?
I am writing a very memory intensive application for Android Honeycomb, and I've been very careful to recycle() unused Bitmaps wherever possible; indeed, this is necessary for the application to work ...
12
votes
5answers
4k views
Smart pointers/safe memory management for C?
I, and I think many others, have had great success using smart pointers to wrap up unsafe memory operations in C++, using things like RAII, et cetera. However, wrapping memory management is easier to ...
10
votes
3answers
814 views
Garbage Collection not happening even when needed
I made a 64-bit WPF test app. With my app running and with Task Manager open, I watch my system memory usage. I see I'm using 2GB, and I have 6GB available.
In my app, I click an Add button to add a ...
8
votes
4answers
4k views
What is the difference between a segmentation fault and a stack overflow?
For example when we call say, a recursive function, the successive calls are stored in the stack. However, due to an error if it goes on infinitely the error is 'Segmentation fault' (as seen on GCC).
...
6
votes
7answers
5k views
memcpy performance differences between 32 and 64 bit processes
We have Core2 machines (Dell T5400) with XP64.
We observe that when running 32-bit processes,
the performance of memcpy is on the order of
1.2GByte/s; however memcpy in a 64-bit process
achieves ...
2
votes
1answer
2k views
Low memory with 640Kb of live bytes?
i've a problem with my application that need to display a lot of images and video.
After running ObjectAlloc tool, i see that the live bytes is 640Kb and the overall memory is 31,54Mb when the ...
21
votes
9answers
3k views
Why does boolean consume more memory than char?
Why does a Boolean consume 4 bytes and a char 2 bytes in the .NET framework? A Boolean should take up 1bit or at least be smaller than a char.
13
votes
6answers
2k views
How do you read directly from physical memory?
In C or C++ (windows), how do you read RAM by giving a physical (not virtual) address?
That means without going trough virtual memory system (mmu tables), and being specific to one process.
I already ...
11
votes
4answers
11k views
Memory usage in C#
I have a program that uses threads in C#. Is there a way to know programmatically the memory usage of the application? I want to limit the spawning of threads to say 10 megabytes of memory, how ...
9
votes
3answers
5k views
Android get free size of internal/external memory
I want to get the size of free memory on internal/external storage of my device programmatically. I'm using this piece of code :
StatFs stat = new ...
7
votes
3answers
3k views
How can I load large files (~150MB) in MATLAB?
I have a large MATLAB file (150MB) in matrix form (i.e. 4070x4070). I need to work on this file in MATLAB but I can't seem to load this file. I am getting an "out of memory" error. Is there any ...
7
votes
1answer
4k views
Debugging memory leaks with Node.js server
We have a memory leak that is causing our Node server to run out of process memory. What are some suggestions / tools that would help us debug this?
5
votes
4answers
5k views
16 bit Int vs 32 bit Int vs 64 bit Int
I've been wondering this for a long time since I've never had "formal" education on computer science (I'm in highschool), so please excuse my ignorance on the subject.
On a platform that supports the ...
0
votes
2answers
3k views
Is it legal to use the well-known free memory code in ipad/iphone app? [closed]
Memory is an issue for iphone ipad app, especially for ipad, if one wants to do something big.
Well, these two snippets of codes can 1. get current available memory of the device; 2. force free ...
16
votes
15answers
4k views
What happens when you try to free() already freed memory in c?
For example:
char * myString = malloc(sizeof(char)*STRING_BUFFER_SIZE);
free(myString);
free(myString);
Are there any adverse side effects of doing this?
12
votes
1answer
574 views
Memory profiler for numpy
I have a numpy script that -- according to top -- is using about 5GB of RAM:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
16994 aix 25 0 5813m 5.2g 5.1g S 0.0 22.1 ...
12
votes
5answers
2k views
Python deep getsizeof list with contents?
I was surprised that sys.getsizeof( 10000*[x] )
is 40036 regardless of x: 0, "a", 1000*"a", {}.
Is there a deep_getsizeof
which properly considers elements that share memory ?
(The question came from ...
12
votes
2answers
4k views
How to make a .NET application “large address aware”?
Assuming I have booted a 32-bit Windows Server with the /3GB switch, how can I make a .NET application use the additional address space?
9
votes
1answer
1k views
Matlab: Free memory is lost after calling a function
Hey,
I have some troubles with memory management in Matlab. Finally it leads to not enough free memory and an error.I tried to pinpoint the problem and found one interesting "feature": Somehow I ...
8
votes
7answers
3k views
How to handle realloc when it fails due to memory?
Question says it all but here is an example:
typedef struct mutable_t{
int count, max;
void **data;
} mutable_t;
void pushMutable(mutable_t *m, void *object)
{
if(m->count == ...
8
votes
5answers
18k views
Steps in the memory allocation process for Java objects
What happens in the memory when a class instantiates the following object?
public class SomeObject{
private String strSomeProperty;
public SomeObject(String strSomeProperty){
...
7
votes
5answers
7k views
Memory alignment on a 32-bit Intel processor
Intel's 32-bit processors such as Pentium have 64-bit wide data bus and therefore fetch 8 bytes per access. Based on this, I'm assuming that the physical addresses that these processors emit on the ...
6
votes
2answers
3k views
.NET Max Memory Use 2GB even for x64 Assemblies
I've read (http://blogs.msdn.com/joshwil/archive/2005/08/10/450202.aspx) that the maximum size of an object in .NET is 2 GB.
Am I correct in assuming that if I have an Object that takes up 256 MB ...
4
votes
1answer
427 views
Pass large amount of binary data from u-boot to linux kernel
Have some issues with passing large amount of data (3 MB) from uboot to linux kernel 2.6.35.3 on imx50 ARM board. This data is required in kernel device driver probe function and then it should be ...
4
votes
3answers
2k views
Is there a memory profiler for python2.7?
I needed to check the memory stats of objects I use in python.
I came across guppy and pysizer, but they are not available for python2.7.
Is there a memory profiler available for python 2.7?
If not is ...
4
votes
6answers
5k views
C#: Search a byte[] array in another process's memory
How is it possible to search for a byte[] array in the memory of another process and then get the address at the place where the byte[] array is located?
I want to write a byte array into the memory ...
2
votes
3answers
6k views
Unmanaged VC++ Application's memory consumption on windows server
OK, so I have a very large multi-threaded unmanaged c++ application (server) that runs on a windows 2003 server. It hosts sessions for 20-50 concurrent users doing all sorts of business logic... At ...
25
votes
9answers
16k views
How much memory can a 32 bit process access on a 64 bit operating system?
This is a windows question. I know under normal circumstances a 32 bit process can only access 2GB of RAM (or 3GB with a special switch in the boot.ini file). When running a 32 bit process on a 64 bit ...
13
votes
6answers
1k views
Can SHA-1 algorithm be computed on a stream? With low memory footprint?
I am looking for a way to compute SHA-1 checksums of very large files without having to fully load them into memory at once.
I don't know the details of the SHA-1 implementation and therefore would ...
12
votes
2answers
515 views
Why wrapping the Data.Binary.Put monad creates a memory leak?
I'm trying to wrap the Data.Binary.Put monad into another so that later I can ask it questions like "how many bytes it's going to write" or "what is the current position in file". But even very ...
11
votes
2answers
4k views
Returning object from function
I am really confused now on how and which method to use to return object from a function. I want some feedback on the solutions for the given requirements.
Scenario A:
The returned object is to be ...
8
votes
6answers
5k views
How do I create a (32-bit) .NET application to use 3 GB RAM?
I am creating a .NET application (C#) that needs to use a lot of RAM. I recently knew that on 32-bit versions of Windows XP I can only use 2 GB, unless I use the /3Gb switch, and set the ...
6
votes
2answers
3k views
Execute an EXE File from Resource into Memory
I want to execute an EXE File that is compiled with my application as a Resource. I want to execute it directly in Memory.
I have seen this Topic :
Is it possible to embed and run exe file in a ...