mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 05:39:19 +02:00
parent
65c880a7f6
commit
fb984ad18a
@ -508,6 +508,8 @@ type
|
|||||||
{$elseif defined(Linux)}
|
{$elseif defined(Linux)}
|
||||||
PMSQid_ds = ^TMSQid_ds;
|
PMSQid_ds = ^TMSQid_ds;
|
||||||
TMSQid_ds = record
|
TMSQid_ds = record
|
||||||
|
{ 32 bit }
|
||||||
|
{$IFNDEF CPU64}
|
||||||
msg_perm : TIPC_perm;
|
msg_perm : TIPC_perm;
|
||||||
msg_first : PMsg;
|
msg_first : PMsg;
|
||||||
msg_last : PMsg;
|
msg_last : PMsg;
|
||||||
@ -519,6 +521,20 @@ type
|
|||||||
msg_qbytes : word;
|
msg_qbytes : word;
|
||||||
msg_lspid : ipc_pid_t;
|
msg_lspid : ipc_pid_t;
|
||||||
msg_lrpid : 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;
|
end;
|
||||||
{$else}
|
{$else}
|
||||||
{$if defined(Darwin)}
|
{$if defined(Darwin)}
|
||||||
|
Loading…
Reference in New Issue
Block a user