diff options
Diffstat (limited to 'src/processor/proto')
-rw-r--r-- | src/processor/proto/process_state.proto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/processor/proto/process_state.proto b/src/processor/proto/process_state.proto index 5ff6194c..d3e02dc3 100644 --- a/src/processor/proto/process_state.proto +++ b/src/processor/proto/process_state.proto @@ -46,11 +46,14 @@ package google_breakpad; // A proto representation of a process, in a fully-digested state. // See src/google_breakpad/processor/process_state.h message ProcessStateProto { - // Next value: 13 + // Next value: 14 // The time-date stamp of the original minidump (time_t format) optional int64 time_date_stamp = 1; + // The time-date stamp when the process was created (time_t format) + optional int64 process_create_time = 13; + message Crash { // The type of crash. OS- and possibly CPU- specific. For example, // "EXCEPTION_ACCESS_VIOLATION" (Windows), "EXC_BAD_ACCESS / |