poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / fstat.texi
bloba404891cb70b01ad0a56a293804df82c60cc42ae
1 @node fstat
2 @section @code{fstat}
3 @findex fstat
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/fstat.html}
7 Gnulib module: fstat
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function crashes when invoked with invalid arguments on some platforms:
13 MSVC 14.
14 @item
15 On platforms where @code{off_t} is a 32-bit type, @code{fstat} may not correctly
16 report the size of files or block devices larger than 2 GB.
17 (Cf. @code{AC_SYS_LARGEFILE}.)
18 @item
19 On Linux/x86 and Linux/x86_64, applications compiled in 32-bit mode cannot
20 access files that happen to have a 64-bit inode number.  This can occur with
21 file systems such as XFS (typically on large disks) and NFS.
22 (Cf. @code{AC_SYS_LARGEFILE}.)
23 @item
24 On Solaris 11.4, when this function yields a timestamp with a
25 nonpositive @code{tv_sec} value, @code{tv_nsec} might be in the range
26 @minus{}1000000000..@minus{}1, representing a negative nanoseconds
27 offset from @code{tv_sec}.
28 @item
29 The @code{st_atime}, @code{st_ctime}, @code{st_mtime} fields are affected by
30 the current time zone and by the DST flag of the current time zone on some
31 platforms:
32 mingw, MSVC 14 (when the environment variable @code{TZ} is set).
33 @end itemize
35 Portability problems not fixed by Gnulib:
36 @itemize
37 @item
38 @xref{sys/stat.h}, for general portability problems with @code{struct stat}.
39 @item
40 On Cygwin, @code{fstat} applied to the file descriptors 0 and 1, returns
41 different @code{st_ino} values, even if standard input and standard output
42 are not redirected and refer to the same terminal.
43 @end itemize