5070f27c69
kern/linux/sched.hh: kern/linux/thread_info.hh: got rid of everything but exactly what we needed util/categories.py: newest version from one of my repositories --HG-- extra : convert_revision : c4328e5938d421d60493c0da07022bfa9e92c404
13 lines
294 B
C++
13 lines
294 B
C++
#ifndef __ALPHA_THREAD_INFO_H__
|
|
#define __ALPHA_THREAD_INFO_H__
|
|
|
|
#include "kern/linux/hwrpb.hh"
|
|
#include "kern/linux/aligned.hh"
|
|
|
|
namespace Linux {
|
|
struct thread_info {
|
|
struct pcb_struct pcb;
|
|
Addr_a task;
|
|
};
|
|
}
|
|
#endif /* __ALPHA_THREAD_INFO_H__ */
|