mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 00:23:44 +02:00
69 lines
1.7 KiB
PHP
69 lines
1.7 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2004 by Jonas Maebe,
|
|
member of the Free Pascal development team.
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
{$ifndef FPC_USE_LIBC} // kernel record
|
|
|
|
stat = packed record
|
|
case byte of
|
|
0: (
|
|
st_dev : qword;
|
|
st_ino : qword;
|
|
st_nlink : qword;
|
|
|
|
st_mode : dword;
|
|
st_uid : dword;
|
|
st_gid : dword;
|
|
__pad0 : dword;
|
|
st_rdev : qword;
|
|
st_size : int64;
|
|
st_blksize : int64;
|
|
st_blocks : int64; { Number 512-byte blocks allocated. }
|
|
|
|
st_atime : qword;
|
|
__reserved0 : qword; { reserved for atime.nanoseconds }
|
|
st_mtime : qword;
|
|
__reserved1 : qword; { reserved for atime.nanoseconds }
|
|
st_ctime : qword;
|
|
__reserved2 : qword; { reserved for atime.nanoseconds }
|
|
__unused : array[0..2] of int64;
|
|
);
|
|
1: (
|
|
dev,
|
|
ino,
|
|
nlink : qword;
|
|
mode,
|
|
uid,
|
|
gid : dword;
|
|
pad1_dummy : dword;
|
|
rdev : qword;
|
|
size,
|
|
blksze,
|
|
blocks : int64;
|
|
atime,
|
|
unused1_dummy,
|
|
mtime,
|
|
unused2_dummy,
|
|
ctime,
|
|
unused3_dummy,
|
|
unused4_dummy,
|
|
unused5_dummy : qword;)
|
|
end;
|
|
|
|
{$else}
|
|
|
|
(* get it from glibc/sysdeps/unix/sysv/linux/x86_64/bits/stat.h and check defines with gcc *)
|
|
|
|
{$endif}
|
|
|