mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-01 10:50:32 +02:00
- removed "packed" from record types that should/need not be packed
git-svn-id: trunk@19613 -
This commit is contained in:
parent
aefe5acd72
commit
715c819ff7
@ -76,7 +76,7 @@ const
|
|||||||
type
|
type
|
||||||
{$PACKRECORDS c}
|
{$PACKRECORDS c}
|
||||||
Pgpm_event=^Tgpm_event;
|
Pgpm_event=^Tgpm_event;
|
||||||
Tgpm_event=packed record
|
Tgpm_event=record
|
||||||
buttons : byte;
|
buttons : byte;
|
||||||
modifiers : byte;
|
modifiers : byte;
|
||||||
vc : word;
|
vc : word;
|
||||||
@ -99,7 +99,7 @@ type
|
|||||||
|
|
||||||
type
|
type
|
||||||
Pgpm_connect = ^TGpm_connect;
|
Pgpm_connect = ^TGpm_connect;
|
||||||
Tgpm_connect = packed record
|
Tgpm_connect = record
|
||||||
eventMask : word;
|
eventMask : word;
|
||||||
defaultMask : word;
|
defaultMask : word;
|
||||||
minMod : word;
|
minMod : word;
|
||||||
@ -112,7 +112,7 @@ type
|
|||||||
Tgpmconnect=Tgpm_connect;
|
Tgpmconnect=Tgpm_connect;
|
||||||
|
|
||||||
Pgpm_roi=^Tgpm_roi;
|
Pgpm_roi=^Tgpm_roi;
|
||||||
Tgpm_roi=packed record
|
Tgpm_roi= record
|
||||||
xmin,xmax:integer;
|
xmin,xmax:integer;
|
||||||
ymin,ymax:integer;
|
ymin,ymax:integer;
|
||||||
minmod,maxmod:word;
|
minmod,maxmod:word;
|
||||||
|
@ -225,8 +225,8 @@ const
|
|||||||
UD_LM = $80;
|
UD_LM = $80;
|
||||||
|
|
||||||
type
|
type
|
||||||
user_desc = packed record
|
user_desc = record
|
||||||
entry_number : cint;
|
entry_number : cuint;
|
||||||
base_addr : cuint;
|
base_addr : cuint;
|
||||||
limit : cuint;
|
limit : cuint;
|
||||||
flags : cuint;
|
flags : cuint;
|
||||||
@ -269,13 +269,14 @@ function epoll_ctl(epfd, op, fd: cint; event: pepoll_event): cint; {$ifdef FPC_U
|
|||||||
function epoll_wait(epfd: cint; events: pepoll_event; maxevents, timeout: cint): cint; {$ifdef FPC_USE_LIBC} cdecl; external name 'epoll_wait'; {$endif}
|
function epoll_wait(epfd: cint; events: pepoll_event; maxevents, timeout: cint): cint; {$ifdef FPC_USE_LIBC} cdecl; external name 'epoll_wait'; {$endif}
|
||||||
|
|
||||||
type Puser_cap_header=^user_cap_header;
|
type Puser_cap_header=^user_cap_header;
|
||||||
user_cap_header=packed record
|
user_cap_header=record
|
||||||
version,pid:cardinal;
|
version: cuint32;
|
||||||
|
pid:cint;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
Puser_cap_data=^user_cap_data;
|
Puser_cap_data=^user_cap_data;
|
||||||
user_cap_data=packed record
|
user_cap_data=record
|
||||||
effective,permitted,inheritable:cardinal;
|
effective,permitted,inheritable:cuint32;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{Get a capability.}
|
{Get a capability.}
|
||||||
|
@ -466,7 +466,7 @@ end;
|
|||||||
|
|
||||||
|
|
||||||
type
|
type
|
||||||
tmmapargs = packed record
|
tmmapargs = record
|
||||||
address : TSysParam;
|
address : TSysParam;
|
||||||
size : TSysParam;
|
size : TSysParam;
|
||||||
prot : TSysParam;
|
prot : TSysParam;
|
||||||
|
@ -90,7 +90,7 @@ type
|
|||||||
|
|
||||||
{ directory services }
|
{ directory services }
|
||||||
|
|
||||||
Dirent = packed record
|
Dirent = record
|
||||||
d_fileno : ino64_t; // file number of entry
|
d_fileno : ino64_t; // file number of entry
|
||||||
d_off : off_t;
|
d_off : off_t;
|
||||||
d_reclen : cushort; // length of string in d_name
|
d_reclen : cushort; // length of string in d_name
|
||||||
@ -174,7 +174,7 @@ type
|
|||||||
End;
|
End;
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
tms = packed Record
|
tms = Record
|
||||||
tms_utime : clock_t; { User CPU time }
|
tms_utime : clock_t; { User CPU time }
|
||||||
tms_stime : clock_t; { System CPU time }
|
tms_stime : clock_t; { System CPU time }
|
||||||
tms_cutime : clock_t; { User CPU time of terminated child procs }
|
tms_cutime : clock_t; { User CPU time of terminated child procs }
|
||||||
@ -186,7 +186,7 @@ type
|
|||||||
TFDSet = ARRAY[0..(FD_MAXFDSET div BITSINWORD)-1] of cuLong;
|
TFDSet = ARRAY[0..(FD_MAXFDSET div BITSINWORD)-1] of cuLong;
|
||||||
pFDSet = ^TFDSet;
|
pFDSet = ^TFDSet;
|
||||||
|
|
||||||
timezone = packed record
|
timezone = record
|
||||||
tz_minuteswest,tz_dsttime:cint;
|
tz_minuteswest,tz_dsttime:cint;
|
||||||
end;
|
end;
|
||||||
ptimezone =^timezone;
|
ptimezone =^timezone;
|
||||||
|
@ -127,14 +127,14 @@ Type
|
|||||||
TSockLen = socklen_t;
|
TSockLen = socklen_t;
|
||||||
pSockLen = ^socklen_t;
|
pSockLen = ^socklen_t;
|
||||||
|
|
||||||
timeval = packed record
|
timeval = record
|
||||||
tv_sec:time_t;
|
tv_sec:time_t;
|
||||||
tv_usec:clong;
|
tv_usec:clong;
|
||||||
end;
|
end;
|
||||||
ptimeval = ^timeval;
|
ptimeval = ^timeval;
|
||||||
TTimeVal = timeval;
|
TTimeVal = timeval;
|
||||||
|
|
||||||
timespec = packed record
|
timespec = record
|
||||||
tv_sec : time_t;
|
tv_sec : time_t;
|
||||||
tv_nsec : clong;
|
tv_nsec : clong;
|
||||||
end;
|
end;
|
||||||
@ -142,7 +142,7 @@ Type
|
|||||||
TTimeSpec = timespec;
|
TTimeSpec = timespec;
|
||||||
|
|
||||||
{$ifdef cpu64}
|
{$ifdef cpu64}
|
||||||
TStatfs = packed record
|
TStatfs = record
|
||||||
fstype, { File system type }
|
fstype, { File system type }
|
||||||
bsize : clong; { Optimal block trensfer size }
|
bsize : clong; { Optimal block trensfer size }
|
||||||
blocks, { Data blocks in system }
|
blocks, { Data blocks in system }
|
||||||
@ -156,7 +156,7 @@ Type
|
|||||||
spare : array [0..4] of clong; { For later use }
|
spare : array [0..4] of clong; { For later use }
|
||||||
end;
|
end;
|
||||||
{$else}
|
{$else}
|
||||||
TStatfs = packed record
|
TStatfs = record
|
||||||
fstype, { File system type }
|
fstype, { File system type }
|
||||||
bsize : cint; { Optimal block trensfer size }
|
bsize : cint; { Optimal block trensfer size }
|
||||||
blocks, { Data blocks in system }
|
blocks, { Data blocks in system }
|
||||||
|
@ -1223,7 +1223,7 @@ Const
|
|||||||
{$endif cpuarm}
|
{$endif cpuarm}
|
||||||
|
|
||||||
Type
|
Type
|
||||||
winsize = packed record
|
winsize = record
|
||||||
ws_row,
|
ws_row,
|
||||||
ws_col,
|
ws_col,
|
||||||
ws_xpixel,
|
ws_xpixel,
|
||||||
|
Loading…
Reference in New Issue
Block a user