Show
Ignore:
Timestamp:
07/07/08 15:23:19 (5 months ago)
Author:
mwhitworth
Message:

Minor formatting fixes.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/memory/vmm.c

    r694 r738  
    268268 
    269269                next=ListEntry(area->list.next,struct VMArea,list); 
    270                 if (area->list.next == &current->areaList || next->start == area->start+area->length) /* Does next even exist? */ 
     270                if (area->list.next == &current->areaList || next->start != area->start+area->length) /* Does next even exist? */ 
    271271                        return -EFAULT; 
    272272 
     
    282282{ 
    283283        /* Create caches */ 
    284         areaCache=MemCacheCreate("VMArea Cache",sizeof(struct VMArea),NULL,NULL,0); 
    285         mapCache=MemCacheCreate("Mapped Page Cache",sizeof(struct VMMapPage),NULL,NULL,0); 
     284        areaCache=MemCacheCreate("VmArea cache",sizeof(struct VMArea),NULL,NULL,0); 
     285        mapCache=MemCacheCreate("Mapped page cache",sizeof(struct VMMapPage),NULL,NULL,0); 
    286286 
    287287        if (!areaCache || !mapCache)