summaryrefslogtreecommitdiff
path: root/rtl/linux/x86_64/stat.inc
blob: 42a846e34c305cd76587a9c6da154ee77605a0a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
    $Id: stat.inc,v 1.3 2005/02/14 17:13:30 peter Exp $
    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}

{
  $Log: stat.inc,v $
  Revision 1.3  2005/02/14 17:13:30  peter
    * truncate log

}