feat: implement frame table without thread safety
This commit is contained in:
10
src/vm/frame.h
Normal file
10
src/vm/frame.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef VM_FRAME_H
|
||||
#define VM_FRAME_H
|
||||
|
||||
#include "threads/palloc.h"
|
||||
|
||||
void frame_init (void);
|
||||
void *frame_alloc (enum palloc_flags);
|
||||
void frame_free (void *frame);
|
||||
|
||||
#endif /* vm/frame.h */
|
||||
Reference in New Issue
Block a user