#ifndef CONTEXT_H
#define CONTEXT_H

#include "memory.h"

struct context {
	pd_t *pd;
	unsigned int esp;
	char *vmalloc_addr;
};

extern struct context *cur_cx;
extern struct context kernel_cx;

#endif /* CONTEXT_H */
