Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
1
vote
3answers
124 views

How to allocate a region of memories which similar VirtualAlloc?

I was looking for a method of allocating memories on Linux which similar VirtualAlloc on Windows. Requirements are: Size of memories block to allocate is 2^16. Address of memories block is larger ...
1
vote
3answers
84 views

how do I copy the contents of a file into virtual memory?

I have a small file, I go over it and count the number of bytes in it: while(fgetc(myFilePtr) != EOF) { numbdrOfBytes++; } Now I allocate virtual memory of the same size: BYTE* myBuf = ...
1
vote
1answer
284 views

Function Pointers in VS-2010 ( + Virtual Alloc call)

As an experiment i am trying to write the following program which allows me to generate code during runtime. i.e. i do the following: 1. Fill a buffer with op-codes of the instructions i want to ...
1
vote
1answer
403 views

How could VirtualAlloc fail (no mem) despite plenty of phys memory on WinMobile?

I am routinely seeing VirtualAlloc calls to reserve memory fail. I'm requesting 2MB so that the allocations do not count against my per process virtual memory and instead use system shared memory. At ...
1
vote
3answers
1k views

Contiguous VirtualAlloc behaviour on Windows Mobile

I have been optimising memory performance on a Windows Mobile application and have encountered some differences in behaviour between VirtualAlloc on Win32 and Windows CE. Consider the following ...
0
votes
3answers
139 views

New/delete[] and VirtualAlloc

#include <Windows.h> #include <iostream> using namespace std; int main(void) { unsigned char* pFoo = new unsigned char[1000]; pFoo = (unsigned char*)VirtualAlloc(NULL, 1000, ...
0
votes
1answer
147 views

problem with virtualalloc

virtualpointer=(char*) VirtualAlloc (NULL, (unsigned __int64) (1<<31), MEM_RESERVE, PAGE_READWRITE); mainhashbuf=progression=virtualpointer; VirtualAlloc (progression, (unsigned __int64) ...
0
votes
2answers
141 views

Question about memory page protection

Here's another question I met when reading < Windows via C/C++ 5th Edition >. First, let's see some quotation. LPVOID WINAPI VirtualAlloc( __in_opt LPVOID lpAddress, __in SIZE_T dwSize, ...
0
votes
2answers
70 views

Getting the lowest free virtual memory address in windows

Title says it pretty much all : is there a way to get the lowest free virtual memory address under windows ? I should add that I am interested by this information at the beginning of the program ...
0
votes
1answer
162 views

VirtualAlloc failing on certain configurations of hdd

For some reason on my application when running on some configuration of hard disk (RAID, random partitions, through a separate IDE controller, not on the operating systems partition), VirtualAlloc ...
0
votes
4answers
2k views

Win32 WriteProcessMemory() magical offset value

I'm trying to read the data in a Win32 ListView owned by another process. Unfortunately, my WriteProcessMemory() call fails with the error "This function is not supported on this system." when I ...