Tagged Questions
10
votes
6answers
6k views
How to translate a virtual memory address to a physical address?
In my C++ program (on Windows), I'm allocating a block of memory and can make sure it stays locked (unswapped and contiguous) in physical memory (i.e. using VirtualAllocEx(), MapUserPhysicalPages() ...
2
votes
0answers
111 views
memcpy from user space to kernel space
Is it possible to copy data from a user space address to kernel space? If so, who will handle translating VMA so there are no page faults? Would memcpy guarantee this to be safe?
2
votes
2answers
967 views
how get relative virtual path from physical path in asp.net
hi my dear friends :
how can i get relative virtual path from physical path in asp.net?
the reverse method is like below :
Server.MapPath("Virtual Path Here");
but what is the reverse of upper ...
2
votes
3answers
246 views
4 questions about processor architecture. (Computer engineering)
Our teachers has asked us around 50 true of false questions in preparation for our final exam. I could find an answer for most of them online or by asking relative. How ever, those 4 questions adrive ...
1
vote
3answers
742 views
Why is Available Physical Memory (dwAvailPhys) > Available Virtual Memory (dwAvailVirtual) in call GlobalMemoryStatus on Windows Vista x64
I am playing with an MSDN sample to do memory stress testing (see: http://msdn.microsoft.com/en-us/magazine/cc163613.aspx) and an extension of that tool that specifically eats physical memory (see ...
0
votes
3answers
50 views
Should I use a physical page for a list?
I have a table with quite a few records. Now at the moment I select them on one page. But I want to create a list. The list would contain multiple (about 5-10) pages.
For this, should I use physical ...
0
votes
0answers
670 views
Android - handle virtual & physical keyboard events
After reading answers to several similar questions* I did realize that onKeyListener() does not get key press events from a soft (virtual) keyboard. It gets them only from a hard (physical) keyboard. ...
0
votes
0answers
329 views
vxWorks 6.8 mapping physical to virtual memory
This is my first question here :).
I been trying for while now to map physical memory to virtual memory in vxWorks 6.8 with no success,
I'm trying to use "vmMap" function but somehow it keeps return ...