Rev 814 | Rev 1104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 814 | Rev 822 | ||
|---|---|---|---|
| Line 123... | Line 123... | ||
| 123 | 123 | ||
| 124 | /* KConsole debug */ |
124 | /* KConsole debug */ |
| 125 | extern void slab_print_list(void); |
125 | extern void slab_print_list(void); |
| 126 | 126 | ||
| 127 | /* Malloc support */ |
127 | /* Malloc support */ |
| 128 | extern void * kalloc(unsigned int size, int flags); |
128 | extern void * malloc(unsigned int size, int flags); |
| 129 | extern void kfree(void *obj); |
129 | extern void free(void *obj); |
| 130 | #define malloc(x) kalloc(x, FRAME_ATOMIC) |
- | |
| 131 | #define free(x) kfree(x) |
- | |
| 132 | #endif |
130 | #endif |