summaryrefslogtreecommitdiff
path: root/kern/linux/hwrpb.hh
blob: 3ce03efd7611e9c1eea6327610d0f0ff45fb1612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __ALPHA_HWRPB_H__
#define __ALPHA_HWRPB_H__

#include "kern/linux/aligned.hh"

namespace Linux {
    struct pcb_struct {
        uint64_ta ksp;
        uint64_ta usp;
        uint64_ta ptbr;
        uint32_t pcc;
        uint32_t asn;
        uint64_ta unique;
        uint64_ta flags;
        uint64_ta res1, res2;
    };
}
#endif /* __ALPHA_HWRPB_H */