dumpstate: Add the ctime (time the file was harvested out of /proc) to dump.

Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
San Mehat
2009-09-05 15:20:20 -07:00
parent 0b98c944c6
commit a4eb91da03

View File

@@ -336,7 +336,15 @@ static void dump_kernel_log(const char *path, const char *title)
printf("------ KERNEL %s LOG ------\n", title); printf("------ KERNEL %s LOG ------\n", title);
if (access(path, R_OK) < 0) if (access(path, R_OK) < 0)
printf("%s: %s\n", path, strerror(errno)); printf("%s: %s\n", path, strerror(errno));
else {
struct stat sbuf;
if (stat(path, &sbuf) < 0)
printf("%s: stat failed (%s)\n", path, strerror(errno));
else else
printf("Harvested %s", ctime(&sbuf.st_ctime));
DUMP(path); DUMP(path);
} }
}