diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-05 21:23:37 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 11:23:37 +0000 |
commit | 7d95c5c062c7d836bab912e95587bf7fa52326c4 (patch) | |
tree | ef6ea1644324ad82545720af0d7480a316a2a45d /ext/fs/30_fs.js | |
parent | c73b4a0877ca134a05262dc15524f54ff471cc3a (diff) |
BREAKING(fs): remove `Deno.funlock[Sync]()` (#25442)
Towards #22079
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'ext/fs/30_fs.js')
-rw-r--r-- | ext/fs/30_fs.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ext/fs/30_fs.js b/ext/fs/30_fs.js index 3509a61d7..adeceed53 100644 --- a/ext/fs/30_fs.js +++ b/ext/fs/30_fs.js @@ -26,9 +26,7 @@ import { op_fs_fsync_sync, op_fs_ftruncate_sync, op_fs_funlock_async, - op_fs_funlock_async_unstable, op_fs_funlock_sync, - op_fs_funlock_sync_unstable, op_fs_futime_async, op_fs_futime_sync, op_fs_link_async, @@ -535,14 +533,6 @@ async function fsync(rid) { await op_fs_fsync_async(rid); } -function funlockSync(rid) { - op_fs_funlock_sync_unstable(rid); -} - -async function funlock(rid) { - await op_fs_funlock_async_unstable(rid); -} - function openSync( path, options, @@ -935,8 +925,6 @@ export { FsFile, fsync, fsyncSync, - funlock, - funlockSync, link, linkSync, lstat, |