summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-09-24 22:46:36 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-09-25 17:02:49 -0400
commitb088b58f7664cbb2fcb1e12f8aa439d377f56d49 (patch)
treea3cd8a4e40e06c55c76d3465b4e11b8b85b88abb /src/msg.fbs
parent4fd2b19f640d19e57511eb142b63e16c879ef6fd (diff)
Add SetGlobalTimeout().
To be used for a timers implementation soon.
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index 6358668b7..52eba8ca6 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -4,6 +4,7 @@ union Any {
CodeFetch,
CodeFetchRes,
CodeCache,
+ SetTimeout,
Exit,
TimerStart,
TimerReady,
@@ -115,6 +116,10 @@ table CodeCache {
output_code: string;
}
+table SetTimeout {
+ timeout: int;
+}
+
table Exit {
code: int;
}