* Fix bug ID , wrong size for msqid_ds

git-svn-id: trunk@33347 -
This commit is contained in:
michael 2016-03-27 13:36:48 +00:00
parent 65c880a7f6
commit fb984ad18a

View File

@ -508,6 +508,8 @@ type
{$elseif defined(Linux)}
PMSQid_ds = ^TMSQid_ds;
TMSQid_ds = record
{ 32 bit }
{$IFNDEF CPU64}
msg_perm : TIPC_perm;
msg_first : PMsg;
msg_last : PMsg;
@ -519,6 +521,20 @@ type
msg_qbytes : word;
msg_lspid : ipc_pid_t;
msg_lrpid : ipc_pid_t;
{$ELSE cpu64}
{ 64 bit }
msg_perm : TIPC_perm;
msg_stime : time_t;
msg_rtime : time_t;
msg_ctime : time_t;
msg_cbytes : qword;
msg_qnum : qword;
msg_qbytes : qword;
msg_lspid : ipc_pid_t;
msg_lrpid : ipc_pid_t;
pad1 : qword;
pad2 : qword;
{$ENDIF}
end;
{$else}
{$if defined(Darwin)}