Skip to content

Commit 19dc4e9

Browse files
fenypatel99facebook-github-bot
authored andcommitted
Increase the size of flow correlation id
Summary: Increase the size of flow correlation id in GenericTraceActivity to allow flow links Differential Revision: D72920287
1 parent 856c48c commit 19dc4e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libkineto/include/GenericTraceActivity.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class GenericTraceActivity : public ITraceActivity {
141141
struct Flow {
142142
Flow() : id(0), type(0), start(0) {}
143143
// Ids must be unique within each type
144-
uint32_t id : 27;
144+
uint32_t id;
145145
// Type will be used to connect flows between profilers, as
146146
// well as look up flow information (name etc)
147147
uint32_t type : 4;

0 commit comments

Comments
 (0)