Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2071 | Rev 2089 | ||
|---|---|---|---|
| Line 35... | Line 35... | ||
| 35 | #ifndef KERN_DDI_H_ |
35 | #ifndef KERN_DDI_H_ |
| 36 | #define KERN_DDI_H_ |
36 | #define KERN_DDI_H_ |
| 37 | 37 | ||
| 38 | #include <ddi/ddi_arg.h> |
38 | #include <ddi/ddi_arg.h> |
| 39 | #include <arch/types.h> |
39 | #include <arch/types.h> |
| 40 | #include <typedefs.h> |
40 | #include <proc/task.h> |
| 41 | 41 | ||
| 42 | /** Structure representing contiguous physical memory area. */ |
42 | /** Structure representing contiguous physical memory area. */ |
| 43 | typedef struct { |
43 | typedef struct { |
| 44 | uintptr_t pbase; /**< Physical base of the area. */ |
44 | uintptr_t pbase; /**< Physical base of the area. */ |
| 45 | uintptr_t vbase; /**< Virtual base of the area. */ |
45 | uintptr_t vbase; /**< Virtual base of the area. */ |