Show the Checkpoints in the crashinfo.txt.

This commit is contained in:
Steve Checkoway
2003-08-07 19:58:15 +00:00
parent db6659ba91
commit 75e75fde23
2 changed files with 16 additions and 0 deletions
@@ -100,6 +100,12 @@ static void parent_process( int to_child, void **BacktracePointers, int SignalRe
parent_write(to_child, &size, sizeof(size));
parent_write(to_child, ps[i], size);
}
/* 6. Write CHECKPOINTs. */
p = GetCheckpointLogs("$$");
size = strlen(p)+1;
parent_write(to_child, &size, sizeof(size));
parent_write(to_child, p, size);
close(to_child);
}