summaryrefslogtreecommitdiff
path: root/sys/include/cpu.h
blob: 9567496badd2d6dc4bc8acc3a774f7ec7a68ee35 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _CPU_H 
#define _CPU_H 

struct hart {
        int intr_stack;
};

struct hart harts[NPROC] = {0};

#endif /* _CPU_H */