Mon 14 Oct 23:06:38 CEST 2024
This commit is contained in:
parent
6f0e1924df
commit
23803769e1
17
kernel/kmalloc.h
Normal file
17
kernel/kmalloc.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
Copyright (C) 2016-2019 The University of Notre Dame
|
||||
This software is distributed under the GNU General Public License.
|
||||
See the file LICENSE for details.
|
||||
*/
|
||||
|
||||
#ifndef KMALLOC_H
|
||||
#define KMALLOC_H
|
||||
|
||||
void *kmalloc(int length);
|
||||
void kfree(void *ptr);
|
||||
|
||||
void kmalloc_init(char *start, int length);
|
||||
void kmalloc_debug();
|
||||
int kmalloc_test();
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user