Rev 3022 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3022 | Rev 4055 | ||
---|---|---|---|
Line 29... | Line 29... | ||
29 | /** @addtogroup ia64proc |
29 | /** @addtogroup ia64proc |
30 | * @{ |
30 | * @{ |
31 | */ |
31 | */ |
32 | /** @file |
32 | /** @file |
33 | */ |
33 | */ |
- | 34 | #include <proc/task.h> |
|
34 | 35 | ||
35 | #ifndef KERN_ia64_TASK_H_ |
36 | #ifndef KERN_ia64_TASK_H_ |
36 | #define KERN_ia64_TASK_H_ |
37 | #define KERN_ia64_TASK_H_ |
37 | 38 | ||
- | 39 | #include <adt/bitmap.h> |
|
- | 40 | ||
38 | typedef struct { |
41 | typedef struct { |
- | 42 | bitmap_t *iomap; |
|
39 | } task_arch_t; |
43 | } task_arch_t; |
40 | 44 | ||
- | 45 | ||
41 | #define task_create_arch(t) |
46 | #define task_create_arch(t) { (t)->arch.iomap = NULL; } |
42 | #define task_destroy_arch(t) |
47 | #define task_destroy_arch(t) |
43 | 48 | ||
44 | #endif |
49 | #endif |
45 | 50 | ||
46 | /** @} |
51 | /** @} |