123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- $Id$
- 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
- 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;
- end;
- {$else}
- (* get it from glibc/sysdeps/unix/sysv/linux/x86_64/bits/stat.h and check defines with gcc *)
- {$endif}
- {
- $Log$
- Revision 1.1 2004-02-05 01:16:12 florian
- + completed x86-64/linux system unit
- }
|