哪些 Unix 支持跨设备文件系统链接(特别是重命名)?

哪些 Unix 支持跨设备文件系统链接(特别是重命名)?

只需阅读以下关于 FreeBSD 的内容手册页对于重命名系统调用:

...
[EXDEV] The link named by to and the file named by from are on
        different logical devices (file systems).  Note that
        this error code will not be returned if the implemen-
        tation permits cross-device links.
...

尤其:

..如果实现允许跨设备链接。

是否有 Unix 使用跨设备链接实现此行为?哪些?

边注:

具有跨设备链接很有用的一种情况是原子重命名。如果系统(像大多数系统一样)不支持设备上的原子重命名,那么如何进行原子重命名呢?

相关内容