mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-13 22:25:59 +02:00
* fixed ipc for 32 bit systems
git-svn-id: trunk@7073 -
This commit is contained in:
parent
3b3162062a
commit
572608a64f
@ -58,7 +58,7 @@ Type
|
||||
{$ifdef cpu64}
|
||||
mode_t = cint; { used for file attributes }
|
||||
{$else cpu64}
|
||||
mode_t = cuint32; { used for file attributes }
|
||||
mode_t = cushort; { used for file attributes }
|
||||
{$endif cpu64}
|
||||
TMode = mode_t;
|
||||
pMode = ^mode_t;
|
||||
|
@ -22,7 +22,7 @@ Unit ipc;
|
||||
|
||||
interface
|
||||
|
||||
Uses BaseUnix;
|
||||
Uses BaseUnix,UnixType;
|
||||
|
||||
{ ----------------------------------------------------------------------
|
||||
General IPC stuff
|
||||
@ -135,8 +135,8 @@ Type
|
||||
shm_atime : time_t;
|
||||
shm_dtime : time_t;
|
||||
shm_ctime : time_t;
|
||||
shm_cpid : pid_t;
|
||||
shm_lpid : pid_t;
|
||||
shm_cpid : ipc_pid_t;
|
||||
shm_lpid : ipc_pid_t;
|
||||
shm_nattch : word;
|
||||
shm_npages : word;
|
||||
shm_pages : Pointer;
|
||||
|
Loading…
Reference in New Issue
Block a user