summaryrefslogtreecommitdiffstats
path: root/pintos-progos/userprog/exception.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
committermanuel <manuel@mausz.at>2012-03-27 11:51:08 +0200
commit4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b (patch)
tree868c52e06f207b5ec8a3cc141f4b8b2bdfcc165c /pintos-progos/userprog/exception.h
parenteae0bd57f0a26314a94785061888d193d186944a (diff)
downloadprogos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.gz
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.tar.bz2
progos-4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b.zip
reorganize file structure to match the upstream requirements
Diffstat (limited to 'pintos-progos/userprog/exception.h')
-rw-r--r--pintos-progos/userprog/exception.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/pintos-progos/userprog/exception.h b/pintos-progos/userprog/exception.h
deleted file mode 100644
index f83e615..0000000
--- a/pintos-progos/userprog/exception.h
+++ /dev/null
@@ -1,12 +0,0 @@
1#ifndef USERPROG_EXCEPTION_H
2#define USERPROG_EXCEPTION_H
3
4/* Page fault error code bits that describe the cause of the exception. */
5#define PF_P 0x1 /* 0: not-present page. 1: access rights violation. */
6#define PF_W 0x2 /* 0: read, 1: write. */
7#define PF_U 0x4 /* 0: kernel, 1: user process. */
8
9void exception_init (void);
10void exception_print_stats (void);
11
12#endif /* userprog/exception.h */