diff options
| author | manuel <manuel@mausz.at> | 2012-03-26 12:54:45 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2012-03-26 12:54:45 +0200 |
| commit | b5f0874cd96ee2a62aabc645b9626c2749cb6a01 (patch) | |
| tree | 1262e4bbe0634de6650be130c36e0538240f4cbf /pintos-progos/userprog/exception.h | |
| download | progos-b5f0874cd96ee2a62aabc645b9626c2749cb6a01.tar.gz progos-b5f0874cd96ee2a62aabc645b9626c2749cb6a01.tar.bz2 progos-b5f0874cd96ee2a62aabc645b9626c2749cb6a01.zip | |
initial pintos checkin
Diffstat (limited to 'pintos-progos/userprog/exception.h')
| -rw-r--r-- | pintos-progos/userprog/exception.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pintos-progos/userprog/exception.h b/pintos-progos/userprog/exception.h new file mode 100644 index 0000000..f83e615 --- /dev/null +++ b/pintos-progos/userprog/exception.h | |||
| @@ -0,0 +1,12 @@ | |||
| 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 | |||
| 9 | void exception_init (void); | ||
| 10 | void exception_print_stats (void); | ||
| 11 | |||
| 12 | #endif /* userprog/exception.h */ | ||
