diff options
Diffstat (limited to 'pkg/flatrpc/flatrpc.fbs')
| -rw-r--r-- | pkg/flatrpc/flatrpc.fbs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/flatrpc/flatrpc.fbs b/pkg/flatrpc/flatrpc.fbs index bd8b023d9..c7516e624 100644 --- a/pkg/flatrpc/flatrpc.fbs +++ b/pkg/flatrpc/flatrpc.fbs @@ -163,6 +163,8 @@ struct ExecOptsRaw { // Request to execute a test program. table ExecRequestRaw { id :int64; + // Bitmask of procs to avoid when executing this request, if possible. + avoid :uint64; prog_data :[uint8]; exec_opts :ExecOptsRaw; flags :RequestFlag; @@ -239,6 +241,7 @@ table ProgInfoRaw { // Result of executing a test program. table ExecResultRaw { id :int64; + proc :int32; output :[uint8]; error :string; info :ProgInfoRaw; |
