Hacker News new | ask | show | jobs
by acuozzo 160 days ago
Is this guaranteed to be atomic on all filesystems?
2 comments

For POSIX, yes.

https://rcrowley.org/2010/01/06/things-unix-can-do-atomicall...

Windows has a deep well of POSIX in the kernel (plus hard file locks), and it appears to hold there.

https://en.wikipedia.org/wiki/Microsoft_POSIX_subsystem

It’s even atomic on NFS. In fact, it’s probably the only reliable locking mechanism on NFS.