Преглед на файлове

* fix the stupid pascal names in x86_64 linux stat

git-svn-id: trunk@8020 -
Almindor преди 18 години
родител
ревизия
b0fde4700f
променени са 1 файла, в които са добавени 19 реда и са изтрити 19 реда
  1. 19 19
      rtl/linux/x86_64/stat.inc

+ 19 - 19
rtl/linux/x86_64/stat.inc

@@ -69,24 +69,24 @@
   Stat = record
   case Byte of
     0:(dev: cuLong deprecated;
-    st_ino: cuLong deprecated;
-    st_nlink: cuLong deprecated;
+    ino: cuLong deprecated;
+    nlink: cuLong deprecated;
 
-    st_mode: cuInt deprecated;
-    st_uid: cuInt deprecated;
-    st_gid: cuInt deprecated;
+    mode: cuInt deprecated;
+    uid: cuInt deprecated;
+    gid: cuInt deprecated;
     __pad0: cuInt deprecated;
-    st_rdev: cuLong deprecated;
-    st_size: cLong deprecated;
-    st_blksize: cLong deprecated;
-    st_blocks: cLong	deprecated; //* Number 512-byte blocks allocated. */
-
-    st_atime: cuLong deprecated;
-    st_atime_nsec: cuLong deprecated;
-    st_mtime: cuLong deprecated;
-    st_mtime_nsec: cuLong deprecated;
-	  st_ctime: cuLong deprecated;
-    st_ctime_nsec: cuLong deprecated;
+    rdev: cuLong deprecated;
+    size: cLong deprecated;
+    blksize: cLong deprecated;
+    blocks: cLong	deprecated; //* Number 512-byte blocks allocated. */
+
+    atime: cuLong deprecated;
+    atime_nsec: cuLong deprecated;
+    mtime: cuLong deprecated;
+    mtime_nsec: cuLong deprecated;
+    ctime: cuLong deprecated;
+    ctime_nsec: cuLong deprecated;
     __unused: array[0..2] of cLong deprecated;);
 
     1:(st_dev: cuLong;
@@ -96,7 +96,7 @@
     st_mode: cuInt;
     st_uid: cuInt;
     st_gid: cuInt;
-    __pad0: cuInt;
+    __pad1: cuInt;
     st_rdev: cuLong;
     st_size: cLong;
     st_blksize: cLong;
@@ -106,9 +106,9 @@
     st_atime_nsec: cuLong; 
     st_mtime: cuLong;
     st_mtime_nsec: cuLong;
-	  st_ctime: cuLong;
+    st_ctime: cuLong;
     st_ctime_nsec: cuLong;
-    __unused: array[0..2] of cLong);
+    __unused2: array[0..2] of cLong);
   end;
 
 {$endif}