2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-06-27 15:18:22 +09:00
|
|
|
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
|
2023-03-08 07:44:54 -04:00
|
|
|
import { CallbackWithError } from "ext:deno_node/_fs/_fs_common.ts";
|
2024-01-24 11:07:06 +11:00
|
|
|
import { FsFile } from "ext:deno_fs/30_fs.js";
|
2023-02-14 17:38:45 +01:00
|
|
|
|
|
|
|
export function fsync(
|
|
|
|
fd: number,
|
|
|
|
callback: CallbackWithError,
|
|
|
|
) {
|
2024-01-25 23:51:29 +01:00
|
|
|
new FsFile(fd, Symbol.for("Deno.internal.FsFile")).sync().then(
|
|
|
|
() => callback(null),
|
|
|
|
callback,
|
|
|
|
);
|
2023-02-14 17:38:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export function fsyncSync(fd: number) {
|
2024-01-25 23:51:29 +01:00
|
|
|
new FsFile(fd, Symbol.for("Deno.internal.FsFile")).syncSync();
|
2023-02-14 17:38:45 +01:00
|
|
|
}
|