Files
pintos_22/src/vm/frame.h
2024-11-30 22:40:13 +00:00

12 lines
240 B
C

#ifndef VM_FRAME_H
#define VM_FRAME_H
#include "threads/thread.h"
#include "threads/palloc.h"
void frame_init (void);
void *frame_alloc (enum palloc_flags, void *, struct thread *);
void frame_free (void *frame);
#endif /* vm/frame.h */