yield: Implement for OS/2 kLIBC.
[gnulib.git] / doc / windows-stat-inodes.texi
blobf3c05815e982e260470744273171854ea4ee88bb
1 @node Inode numbers on Windows
2 @section Inode numbers on Windows
4 The module @samp{windows-stat-inodes} ensures that,
5 on native Windows platforms, @code{struct stat} contains
6 @code{st_dev}, @code{st_ino} fields that are able to distinguish
7 different inodes.
9 Note: Such values can only be provided for most files on the
10 file system.  For a few files (such as inaccessible files),
11 @code{st_dev} and @code{st_ino} are set to 0.  Therefore,
12 you should test whether @code{st_dev != 0 && st_ino != 0},
13 before going to make inferences based on the file identity
14 based on @code{st_dev} and @code{st_ino}.