Subversion Repositories HelenOS-historic

Rev

Rev 1147 | Rev 1178 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1147 Rev 1149
Line 83... Line 83...
83
    SPINLOCK_DECLARE(lock);
83
    SPINLOCK_DECLARE(lock);
84
 
84
 
85
    /** Number of processors on wich is this address space active. */
85
    /** Number of processors on wich is this address space active. */
86
    count_t refcount;
86
    count_t refcount;
87
 
87
 
88
    /** B+-tree of address space areas. */
88
    /** B+tree of address space areas. */
89
    btree_t as_area_btree;
89
    btree_t as_area_btree;
90
 
90
 
91
    /** Page table pointer. Constant on architectures that use global page hash table. */
91
    /** Page table pointer. Constant on architectures that use global page hash table. */
92
    pte_t *page_table;
92
    pte_t *page_table;
93
 
93