Changes in kernel/generic/include/cap/cap.h [c1f68b0:d51a0d6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/cap/cap.h
rc1f68b0 rd51a0d6 53 53 54 54 typedef enum { 55 KOBJECT_TYPE_CALL, 56 KOBJECT_TYPE_IRQ, 55 57 KOBJECT_TYPE_PHONE, 56 KOBJECT_TYPE_IRQ,57 58 KOBJECT_TYPE_MAX 58 59 } kobject_type_t; 59 60 60 61 struct task; 62 63 struct call; 64 struct irq; 61 65 struct phone; 62 struct irq;63 66 64 67 struct kobject; … … 79 82 union { 80 83 void *raw; 84 struct call *call; 85 struct irq *irq; 81 86 struct phone *phone; 82 struct irq *irq;83 87 }; 84 88 } kobject_t;
Note:
See TracChangeset
for help on using the changeset viewer.