changes linux process names slightly

kern/linux/linux_threadinfo.hh:
kern/linux/sched.hh:
    changed names slightly

--HG--
extra : convert_revision : 8e42ebee1d749a65b78af5733de9e0deda3c548e
This commit is contained in:
Ali Saidi
2005-06-05 11:39:44 -04:00
parent 7a9e09d20c
commit ca98d70e50
2 changed files with 4 additions and 4 deletions

View File

@@ -71,7 +71,7 @@ class ThreadInfo
std::string
curTaskName()
{
return curTaskInfo()->comm;
return curTaskInfo()->name;
}
int32_t
@@ -83,7 +83,7 @@ class ThreadInfo
uint64_t
curTaskStart()
{
return curTaskInfo()->start_time;
return curTaskInfo()->start;
}
};
}

View File

@@ -37,9 +37,9 @@ namespace Linux {
uint8_t junk1[0xf4];
int32_t pid;
uint8_t junk2[0x190];
uint64_ta start_time;
uint64_ta start;
uint8_t junk3[0x5c];
char comm[16];
char name[16];
};