summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-23 14:13:12 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-24 12:29:54 -0400
commit0213053856148379992212b189390f222c6cb460 (patch)
treef62e02bf4d8d91cddcc45169ce5afb0c2d4bf5de /src/msg.fbs
parentb79ce93010d0cc80a9345f646e562326de4588e5 (diff)
Remove handlers crate target.
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler.
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index b07da99cf..cb1cf57a9 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -23,7 +23,7 @@ table Base {
msg: Any;
}
-struct Start {
+table Start {
unused: int8;
}
@@ -54,22 +54,22 @@ table CodeCache {
output_code: string;
}
-struct Exit {
+table Exit {
code: int;
}
-struct TimerStart {
+table TimerStart {
id: uint;
interval: bool;
delay: int;
}
-struct TimerReady {
+table TimerReady {
id: uint;
done: bool;
}
-struct TimerClear {
+table TimerClear {
id: uint;
}