mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 05:37:37 +03:00
Assume F_FULLFSYNC on darwin
This commit is contained in:
parent
e42b46c722
commit
cd5bc3590f
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ def rename_exchange(src: str, dst: str) -> None:
|
|||
|
||||
|
||||
def fsync(fd: int) -> None:
|
||||
if sys.platform != "win32" and hasattr(fcntl, "F_FULLFSYNC"):
|
||||
if sys.platform == "darwin":
|
||||
fcntl.fcntl(fd, fcntl.F_FULLFSYNC)
|
||||
else:
|
||||
os.fsync(fd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue