blob: bb07f093a9e03bbec3aaf0b52e9bc790f971fb09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|