aboutsummaryrefslogtreecommitdiffstats
path: root/src/userprog/tss.h
blob: 467bd19e51ffc4f1bce00ea88496302c9ae9d6f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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 */