ソースを参照

- removed "packed" modifiers from record types, the C versions don't have any
__attribute__((__packed__)) either (and {$packrecords c} is always active
when compiling this file)

git-svn-id: trunk@19612 -

Jonas Maebe 13 年 前
コミット
aefe5acd72
1 ファイル変更4 行追加4 行削除
  1. 4 4
      rtl/bsd/ostypes.inc

+ 4 - 4
rtl/bsd/ostypes.inc

@@ -137,7 +137,7 @@ TYPE
    TDirent = dirent;
    pDirent = ^dirent;
 
-   dir     = packed record
+   dir     = record
         dd_fd     : cint;         // file descriptor associated with directory
         dd_loc    : clong;        // offset in current buffer
         dd_size   : clong;        // amount of data returned by getdirentries
@@ -176,7 +176,7 @@ TYPE
    TFlock   = flock;
    pFlock   = ^flock;
 
- tms = packed record
+ tms = record
          tms_utime  : clock_t;  { User CPU time }
          tms_stime  : clock_t;  { System CPU time }
          tms_cutime : clock_t;  { User CPU time of terminated child procs }
@@ -310,14 +310,14 @@ CONST
 
 
 type
-  timezone = packed record
+  timezone = record
     tz_minuteswest,
     tz_dsttime  : cint;
   end;
   ptimezone =^timezone;
   TTimeZone = timezone;
 
-  rusage = packed record
+  rusage = record
         ru_utime    : timeval;          { user time used }
         ru_stime    : timeval;          { system time used }
         ru_maxrss   : clong;            { max resident set size }