Changes in kernel/generic/include/cap/cap.h [fc0de8c:e394c196] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/cap/cap.h
rfc0de8c re394c196 70 70 } kobject_ops_t; 71 71 72 extern kobject_ops_t *kobject_ops[];73 74 #define KOBJECT_OP(k) kobject_ops[(k)->type]75 76 72 /* 77 73 * Everything in kobject_t except for the atomic reference count, the capability … … 86 82 /** List of published capabilities associated with the kobject */ 87 83 list_t caps_list; 84 85 kobject_ops_t *ops; 88 86 89 87 union { … … 141 139 extern kobject_t *kobject_alloc(unsigned int); 142 140 extern void kobject_free(kobject_t *); 143 extern void kobject_initialize(kobject_t *, kobject_type_t, void *); 141 extern void kobject_initialize(kobject_t *, kobject_type_t, void *, 142 kobject_ops_t *); 144 143 extern kobject_t *kobject_get(struct task *, cap_handle_t, kobject_type_t); 145 144 extern void kobject_add_ref(kobject_t *);
Note:
See TracChangeset
for help on using the changeset viewer.