summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-01 19:37:18 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-01 22:30:57 -0400
commit42c5b103ec0c0fc52b868b0824807c0ad358a2e3 (patch)
tree001220438c547d9fcf346de239e94370e7a5c4ff /src/msg.fbs
parent393f751a274c338db1c4f675f796257106e9d579 (diff)
Rename FdTable to ResourceTable.
Add docs to src/resources.rs.
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index ef2f4946b..b9989c330 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -265,11 +265,11 @@ table Open {
}
table OpenRes {
- fd: int;
+ rid: int;
}
table Read {
- fd: int;
+ rid: int;
// (ptr, len) is passed as second parameter to libdeno.send().
}
@@ -279,7 +279,7 @@ table ReadRes {
}
table Write {
- fd: int;
+ rid: int;
}
table WriteRes {
@@ -287,7 +287,7 @@ table WriteRes {
}
table Close {
- fd: int;
+ rid: int;
}
root_type Base;