Btw, you don't have to do opendir() - that just wastes time. Just do
something like
int lsync(char *path)
{
int err, fd;
fd = open(path, 0);
if (fd >= 0) {
err = fsync(fd);
close(fd);
}
return err;
}
and you're done. But it won't do the symlink thing...
Linus
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/