Tagged Questions

A large pool of unused memory area called the heap, used for memory allocation

learn more… | top users | synonyms

48
votes
8answers
1k views

To GC or Not To GC

I've recently seen two really nice and educating languages talks: This first one by Herb Sutter, presents all the nice and cool features of C++0x, why C++'s future seems brighter than ever, and how ...
33
votes
2answers
882 views

Good introductory text about GHC implementation?

When programming in Haskell (and especially when solving Project Euler problems, where suboptimal solutions tend to stress the CPU or memory needs) I'm often puzzled why the program behaves the way it ...
26
votes
6answers
3k views

Why are two different concepts both called “heap”?

Why are the runtime heap used for dynamic memory allocation in C-style languages and the data structure both called "the heap"? Is there some relation?
22
votes
4answers
3k views

How does the JVM ensure that System.identityHashCode() will never change?

Typically the default implementation of Object.hashCode() is some function of the allocated address of the object in memory (though this is not mandated by the JLS). Given that the VM shunts objects ...
13
votes
2answers
612 views

Haskell Heap Issues with Parameter Passing Style

Here's a simple program that blows my heap to Kingdom Come: intersect n k z s rs c | c == 23 = rs | x == y = intersect (n+1) (k+1) (z+1) (z+s) (f : rs) (c+1) | x < y = intersect ...
10
votes
2answers
249 views

Java heap space out of memory

The following code is causing Java heap space out of memory for some 3 million rows. Memory allocated to JVM is 4 GB, using 64 bit installation. while (rs.next()) { ArrayList<String> ...
8
votes
3answers
168 views

What's the best way of finding a heap corruption that only occurs under a performance test?

The software I work (written in C++) on has a heap corruption problem at the moment. Our perf test team keep getting WER faults when the number of users logged on to the box reaches a certain ...
7
votes
2answers
634 views

How to avoid MATLAB crash when opening too many figures?

Sometimes I start a MATLAB script and realize too late that it is going to output way too many figures. Eventually I get an Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Java ...
7
votes
2answers
140 views

Haskell batched file processing does not improve space profile

I have a simple algorithm to implement: compare each line with each other line. Each line contains one number, and the comparison function is the distance. The sum of all distances is the final ...
7
votes
2answers
264 views

Do I need to understand how Haskell represents data to be able to write good Haskell programs?

I'm learning Haskell from a Java background. When I program Java, I feel like I have a strong understanding of how objects are laid out in memory and the consequences of this. For example I know ...
7
votes
5answers
1k views

Can you declare a pointer on the heap?

This is the method for creating a variable on the heap in C++: T *ptr = new T; ptr refers to a pointer to the new T, obviously. My question is, can you do this: T *ptr = new T*; That seems like ...
6
votes
2answers
106 views

Where will the memory allocation for a string in C will take place

For the C statement given below i would like to know where the memmory allocation will take place. char* ptr="Hello";//ptr is a automatic variable then the pointer variable ptr will be allocated on ...
6
votes
4answers
11k views

Detect application heap size in Android

How do you programmatically detect the application heap size available to an Android app? I heard there's a function that does this in later versions of the SDK. In any case, I'm looking for solution ...
6
votes
2answers
1k views

How is heap and stack memories managed, implemented, allocated?

In C/C++ we can store variables, functions, member functions, instances of a class either on a stack or a heap. How is each implemented? How is it managed (high level)? Does gcc preallocates a ...
5
votes
5answers
144 views

Can we store instructions in dynamically allocated memory in C language?

Its well known that we can store DATA in dynamically allocated memory. However, I was wondering if we can store NEW INSTRUCTIONS or NEW FUNCTIONS on the heap? Any real applications? Preparing for ...
5
votes
1answer
135 views

What allocating method to use for a high volume logger application?

I'm developing a logger/sniffer using Delphi. During operation I get hugh amounts of data, that can accumulate during stress operations to around 3 GB of data. On certain computers when we get to ...
5
votes
3answers
233 views

Why a sawtooth shaped graph?

When i run the below mentioned code (using netbeans),the allocated heap size varies in a sawtooth shape.I am attaching the capture from jVisualVM which shows the used heap graph in a sawtooth ...
5
votes
2answers
946 views

JVM Tenured/Old gen reached limit & server hanging

Our application requires very huge memory since it deals with very large data. Hence we increased our max heap size to 12GB (-Xmx). Following are the environment details OS - Linux ...
5
votes
4answers
16k views

java.lang.OutOfMemoryError: GC overhead limit exceeded

I am getting this error in a program that creates several (hundreds of thousands) HashMap objects with a few (15-20) text entries each. These Strings have all to be collected (without breaking up into ...
5
votes
4answers
498 views

C++ Heap Corruption

I haven't done any C++ in a while, but decided to finish a big project I was working on for someone. I am getting the following error message now though... HEAP CORRUPTION DETECTED: after Normal ...
5
votes
2answers
444 views

programatically setting max java heap size

Is there a way to set the max java heap size programatically instead of as a vm argument? Something like: System.getProperties().put("<heap variable>", "1000m");
5
votes
1answer
350 views

Scala - High heap usage when performed XML.loadFile on large number of files in local scope

I am trying to create an object tree from large number of xmls. However, when I run the following code on about 2000 xml files(ranging from 100KB to 200MB) (note that I have commented out the code ...
5
votes
5answers
349 views

in C: Why does a stack allocated structure exist outside of the function?

my function: struct hostent * gethost(char * hostname){ if(/*some condition under which I want to change the mode of my program to not take a host*/){ return null } else{ ...
4
votes
2answers
285 views

Java heap size problem in MATLAB

I am trying to run a java program through MATLAB. When my input file is a small size, it works fine. But when I increase the file size, and in turn increase my heap size I get this error message: ...
4
votes
7answers
544 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 ...
4
votes
2answers
90 views

How does the amount of memory for a process get determined?

From my understanding, when a process is under execution it has some amount of memory at it's disposal. As the stack increases in size it builds from one end of the process (disregarding global ...
4
votes
2answers
244 views

how to use windbg track memory allocated with VirtualAlloc?

you know how you can use gflags wih +ust to get the call stack paired with each allocation. you can then use !heap in windbg to diagnose leaks? I want to do this with large allocations made through ...
4
votes
3answers
2k views

java.lang.OutOfMemoryError: requested 1958536 bytes for Chunk::new. Out of swap space

We are facing the below problem at our production enviournment in unpredictable manner sometimes the server is down in a day or sometimes in a week, below is the exact error dump, below are the ...
4
votes
1answer
168 views

Limiting memory usage when reading files

I'm a Haskell beginner and thought this would be good exercise. I have an assignment where I need to read file in a thread A, handle the file lines in threads B_i, and then output the results in ...
4
votes
2answers
715 views

How do I see memory allocation in a given .NET application?

I need to check how much memory is allocated in the heap. Is there a way to get this value programmatically with C#? I know about the System.Runtime.InteropServices.Marshal.SizeOf(...) but that only ...
3
votes
4answers
160 views

C++ Program that approximates size of free store (heap)

I'm supposed to write a program that doesn't crash and can approximate the size of the free store (heap memory). And the hint is Hint: Use a loop to allocate, say, 1000000 bytes at a time and add 1 ...
3
votes
4answers
107 views

Java: Filling in-memory sorted batches

So I'm using Java to do multi-way external merge sorts of large on-disk files of line-delimited tuples. Batches of tuples are read into a TreeSet, which are then dumped into on-disk sorted batches. ...
3
votes
1answer
169 views

How to identify the mobile heap memory on runtime using j2me?

I developing j2me application. In this application i need to identify the mobile heap memory on runtime. Is it possible?
3
votes
3answers
305 views

what does stack and heap overflow exploit means

what does this stack and heap over flow exploit mean
3
votes
1answer
502 views

Java Heap Space Exception, with big ammount of data, any solution?

I've a litle big problem with java heap memory I'm trying to migrate from oracle database 11g to access file 2007 This is not a problem below 65.000 records, now from there... The aplication is ...
3
votes
3answers
170 views

Variable created on the heap, 2 pointers pointing to same variable have different addresses?

I just learned the difference between the stack and the heap. After creating a function which will dynamically allocate memory on the heap for me, I return the pointer and display (in and out of the ...
3
votes
2answers
200 views

Question about unions and heap allocated memory

I was trying to use a union to so I could update the fields in one thread and then read allfields in another thread. In the actual system, I have mutexes to make sure everything is safe. The problem ...
3
votes
1answer
2k views

Java heap space Xmx Xms parameters ignored

I have a .JAR that apparently uses up too much memory, and throws an exception "Java heap space" (or something similar). So I tried running the .JAR via the CMD like this: C:\MyFolder>javaw -jar ...
3
votes
3answers
467 views

Compute jvm heap size to host web application

I want to host a web application on a private JVM they offer 32, 64, 128, 256 MB plans. My web application uses Spring. And I store some objects for every logged in user session. My question is: How ...
3
votes
5answers
1k views

Heap error in C

I know this is really general, but I get "this" (see below) when I run my .c file in Visual C++ 2008 Express. It happens when I call malloc (). Take my work on this - I dynamically allocate memory ...
3
votes
3answers
257 views

What is a good resource to read about stack/heap and symbol table concepts?

Please suggest some website or some book that deals with these topics in really good detail. I need to have a better understanding of these concepts (in reference to C++): stack and heaps symbol ...
2
votes
3answers
83 views

Thread-specific heap allocation

Is it possible to make some sub-set of threads (e.g. from specific ThreadPool) allocate memory from own heap? E.g. most of the threads are allocating from regular shared heap, and few worker threads ...
2
votes
1answer
38 views

Netbeans, Distributed Jar file, Increasing Heap Size

I am building an application with NetBeans and I need to increase the heap-size. I am modifying running parameters from Netbeans but I have no idea to modify the heap-size in the .jar file. How can I ...
2
votes
0answers
137 views

java.lang.OutOfMemoryError: Java heap space when using this short program to Remove title bar

I found this piece of code on stackoverflow for displaying a fullscreen colour in MATLAB: Remove titlebar from MATLAB GUI for full screen display The problem is that once I've run the program 5 ...
2
votes
2answers
119 views

Unable to increase MyEclipse heap memory ( Xmx)

I have MyEclipse version 8.5. I increased heap memory by changing the value of parameter -Xmx from 1024m to 2048m in the file .../MyEclipse/myeclipse.ini file and restarted MyEclipse, a large dialog ...
2
votes
1answer
54 views

Will child JVM “inherit” max heap size and perm gen size when forked?

If I specify a given max heap size and perm gen size in an exported shell variable i.e. JAVA_OPTS or MAVEN_OPTS and the Maven build forks the JVM, will the child JVM "inherit" or attempt to access the ...
2
votes
5answers
238 views

What is the largest possible heap size with a 64-bit JVM?

The theoretical maximum heap value that can be set with -Xmx in a 32-bit system is of course 2^32 bytes, but typically one cannot use all 4GB. For a 64-bit JVM running in a 64-bit OS on a 64-bit ...
2
votes
2answers
412 views

Android Heap memory increase

I am developing an application on Android 2.2 which takes extensive memory and my most operation cannot be complete because of low memory. Could anybody give me solution that how can I increase my ...
2
votes
1answer
87 views

Does Cassandra uses Heap memory to store blooms filter ,and how much space does it consumes for 100GB of data?

I come to know that cassandra uses blooms filter for performance ,and it stores these filter data into physical-memory. 1)Where does cassandra stores this filters?(in heap memory ?) 2)How much ...
2
votes
1answer
99 views

Meaning of Heap-size getting smaller over time for idle application

I saw for a Java app that left alone idle, without user input, the heap size will go down slowly while the used-heap stays 'constant'. I am not sure what does this means and why does it happen? My ...

1 2 3 4