Are they refering to non-pagable memory or what? I cannot find any reference to resident storage.
Asked
Active
Viewed 107 times
-1
-
Why the down vote if the question has a valid answer, if you don't know anything about Windows driver development then just move on...? – John Leidegren Jan 20 '13 at 16:36
1 Answers
1
Resident memory, as mentioned here, here and here simply referes to memory that is not currently paged. Memory allocated from the NonPagedPool
is for instance always resident while memory allocated from the PagedPool
can be resident but you have to check that the memory hasn't been paged out before you use it (depending on the context IRQL requirements).

John Leidegren
- 59,920
- 20
- 131
- 152