From 7237e9d34a61629d5bedce3b9cc46c8a1344d78a Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Wed, 1 May 2019 02:08:12 -0700 Subject: fs: add Deno.utime/Deno.utimeSync (#2241) --- cli/msg.fbs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'cli/msg.fbs') diff --git a/cli/msg.fbs b/cli/msg.fbs index ff5454a91..b93fb68a7 100644 --- a/cli/msg.fbs +++ b/cli/msg.fbs @@ -67,6 +67,7 @@ union Any { StatRes, Symlink, Truncate, + Utime, CreateWorker, CreateWorkerRes, HostGetWorkerClosed, @@ -434,6 +435,12 @@ table Truncate { len: uint; } +table Utime { + filename: string; + atime: uint64; + mtime: uint64; +} + table Open { filename: string; perm: uint; -- cgit v1.2.3