They certainly seem to do exactly that.
> > Not true. {int fd = open(".", O_RDONLY, 0); int rc = fsync(fd); close(fd)}
> Since the namei() call could be a performance issue, systems which
> need this should provide a feature-test for applications to key off
> of. Some have suggested "__linux", but that's not a feature test.
> It's a system test.
BSD, System 5 and Linux all cache "." so the open of the file overhead is
so close to nil I doubt it matters.
Alan