realloc: more improvements for realloc (p, 0)
[gnulib.git] / doc / posix-functions / fstat.texi
blobfa7299ff8ffaee35b11300b834d4bde1622ab036
1 @node fstat
2 @subsection @code{fstat}
3 @findex fstat
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/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 2 GiB and larger..
17 @xref{Large File Support}.
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 @xref{Large File Support}.
23 @item
24 On macOS 12.6, when this function yields a timestamp with a
25 nonpositive @code{tv_sec} value, @code{tv_nsec} might be in the range
26 @minus{}999999999..@minus{}1, representing a negative nanoseconds
27 offset from @code{tv_sec}.  Solaris 11.4 is similar, except that
28 @code{tv_sec} might also be @minus{}1000000000.
29 @item
30 The @code{st_atime}, @code{st_ctime}, @code{st_mtime} fields are affected by
31 the current time zone and by the DST flag of the current time zone on some
32 platforms:
33 mingw, MSVC 14 (when the environment variable @env{TZ} is set).
34 @end itemize
36 Portability problems not fixed by Gnulib:
37 @itemize
38 @item
39 @xref{sys/stat.h}, for general portability problems with @code{struct stat}.
40 @item
41 On Cygwin, @code{fstat} applied to the file descriptors 0 and 1, returns
42 different @code{st_ino} values, even if standard input and standard output
43 are not redirected and refer to the same terminal.
44 @end itemize