Subversion Repositories HelenOS

Rev

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

Rev 2089 Rev 2630
Line 37... Line 37...
37
 
37
 
38
#include <arch/types.h>
38
#include <arch/types.h>
39
#include <adt/bitmap.h>
39
#include <adt/bitmap.h>
40
 
40
 
41
typedef struct {
41
typedef struct {
42
    count_t iomapver;   /**< I/O Permission bitmap Generation counter. */
42
    /** I/O Permission bitmap Generation counter. */
-
 
43
    count_t iomapver;
43
    bitmap_t iomap;     /**< I/O Permission bitmap. */
44
    /** I/O Permission bitmap. */
-
 
45
    bitmap_t iomap;
44
} task_arch_t;
46
} task_arch_t;
45
 
47
 
46
#endif
48
#endif
47
 
49
 
48
/** @}
50
/** @}