Tagged Questions

0
votes
1answer
12 views

_CrtCheckMemory before and after function return

hi! following code: _CrtCheckMemory(); vector<Vector3> samples = PoissonDisk::generate_poisson(m_resX-1, m_resY-1, minDist, 30, m_samples); _CrtCheckMemory(); int s = sampl …
2
votes
4answers
68 views

Why Win32 HeapReAlloc() changes values?

Hi there! I'm writing an app in C using win32 API. When I try to enlarge the size of my array, using the HeapRealloc() function, it changes my current values in the array, instead …
2
votes
1answer
74 views

Peeking in a heap in python

Hi all. What is the official way of peeking in a python heap as created by the heapq libs? Right now I have def heappeak(heap): smallest = heappop(heap) heappush(heap, smalle …
9
votes
7answers
223 views

Can Sun JVM handle gigantic heap sizes without problems, and how?

I have heard several people claiming that you can not scale the JVM heap size up. I've heard claims of the practical limit being 4 gigabytes (I heard an IBM consultant say that), 1 …
12
votes
8answers
511 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
0answers
30 views

Traversing/Setting L and RChild index’s in complete Binary Heap C++

Hello, I used a binary heap concept to insert elements in my items array: void BST::insert(const data &aData) { int slot = size + 1; if ( size >= maxSize ) this-&g …
0
votes
7answers
114 views

How to allocate the memory from OS instead of increasing the JVM’s heap size?

I need to detect whether the file I am attaching to an email is exceeding the server limit. I am not allowed to increase the JVM heap size to do this since it is going to affect t …
0
votes
2answers
56 views

Problem with priority_queue - Writing memory after heap

Hello again, I am trying to use priority_queue, and program constantly fails with error message HEAP CORRUPTION DETECTED. here are the snippets: class CQueue { ... …
1
vote
1answer
44 views

How can I avoid OutOfMemoryErrors when using Commons FileUpload’s DiskFileItem to upload large files?

I am getting OutOfMemoryErrors when uploading large (>300MB) files to a servlet utilizing Commons FileUpload 1.2.1. It seems odd, because the entire point of using DiskFileItem is …
2
votes
4answers
142 views

Does stack size grow during runtime?

I wonder if stack size can grow like heap does during runtime?
0
votes
1answer
15 views

Released/production version got heap corruption. Solution preventing it?

In our company we somehow got code to production which crashed(because Heap got corrupted somehow). Developers developed, after that testers had hands on it and later on it was rel …
4
votes
5answers
209 views

how to choose the jvm heap size ?

Hi, What i usually do concerning the jvm heap size is setting the max value really high to avoid the infamous OutOfMemoryException. However, this strategy (or lack of strategy) …
0
votes
5answers
137 views

Java: Garbage Collection

I'm having an out of memory error. I have a large range of inputs (2^40), that is too large to hold at once. Each input is a String[]. Instead, I thought I'd run my test program …
0
votes
4answers
165 views

Creating a struct on the heap?

I've been instructed to write a model strdup by creating a String struct on the heap the holds a copy of the source. I think I have successfully coded the strdup, but I'm not sure …
1
vote
6answers
202 views

Why do we need to typecast what malloc returns?

int length = strlen(src); char *structSpace = malloc(sizeof(String) + length + 1); String *string = (String*) structSpace; int *string = (int*) structSpace; * …

1 2 3 4 5 12 next
15 30 50 per page