Changeset 7e3826d9 in mainline for kernel/generic/include/kobject/kobject.h
- Timestamp:
- 2017-08-16T21:52:46Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 05ffb41
- Parents:
- c8cec85
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/kobject/kobject.h
rc8cec85 r7e3826d9 40 40 #define MAX_KERNEL_OBJECTS 64 41 41 42 #define KOBJECT_INVALID_CAP -1 43 42 44 typedef enum { 43 KOBJECT_TYPE_INVALID 45 KOBJECT_TYPE_INVALID, 46 KOBJECT_TYPE_ALLOCATED 44 47 } kobject_type_t; 45 48 … … 50 53 } kobject_t; 51 54 55 extern kobject_t *kobject_get_local(int, kobject_type_t); 56 57 struct task; 58 extern int kobject_alloc(struct task *); 59 extern void kobject_free(struct task *, int); 52 60 53 61 #endif
Note:
See TracChangeset
for help on using the changeset viewer.