Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 622 → Rev 623

/kernel/trunk/generic/include/mm/vm.h
57,7 → 57,7
* In the future, it should not be difficult to support shared areas of vm.
*/
struct vm_area {
spinlock_t lock;
SPINLOCK_DECLARE(lock);
link_t link;
vm_type_t type;
int size;
72,7 → 72,7
* set up during system initialization.
*/
struct vm {
spinlock_t lock;
SPINLOCK_DECLARE(lock);
link_t vm_area_head;
pte_t *ptl0;
asid_t asid;