diff options
Diffstat (limited to 'userprog/tss.h')
| -rw-r--r-- | userprog/tss.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/userprog/tss.h b/userprog/tss.h new file mode 100644 index 0000000..467bd19 --- /dev/null +++ b/userprog/tss.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #ifndef USERPROG_TSS_H | ||
| 2 | #define USERPROG_TSS_H | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | |||
| 6 | struct tss; | ||
| 7 | void tss_init (void); | ||
| 8 | struct tss *tss_get (void); | ||
| 9 | void tss_update (void); | ||
| 10 | |||
| 11 | #endif /* userprog/tss.h */ | ||
