Hi all,
I need to reserve some contiguos part of process
virtual address and use this space to map to the
physical address space.
So i want to know the way to make sure that whatever
memory range I assume will be available always or in
other words, OS will not use this range for other
allocations.
One method I have think of is
VirtualAddress = Virtualalloc(MEM_RESERVE);
free(VirtualAddress);
MapToPhysicalAddress(VirtualAddress);
But now problem is that if any other thread asks for
allocations how do I tell OS not to use above memory
address.(I have multithreaded application).
Regards,
Manish
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35
a year! http://personal.mail.yahoo.com/
You are currently subscribed to ntdev as: $subst(‘Recip.EmailAddr’)
To unsubscribe send a blank email to leave-ntdev-$subst(‘Recip.MemberIDChar’)@lists.osr.com