mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 21:19:31 +02:00
* fix type of fourth parameter of msgrcv function
git-svn-id: trunk@16409 -
This commit is contained in:
parent
c4cc9b59e0
commit
889caf5911
@ -80,7 +80,7 @@ begin
|
||||
msgsnd:=do_syscall(syscall_nr_msgsys,2, msqid, TSysParam(msgp), TSysParam(msgsz), msgflg);
|
||||
end;
|
||||
|
||||
Function msgrcv(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgtyp:cint; msgflg:cint):cint;
|
||||
Function msgrcv(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgtyp:clong; msgflg:cint):cint;
|
||||
begin
|
||||
msgrcv:=(do_syscall(syscall_nr_msgsys,3, msqid, TSysParam(msgp), msgsz, msgtyp, msgflg));
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user