summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/tss.h
blob: 34ec4443f26c251dd9dfbc52a2a13484dc1d9f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef JOVE_ARCH_x86_64_TSS_H
#define JOVE_ARCH_x86_64_TSS_H 1

#include <stddef.h>
#include <stdint.h>

struct TSS
{
    uint32_t resv0;
    uint64_t rsp[3];
    uint64_t resv1;
    uint64_t ist[8];
    uint64_t resv2;
    uint16_t resv3;
    uint16_t iobp;
};

#endif