kernel - Paged pool memory or Nonpaged pool memory ?? (windows driver development) -
I'm a newbie in Windows driver development. I just want to know, in a driver, a global variable will use paged pool memory or non-paged pool memory?
Thanks and Regards
Navaneeth
Non-paged pool should be reserved for storage which should be kept in RAM so that you are doing something important which is affected by disk operation from the memory page, then use non-paged.
See for more information. Seeing
(though referring to C ++ in opposition to C) it appears that globally can be located in the world by #pragma, as well as on P22, see how this To do. Finally, we see that the data segment should not be used as the default.
Comments
Post a Comment