gem5/kern/linux/sched.hh
Ali Saidi 5070f27c69 added copyright
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
2005-06-05 04:08:05 -04:00

21 lines
347 B
C++

#ifndef __LINUX_SCHED_H__
#define __LINUX_SCHED_H__
#include "targetarch/isa_traits.hh"
#include "kern/linux/aligned.hh"
namespace Linux {
struct task_struct {
uint8_t junk1[0xf4];
int32_t pid;
uint8_t junk2[0x190];
uint64_ta start_time;
uint8_t junk3[0x5c];
char comm[16];
};
}
#endif