summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2018-10-02 23:21:56 -0700
committerBert Belder <bertbelder@gmail.com>2018-10-03 13:27:59 -0700
commit4eeda9ea278f7b3b88d681e56a14666dc7e76548 (patch)
tree03f360577c5f3ff590aee9970c0aaab056010680 /src/msg.fbs
parent99e2c42d16dc725a85ca22ee7e53e1387342a94c (diff)
timers: remove the old timer implementation
Fixes #878.
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index 68de166ce..e4886b6a9 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -6,9 +6,6 @@ union Any {
CodeCache,
SetTimeout,
Exit,
- TimerStart,
- TimerReady,
- TimerClear,
Environ,
EnvironRes,
FetchReq,
@@ -135,20 +132,6 @@ table Exit {
code: int;
}
-table TimerStart {
- id: uint;
- delay: uint;
-}
-
-table TimerReady {
- id: uint;
- canceled: bool;
-}
-
-table TimerClear {
- id: uint;
-}
-
table Environ {}
table SetEnv {