Tagged Questions

0
votes
6answers
118 views

Java memory allocation limit

I have a loop that spawns a lot of threads. These threads contains, among other things, 2 (massive) StringBuilder objects. These threads then run and do their thing. However, I noticed that after a …
12
votes
8answers
553 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?
0
votes
1answer
58 views

FileUtils.readFileToByteArray throwing java.lang.OutOfMemoryError: Java heap space error

I am using Apache Commons IO FileUtils utility to read a file into a byte array. The file is 1.13 gigabytes in size. Each time this method is called, I get an out of memory error. I have this running …
1
vote
7answers
358 views

java.lang.OutOfMemoryError: Java heap space

I am getting the following error on execution of a multi-threading program java.lang.OutOfMemoryError: Java heap space The above error occured in one of the threads. Upto my knowledge, Heap space …
0
votes
7answers
332 views

malloc code in C

I have a code block that seems to be the code behind malloc. But as I go through the code, I get the feeling that parts of the code are missing. Does anyone know if there is a part of the function …
1
vote
5answers
222 views

Increase heap size in java

Hello I am working on windows-2003 server(64-bit) with 8 GB ram. How can I increase the heap memory maximum. I am using -Xmx1500m command to increase the heap size with 1500mb. Can I increase the …
0
votes
2answers
136 views

Remaining heap size

I know this might be an oversimplification - but I need to know the amount of free memory I could allocate in my program. It's a windows mobile project (c++) and it seems like I might have a memory …
6
votes
5answers
432 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 …
1
vote
4answers
318 views

How can I take a heap dump on Java 5 without garbage collecting first?

We have a long running server application running Java 5, and profiling it we can see the old generation growing slowly over time. It's correctly freed on a full GC, but I'd like to be able to look at …
1
vote
3answers
94 views

HEAPSPACE ERROR: cannot figure out what is causing the error

Would anyone mind having a look at these bits of code and see if there is a memory leak in them, it isn't going to be overly large but my program keeps crashing after a while of running and I don't …
0
votes
1answer
456 views

How is heap and stack memories mananged, implemented, allocated [closed]

Possible Duplicates: How is heap and stack memories mananged, implemented, allocated? Stack,Static and Heap in C++ In C/C++ we can store variables, functions, member functions, instances …
2
votes
2answers
400 views

How is heap and stack memories mananged, 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 …
0
votes
1answer
119 views

HeapCreate vs GetProcessHeap

Hi I'm new to using Heap Allocation in C++. I'm tryin to understand the scenario that will force someone to create a private heap instead of using the Process Heap. Isn't Process Heap generally …
11
votes
4answers
383 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 …
2
votes
2answers
284 views

Understanding Objective-C’s dynamic runtime

I'm getting my feet wet in Objective-C and Cocoa (I know, probably late, but hey I have to start somewhere) and I noticed that all objects are allocated out of the heap. Is there any reason why this …

1 2 next
15 30 50 per page