structures.
Added event to print out currently running task
base/traceflags.py:
Added Thread trace flag
kern/linux/linux_system.cc:
kern/linux/linux_system.hh:
Added event to print out currently running task
--HG--
extra : convert_revision : 94347dbaf90f39eb40467b2a43b4628a3deafc6c
19 lines
362 B
C++
19 lines
362 B
C++
#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 */
|