
12-09-2007, 06:25 PM
|
 |
VIP & Master of my Domain
Offline
Location: Dallas area
|
|
Join Date: Oct 2006
Posts: 1,370
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
|
Quote:
Originally Posted by coolcmar
what is exactly pagepool ?
|
http://blogs.msdn.com/windowsmobile/...17/494177.aspx - (see quote below)
Quote:
The Page Pool
Applications use RAM in two ways. There is code that runs, and there is data that is created while it is running. On a NOR device, the code can run directly from the ROM and not be loaded into RAM first. This process is called XIP (eXecute In Place). NAND devices can't XIP, so their code is loaded into RAM and executed from there. If you don't have a Page Pool, this code is loaded into normal RAM. The Page Pool is a mechanism to limit how much code is loaded into normal RAM. With a Page Pool, we can unload code that hasn't been used in a while and reload it later if we need to. We can't do that without a Page Pool.
On a typical NAND-based WM5 device, the Page Pool is 4.5M.
|
Here is another useful thread about the page pool http://forum.brighthand.com/showthread.php?t=230392
Last edited by stroths; 12-09-2007 at 06:30 PM.
|