summaryrefslogtreecommitdiffstats
path: root/library/cpp/lwtrace/protos
diff options
context:
space:
mode:
authorCthulhu <[email protected]>2022-02-10 16:47:44 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:47:44 +0300
commit6aced6c854653b75aab9808d5995be5fc4d9fa53 (patch)
treec0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/lwtrace/protos
parentbcb3e9d0eb2a8188a6a9fe0907a8949ce4881a4e (diff)
Restoring authorship annotation for Cthulhu <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/lwtrace/protos')
-rw-r--r--library/cpp/lwtrace/protos/lwtrace.proto28
1 files changed, 14 insertions, 14 deletions
diff --git a/library/cpp/lwtrace/protos/lwtrace.proto b/library/cpp/lwtrace/protos/lwtrace.proto
index 29e0fa1fe67..00510957197 100644
--- a/library/cpp/lwtrace/protos/lwtrace.proto
+++ b/library/cpp/lwtrace/protos/lwtrace.proto
@@ -22,15 +22,15 @@ enum EOperatorType {
OT_GE = 5;
}
-message TArgument {
+message TArgument {
string Param = 1;
bytes Value = 2;
string Variable = 3;
-}
-
+}
+
message TOperator {
EOperatorType Type = 1;
- repeated TArgument Argument = 8;
+ repeated TArgument Argument = 8;
}
message TPredicate {
@@ -47,10 +47,10 @@ message TLogAction {
message TPrintToStderrAction {
}
-message TKillAction {
+message TKillAction {
}
-message TSleepAction {
+message TSleepAction {
uint64 NanoSeconds = 1;
}
@@ -59,7 +59,7 @@ message TCustomAction {
repeated string Opts = 2;
}
-enum EStatementType {
+enum EStatementType {
ST_MOV = 0;
ST_ADD = 1;
ST_SUB = 2;
@@ -70,13 +70,13 @@ enum EStatementType {
ST_SUB_EQ = 7;
ST_INC = 8;
ST_DEC = 9;
-}
-
-message TStatementAction {
+}
+
+message TStatementAction {
EStatementType Type = 1;
- repeated TArgument Argument = 2;
-}
-
+ repeated TArgument Argument = 2;
+}
+
message TRunLogShuttleAction {
bool Ignore = 1;
uint64 ShuttlesCount = 2;
@@ -106,7 +106,7 @@ message TAction {
message TBlock {
TProbeDesc ProbeDesc = 1;
TPredicate Predicate = 2;
- repeated TAction Action = 3;
+ repeated TAction Action = 3;
}
message TQuery {