This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/userprog/tss.h

11 lines
183 B
C
Executable file

#ifndef USERPROG_TSS_H
#define USERPROG_TSS_H
#include <stdint.h>
struct tss;
void tss_init (void);
struct tss *tss_get (void);
void tss_update (void);
#endif /* userprog/tss.h */