mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-06 23:46:04 +02:00
* mmap for x86-64 fixed
This commit is contained in:
parent
7d3944ccaf
commit
03f034fedf
@ -370,12 +370,12 @@ end;
|
|||||||
|
|
||||||
type
|
type
|
||||||
tmmapargs = packed record
|
tmmapargs = packed record
|
||||||
address : longint;
|
address : TSysParam;
|
||||||
size : longint;
|
size : TSysParam;
|
||||||
prot : longint;
|
prot : TSysParam;
|
||||||
flags : longint;
|
flags : TSysParam;
|
||||||
fd : longint;
|
fd : TSysParam;
|
||||||
offset : longint;
|
offset : TSysParam;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -391,10 +391,6 @@ type
|
|||||||
{$define OLDMMAP}
|
{$define OLDMMAP}
|
||||||
{$endif cpuarm}
|
{$endif cpuarm}
|
||||||
|
|
||||||
{$ifdef cpux86_64}
|
|
||||||
{$define OLDMMAP}
|
|
||||||
{$endif cpux86_64}
|
|
||||||
|
|
||||||
Function Fpmmap(adr:pointer;len:size_t;prot:cint;flags:cint;fd:cint;off:off_t):pointer; [public, alias : 'FPC_SYSC_MMAP'];
|
Function Fpmmap(adr:pointer;len:size_t;prot:cint;flags:cint;fd:cint;off:off_t):pointer; [public, alias : 'FPC_SYSC_MMAP'];
|
||||||
// OFF_T procedure, and returns a pointer, NOT cint.
|
// OFF_T procedure, and returns a pointer, NOT cint.
|
||||||
|
|
||||||
@ -513,7 +509,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.21 2004-04-20 20:27:01 florian
|
Revision 1.22 2004-04-25 07:18:49 florian
|
||||||
|
* mmap for x86-64 fixed
|
||||||
|
|
||||||
|
Revision 1.21 2004/04/20 20:27:01 florian
|
||||||
* x86_64 syscall numbers fixed
|
* x86_64 syscall numbers fixed
|
||||||
|
|
||||||
Revision 1.20 2004/04/12 16:33:42 peter
|
Revision 1.20 2004/04/12 16:33:42 peter
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#
|
#
|
||||||
# Makefile.fpc for Free Pascal Tests directory
|
# Makefile.fpc for Free Pascal Tests directory
|
||||||
#
|
#
|
||||||
|
# $Id$
|
||||||
|
#
|
||||||
|
|
||||||
[install]
|
[install]
|
||||||
fpcpackage=y
|
fpcpackage=y
|
||||||
@ -296,3 +298,10 @@ ifdef LASTDATESUFFIX
|
|||||||
-diff -u faillist.$(LASTDATESUFFIX) faillist.$(DATESUFFIX) > difflist.$(DATESUFFIX)
|
-diff -u faillist.$(LASTDATESUFFIX) faillist.$(DATESUFFIX) > difflist.$(DATESUFFIX)
|
||||||
endif
|
endif
|
||||||
@echo $(DATESUFFIX) > lastdate.txt
|
@echo $(DATESUFFIX) > lastdate.txt
|
||||||
|
|
||||||
|
#
|
||||||
|
# $Log$
|
||||||
|
# Revision 1.55 2004-04-25 07:18:49 florian
|
||||||
|
# * mmap for x86-64 fixed
|
||||||
|
#
|
||||||
|
#
|
Loading…
Reference in New Issue
Block a user