Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion protos/perfetto/trace/perfetto_trace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17894,7 +17894,7 @@ message TrackEventRangeOfInterest {
// Next id: 9.
message ThreadDescriptor {
optional int32 pid = 1;
optional int32 tid = 2;
optional int64 tid = 2;

optional string thread_name = 5;

Expand Down
2 changes: 1 addition & 1 deletion protos/perfetto/trace/track_event/thread_descriptor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package perfetto.protos;
// Next id: 9.
message ThreadDescriptor {
optional int32 pid = 1;
optional int32 tid = 2;
optional int64 tid = 2;

optional string thread_name = 5;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class TrackEventSequenceState {
// packet. Used as default values for TrackEvents that don't specify a
// pid/tid override. Only valid after |pid_and_tid_valid_| is set to true.
int32_t pid = 0;
int32_t tid = 0;
int64_t tid = 0;

bool use_synthetic_tid = false;
};
Expand Down
Loading