-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dev-expressions
- Loading branch information
Showing
18 changed files
with
1,102 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
syntax = "proto3"; | ||
|
||
package mserialize; | ||
|
||
message LogMessage{ | ||
string content = 1; | ||
} | ||
|
||
message State{ | ||
|
||
enum StateType{ | ||
READY = 0; | ||
BUSY = 1; | ||
KILLED = 2; | ||
TERMINATED = 3; | ||
} | ||
|
||
int32 id = 2; // state ID | ||
StateType type = 3; // Type of state | ||
string reason = 4; // Reason for execution stopping | ||
int32 num_executing = 5; // number of executing instructions | ||
int32 wait_time = 6; | ||
} | ||
|
||
message StateList{ | ||
repeated State states = 7; | ||
} | ||
|
||
message MessageList{ | ||
repeated LogMessage messages = 8; | ||
} |
Oops, something went wrong.