Experts:

1. Is there a way to requested an allocation of memory where i can specify
the start address?
AllocateReservedZeroPool (g_reqsz);
gives me the requested size. I also want to specify that it give me start
address

like
VirtualAlloc((LPVOID) req_addr, g_reqsz, _MEM_LARGE_PAGES | MEM_RESERVE |
MEM_COMMIT, PAGE_EXECUTE_READWRITE);

I want to request a particular address for the allocated memory.
How to achieve this?

2. If i allocate using
AllocateReservedZeroPool
in the RootApp at BSP and then
Can i access this memory location from a AP thread, like moving data from
the allocated memory to a CPU register in the AP thread function?
Allocation is done before the starting the AP. But i want to access this
allocated memory in the AP thread function.

thanks,
Melwyn.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to