memblock can now self re-allocate its internal buffers

memory allocated by memblock_alloc() can now be limited to a certain region.
This commit is contained in:
2023-01-08 12:13:59 +00:00
parent 02211e6eba
commit 0d77d97561
6 changed files with 125 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
#ifndef SOCKS_STATUS_H_
#define SOCKS_STATUS_H_
typedef unsigned int kern_status_t;
#define KERN_OK (0)
#define KERN_ERR_UNIMPLEMENTED (1)
#endif