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