Reputation: 213
And by the by, what does "svchost.exe error" imply when "the memory cannot be written because of 0xc000000e failure"?
Thanks as usual!
Upvotes: 1
Views: 351
Reputation: 86698
A physical address points to a specific place in a specific RAM chip. A virtual address is what most code sees nowadays, allowing the code to not be tied directly to specific locations in RAM. This use of virtual memory lets parts of programs and their data be stored on disk when not in use, then brought back into RAM when needed. When it is brought back into RAM, being virtual means that it can be put any place there's space for it rather than having to go back exactly where it came from.
The 0xc000000e error most likely means that there was a disk failure trying to access some of that virtual memory.
Upvotes: 2