This tag is for memory issues in programming. For installing memory, etc. see ServerFault.com or SuperUser.com
24
votes
20answers
20k views
How to dispose a class in .net?
The .net garbage collector will eventually free up memory, but what if you want that memory back immediately? What code do you need to use in a class myclass to call
myclass.dispose
and free up ...
30
votes
4answers
21k views
GCC __attribute__((aligned(x)) explanation
i have the following code:
#include <stdio.h>
int
main(void)
{
float a[4] __attribute__((aligned(0x1000))) = {1.0, 2.0, 3.0, 4.0};
printf("%p %p %p %p\n", &a[0], &a[1], ...
19
votes
4answers
9k views
How to determine maximum stack usage?
What methods are available for determining the optimum stack size for embedded/memory constrained system? If it's too big then memory is wasted that could be used elsewhere. However, if it is too ...
24
votes
10answers
10k views
Circular References in Java
Given an aggregation of class instances which refer to each other in a complex, circular, fashion: is it possible that the garbage collector may not be able to free these objects?
I vaguely recall ...
13
votes
9answers
3k views
Getting a stack overflow exception when declaring a large array
The following code is generating a stack overflow error for me
int main(int argc, char* argv[])
{
int sieve[2000000];
return 0;
}
How do I get around this? I am using Turbo C++ but would ...
9
votes
7answers
15k views
Efficiently counting the number of lines of a text file. (200mb+)
I have just found out that my script gives me a fatal error:
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 440 bytes) in C:\process_txt.php on line 109
That line ...
39
votes
2answers
29k views
How do I profile memory usage in Python? [duplicate]
I've recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it in various ways.
I'm already familiar with the standard Python ...
30
votes
15answers
23k views
Heap corruption under Win32; how to locate?
I'm working on a multithreaded C++ application that is corrupting the heap. The usual tools to locate this corruption seem to be inapplicable. Old builds (18 months old) of the source code exhibit ...
13
votes
5answers
7k views
Java Memory explained (SUN JVM)
I tried to find a interpretation of the memory segments of the sun java vm, which would also understandable by an administrator. It should explain what heap / non-heap memory is and the significance ...
32
votes
13answers
32k views
Size of a byte in memory - Java
I have heard mixed opinions over the amount of memory that a byte takes up in a java program.
I am aware you can store no more than +127 in a java byte, and the documentation says that a byte is only ...
37
votes
11answers
144k views
Eclipse memory settings when getting “Java Heap Space” and “Out of Memory”
When trying to launch and run a flex/java project in eclipse I kept getting a "Out of Memory Exception" and "Java Heap Space" using Eclipse, Tomcat and a JRE.
While researching trying to adjust the ...
14
votes
12answers
9k views
Of Memory Management, Heap Corruption, and C++
So, I need some help. I am working on a project in C++. However, I think I have somehow managed to corrupt my heap. This is based off the fact that I added a std::string to a class and assigning it a ...
6
votes
2answers
2k views
How many times do I release an allocated or retained object?
I am making an iPhone game. I want to release all objects that have been allocated or retained. In the dealloc function I am releasing all such objects, but then I realized that sometimes I end up ...
19
votes
6answers
5k views
Circular References Cause Memory Leak?
I'm trying to run down a memory leak in a windows forms application. I'm looking now at a form which contains several embedded forms. What worries me is that the child forms, in their constructor, ...
8
votes
7answers
13k views
java.lang.OutOfMemoryError: PermGen space
I am getting follwoing error frequently in eclipse IDE 3.2, how do I solve it
java.lang.OutOfMemoryError: PermGen space
java.lang.ClassLoader.defineClass1(Native Method)
...
5
votes
5answers
9k views
Shared memory between 2 processes (applications)
I cant find any useful answer for this question, although it has been asked in a different way several times
I want to share a memory between 2 processes (2 different applications).
so that one of ...
5
votes
7answers
1k views
How to save memory when reading a file in Php?
I have a 200kb file, what I use in multiple pages, but on each page I need only 1-2 lines of that file so how I can read only these lines what I need if I know the line number?
For example if I need ...
26
votes
6answers
7k views
Multithreaded Memory Allocators for C/C++
Hi I currently have heavily multithreaded server application, and I'm shopping around for a good multithreaded memory allocator.
So far I'm torn between:
-Sun's umem
-Google's tcmalloc
-Intel's ...
21
votes
5answers
3k views
Difference between pointer to a reference and reference to a pointer
What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?
Where should one be preferred over the other?
28
votes
5answers
12k views
PHP memory profiling
What's a good way to profile a PHP page's memory usage? For example, to see how much memory my data is using, and/or which function calls are allocating the most memory.
xdebug doesn't seem to ...
24
votes
4answers
4k views
How are multi-dimensional arrays formatted in memory?
In C, I know I can dynamically allocate a two-dimensional array on the heap using the following code:
int** someNumbers = malloc(arrayRows*sizeof(int*));
for (i = 0; i < arrayRows; i++) {
...
19
votes
3answers
9k views
In-memory size of python stucture
Does someone know of a good reference card for the memory size of python data stucture on 32 and 64 bit platforms ?
If not, this would be nice to have it on SO. The more exhaustive the better ! So ...
15
votes
8answers
5k views
Purpose of memory alignment
Admittedly I don't get it. Say you have a memory with a memory word of length of 1 byte. Why can't you access a 4 byte long variable in a single memory access on an unaligned address(i.e. not ...
18
votes
15answers
9k views
Why aren't pointers initialized with NULL by default?
I guess this have been answered before, but I just couldn't find the answer here or on Google, but I think that it is because I couldn't type the right question...
Can someone please explain why ...
25
votes
6answers
2k views
Have I reached the limits of the size of objects JavaScript in my browser can handle?
I'm embedding a large array in <script> tags in my HTML, like this (nothing surprising):
<script>
var largeArray = [/* lots of stuff in here */];
</script>
In this particular ...
10
votes
5answers
11k views
Python: How to read huge text file into memory
I'm using Python 2.6 on a Mac Mini with 1GB RAM. I want to read in a huge text file
$ ls -l links.csv; file links.csv; tail links.csv
-rw-r--r-- 1 user user 469904280 30 Nov 22:42 links.csv
...
14
votes
4answers
2k views
when does Python allocate new memory for identical strings?
Two Python strings with the same characters, a == b,
may share memory, id(a) == id(b),
or may be in memory twice, id(a) != id(b).
Try
ab = "ab"
print id( ab ), id( "a"+"b" )
Here Python recognizes ...
13
votes
2answers
4k views
How is CUDA memory managed?
When I run my CUDA program which allocates only a small amount of global memory (below 20 M), I got a "out of memory" error. (From other people's posts, I think the problem is related to memory ...
9
votes
5answers
21k views
How to set the maximum memory usage for JVM?
I want to limit the maximum memory used by the JVM. Note, this is not just the heap, I want to limit the total memory used by this process.
5
votes
4answers
3k views
Can't get past 2542 Threads in Java on 4GB iMac OSX 10.6.3 Snow Leopard (32bit)
I am running the following program trying to figure out how to configure my JVM to get the maximum number of threads my machine can support. For those that might not know, Snow Leopard ships with Java ...
3
votes
2answers
21k views
PHP Warning: POST Content-Length of 113 bytes exceeds the limit of -1988100096 bytes in Unknown
I have been having lot of problems with users uploading images on my website.
They can upload up to 6 images
Originally I had to change values in php.ini to:
upload_max_filesize = 2000M
...
4
votes
9answers
3k views
Rounding Errors?
In my course, I am told:
Continuous values are represented
approximately in a memory, and
therefore computing with floats
involves rounding errors. These are
tiny discrepancies in bit ...
4
votes
2answers
10k views
iPhone Development - Memory limitation for iphone application
Can anyone point into the right direction here. I want to respond when my application receives memory warning, (i want to know how to respond to this notification). Plus, How much memory can i wire ...
79
votes
8answers
93k views
how to find out which processes are swapping in linux? [closed]
Under Linux, how do I find out which process is using the swap space more?
Any scripts/links appreciated..
36
votes
4answers
55k views
MySQL maximum memory usage
I would like to know how it is possible to set an upper limit on the amount of memory MySQL uses on a Linux server. Right now, MySQL will keep taking up memory with every new query requested so that ...
39
votes
3answers
24k views
Javascript memory profiler for Firefox
Is there a tool/plugin/function for Firefox that'll dump out a memory usage of Javascript objects that you create in a page/script? I know about Firebug's profiler but I'd like something more than ...
27
votes
10answers
11k views
Can you allocate a very large single chunk of memory ( > 4GB ) in c or c++?
With very large amounts of ram these days I was wondering, it is possible to allocate a single chunk of memory that is larger than 4GB? Or would I need to allocate a bunch of smaller chunks and handle ...
24
votes
3answers
22k views
How is malloc() implemented internally?
Can anyone explain how malloc() works internally?
I have sometimes done strace program and I see a lot of sbrk system calls, doing man sbrk talks about it being used in malloc() but not much more.
...
12
votes
6answers
26k views
Recurring “PermGen” in Tomcat 6
I keep getting a "PermGen" error on my Tomcat 6 server.
I know what application is causing the problem, but I am not sure why it is doing so. The application is using MySQL 5 and running on JDK 6.
...
98
votes
8answers
3k views
In C, do braces act as a stack frame?
If I create a variable within a new set of curly braces, is that variable popped off the stack on the closing brace, or does it hang out until the end of the function? For example:
void foo() {
...
17
votes
8answers
11k views
SQLite Performance Benchmark — why is :memory: so slow…only 1.5X as fast as disk?
Why is :memory: in sqlite so slow?
I've been trying to see if there are any performance improvements gained by using in-memory sqlite vs. disk based sqlite. Basically I'd like to trade startup time ...
10
votes
4answers
6k views
Allocating more than 1,000 MB of memory in 32-bit .NET process
I am wondering why I'm not able to allocate more that 1,000 MB of memory in my 32-bit .NET process. The following mini application throws an OutOfMemoryException after having allocated 1,000 MB. Why ...
9
votes
7answers
8k views
memory layout c++ objects
I am basically wondering how C++ lays out the object in memory. So, I hear that dynamic casts simply asjusts the object's pointer in memory with an offset; and reinterpret kind of allows us to do ...
21
votes
7answers
4k views
How to get around the memory leak in the .NET Webbrowser control?
This is a widely-known, old issue with the .NET Webbrowser control.
Summary: Having the .NET webbrowser control Navigate to a page increases memory usage that is never freed.
Reproduce the memory ...
21
votes
5answers
10k views
How can i estimate memory usage of stl::map?
For example, I have a std::map with known sizeof(A) and sizefo(B), while map has N entries inside. How would you estimate its memory usage?
I'd say it's something like
(sizeof(A) + sizeof(B)) * N * ...
20
votes
6answers
3k views
Do class/struct members always get created in memory in the order they were declared?
This is a question that was sparked by Rob Walker's answer here.
Suppose I declare a class/struct like so:
struct
{
char A;
int B;
char C;
int D;
};
Is it safe to assume that ...
8
votes
5answers
1k views
What Rules does compiler have to follow when dealing with volatile memory locations?
I know when reading from a location of memory which is written to by several threads or processes the volatile keyword should be used for that location like some cases below but I want to know more ...
8
votes
8answers
28k views
Java heap space out of memory
My application currently consumes quite a lot of memory because it is running physics simulations. The issue is that consistently, at the 51st simulation, java will throw an error usually because of a ...
14
votes
3answers
8k views
Does garbage collector call Dispose()?
I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.
However, from my little test program, ...
12
votes
1answer
977 views
How do I call the original “operator new” if I have overloaded it?
Suppose I need to overload global ::operator new() for storing extra data with each allocated object. So basically it would work this way:
for each call to global ::operator new() it will take the ...
