Subversion Repositories HelenOS-historic

Rev

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

Rev 1044 Rev 1048
Line 60... Line 60...
60
 */
60
 */
61
struct as_area {
61
struct as_area {
62
    SPINLOCK_DECLARE(lock);
62
    SPINLOCK_DECLARE(lock);
63
    link_t link;
63
    link_t link;
64
    int flags;
64
    int flags;
65
    size_t size;        /**< Size of this area in multiples of PAGE_SIZE. */
65
    count_t pages;      /**< Size of this area in multiples of PAGE_SIZE. */
66
    __address base;     /**< Base address of this area. */
66
    __address base;     /**< Base address of this area. */
67
};
67
};
68
 
68
 
69
/** Address space structure.
69
/** Address space structure.
70
 *
70
 *