Tagged Questions
The heapalloc tag has no wiki summary.
6
votes
1answer
214 views
(C) Implementation tactics for heap allocators?
Where are some good resources for looking at the pros/cons of different ways of implementing heap allocators? Resources touching on efficiency (fragmentation, throughput, etc) are preferred. I am NOT ...
3
votes
8answers
2k views
Memory allocation on Windows C code
I'd like to know which method is recommended on Windows C programming: using malloc or the Win32 HeapAlloc (maybe VirtualAlloc?) function.
I've read the MSDN Memory Management Functions article and ...
2
votes
0answers
112 views
malloc returns NULL and sets errno to ENOMEM, but there is plenty of heap space available?
I have a situation in which malloc() returns NULL and sets errno to ENOMEM. But the CRT heap (which is growable) has plenty of memory to work with. At the time of malloc, my process memory is about ...
2
votes
1answer
38 views
Why system allocs more memory when using pointers Windows?
I use HeapAlloc to alloc a huge amount of memory, like 400 MB, but when i check the Memory Usage of my program it really uses like 1 GB.
//configuraciones.h
#define ANCHO_MUNDO 5000
#define ...
2
votes
2answers
238 views
PIMPL and stack allocation
So I've been thinking about PIMPL and stack allocation. I've been writing a library and decided to use PIMPL to hide the private member of the class. That means I would have a class declared like this
...
2
votes
3answers
855 views
What alignment does HeapAlloc use
I'm developing a general purpose library which uses Win32's HeapAlloc
MSDN doesn't mention alignment guarantees for Win32's HeapAlloc, but I really need to know what alignment it uses, so I can avoid ...
2
votes
2answers
984 views
HeapAlloc returns 0xC0000017: Not Enough Quota
I'm allocating a small number of data types, total size 2mb.
I only use one heap, and it runs fine until I get to a certain number of allocations, I'm pretty sure of this because I've commented one ...
1
vote
3answers
221 views
HeapAlloc fails intermittently
We have a DLL (built using VC2005) that does some processing on behalf of the calling application. This processing requires quite a bit of memory. The DLL creates this memory via heapAlloc like so:
...
1
vote
1answer
397 views
Is there a fundamental difference between malloc and HeapAlloc (aside from the portability)?
I'm having code that, for various reasons, I'm trying to port from the C runtime to one that uses the Windows Heap API. I've encountered a problem: If I redirect the malloc/calloc/realloc/free calls ...
1
vote
1answer
161 views
(C) which heap policies are most often used?
I have heard that 'better-fit' is pretty commonly used, but I don't seem to read much about it online. What are the most commonly used / thought to be the most efficient policies used by heap ...
0
votes
2answers
98 views
Calling malloc() from unmanaged DLL called within managed DLL generates access violation
I have a suite of tests written in C++/CLI that call into a native DLL in order to remotely test a Windows CE device. At two points during the test setup process, memory on the native heap is ...
0
votes
4answers
143 views
Searching for a safe magic number for in-memory data structure
I'm implementing a heap allocator (malloc), and I need to choose a magic number to check if a given pointer point to a data structure I allocated. It seems obvious to me that no magic number can be ...
0
votes
2answers
154 views
HEAP_NO_SERIALIZE flag
When I called the HeapCreate function in the preceding code sample, I used the HEAP_NO_SERIALIZE flag because the
remainder of the sample code is not multithread-safe.
Jeffrey Richter wrote the ...
0
votes
3answers
507 views
(C) how does a heap allocator handle a 4-byte block header, while only returning addresses that are multiples of 8?
It doesn't seem to make sense, unless we just ignore any potential excess space at the beginning of a segment, and then have the first allocated chunk be at the first multiple of 8 (with its ...