summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorDmitry Sharshakov <sh7dm@outlook.com>2019-02-02 09:27:42 +0300
committerRyan Dahl <ry@tinyclouds.org>2019-02-02 01:27:42 -0500
commit16ed1f2545b34851ebdb9095251236fb51e39f5d (patch)
treeef88386129adefaf0ed22f150dff01b1f134563e /src/msg.fbs
parente5899b14e268b6b636b04b8f5a78df4c23e00478 (diff)
Add performance.now (#1633)
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index e13b15daa..06a2d8660 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -59,7 +59,9 @@ union Any {
Run,
RunRes,
RunStatus,
- RunStatusRes
+ RunStatusRes,
+ Now,
+ NowRes
}
enum ErrorKind: byte {
@@ -475,4 +477,10 @@ table RunStatusRes {
exit_signal: int;
}
+table Now {}
+
+table NowRes {
+ time: uint64;
+}
+
root_type Base;