15 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			229 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __KERN_MM_KMALLOC_H__
 | |
| #define __KERN_MM_KMALLOC_H__
 | |
| 
 | |
| #include <defs.h>
 | |
| 
 | |
| #define KMALLOC_MAX_ORDER       10
 | |
| 
 | |
| void kmalloc_init(void);
 | |
| 
 | |
| void *kmalloc(size_t n);
 | |
| void kfree(void *objp);
 | |
| 
 | |
| #endif /* !__KERN_MM_KMALLOC_H__ */
 | |
| 
 |