userlibandfileserver/fileserver/sfat/sl_fatcache.cpp
branchRCL_3
changeset 42 a179b74831c9
parent 2 4122176ea935
equal deleted inserted replaced
41:0ffb4e86fcc9 42:a179b74831c9
   356     const TUint numPages = (aFatSize+(PageSize()-1)) >> iPageSizeLog2;
   356     const TUint numPages = (aFatSize+(PageSize()-1)) >> iPageSizeLog2;
   357     __PRINT1(_L("#-CFat16FixedCache Num Pages:%d"), numPages);
   357     __PRINT1(_L("#-CFat16FixedCache Num Pages:%d"), numPages);
   358 
   358 
   359     //-- prepare pointer array for pages. NULL entry in the array means that the page at this index isn't allocated.
   359     //-- prepare pointer array for pages. NULL entry in the array means that the page at this index isn't allocated.
   360     for(TUint i=0; i<numPages; ++i)
   360     for(TUint i=0; i<numPages; ++i)
   361         iPages.Append(NULL);
   361         iPages.AppendL(NULL);
   362     
   362     
   363     }
   363     }
   364 
   364 
   365 
   365 
   366 //-----------------------------------------------------------------------------
   366 //-----------------------------------------------------------------------------