mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-12 04:50:21 +01:00
* some cleanup and optimization of 64 bit address loading in the code generator * small changes to the IDE to make it compile * stat type update for packages/cdrom compatibility git-svn-id: trunk@1375 -
60 lines
1.6 KiB
PHP
60 lines
1.6 KiB
PHP
{
|
|
This file is part of the Free Pascal run time library.
|
|
Copyright (c) 1999-2000 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.
|
|
|
|
**********************************************************************}
|
|
|
|
Stat = packed record // No unix typing because of differences
|
|
case integer 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 : qword;
|
|
ino,
|
|
mode : qword;
|
|
nlink_dummy : dword;
|
|
uid_dummy,
|
|
gid_dummy,
|
|
rdev : dword;
|
|
size : qword;
|
|
blksize,
|
|
blocks,
|
|
atime,
|
|
__unused1_dummy,
|
|
mtime,
|
|
__unused2_dummy,
|
|
ctime,
|
|
__unused3_dummy,
|
|
__unused4_dummy,
|
|
__unused5_dummy : qword;
|
|
);
|
|
end;
|