Files
pintos_22/src/vm/stackgrowth.h

12 lines
208 B
C

#ifndef VM_GROWSTACK_H
#define VM_GROWSTACK_H
#include <stdio.h>
#define MAX_STACK_SIZE 8388608 // (8MB)
bool needs_new_page (void *addr, void *esp);
bool grow_stack (void *addr);
#endif /* vm/frame.h */