Changeset 266294a9 in mainline for generic/include
- Timestamp:
- 2006-02-05T17:01:03Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5c9a08b
- Parents:
- 9b9e385
- Location:
- generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/mm/slab.h
r9b9e385 r266294a9 71 71 size_t size; /**< Size of SLAB position - align_up(sizeof(obj)) */ 72 72 int (*constructor)(void *obj, int kmflag); 73 void(*destructor)(void *obj);73 int (*destructor)(void *obj); 74 74 int flags; /**< Flags changing behaviour of cache */ 75 75 … … 104 104 size_t align, 105 105 int (*constructor)(void *obj, int kmflag), 106 void(*destructor)(void *obj),106 int (*destructor)(void *obj), 107 107 int flags); 108 108 extern void slab_cache_destroy(slab_cache_t *cache); -
generic/include/print.h
r9b9e385 r266294a9 31 31 32 32 #include <arch/types.h> 33 #include <synch/spinlock.h> 33 34 34 35 #define INT8 1 … … 39 40 extern void printf(const char *fmt, ...); 40 41 42 /* We need this address in spinlock to avoid deadlock in deadlock detection */ 43 extern spinlock_t printflock; 44 41 45 #endif -
generic/include/proc/thread.h
r9b9e385 r266294a9 135 135 extern void thread_register_call_me(void (* call_me)(void *), void *call_me_with); 136 136 extern void thread_print_list(void); 137 extern void thread_destroy(thread_t *t); 137 138 138 139 #endif
Note:
See TracChangeset
for help on using the changeset viewer.