summaryrefslogtreecommitdiff
path: root/rtl/bsd
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2011-11-08 22:04:36 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2011-11-08 22:04:36 +0000
commit2977f0572c73b125fcc71f4253aa72020a079eab (patch)
treef4387084789899bd696860a6019eccf07855b738 /rtl/bsd
parentb038cbb328e8c23781bf59006e4c5c508bc9c49d (diff)
downloadfpc-2977f0572c73b125fcc71f4253aa72020a079eab.tar.gz
- 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: http://svn.freepascal.org/svn/fpc/trunk@19612 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/bsd')
-rw-r--r--rtl/bsd/ostypes.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/rtl/bsd/ostypes.inc b/rtl/bsd/ostypes.inc
index 575829d258..b7d206198e 100644
--- a/rtl/bsd/ostypes.inc
+++ b/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 }