mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 17:39:30 +01:00
37 lines
1.3 KiB
PHP
37 lines
1.3 KiB
PHP
{
|
|
$Id$
|
|
Copyright (c) 2002 by Marco van de Voort
|
|
|
|
deeper calls exported by unit unix
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
****************************************************************************
|
|
}
|
|
|
|
Function Fpmmap(adr:pointer;len:size_t;prot:cint;flags:cint;fd:cint;off:off_t):pointer; external name 'FPC_SYSC_MMAP';
|
|
Function Fpmunmap(adr:pointer;len:size_t):cint; external name 'FPC_SYSC_MUNMAP';
|
|
|
|
function fpgettimeofday(tp: ptimeval;tzp:ptimezone):cint; external name 'FPC_SYSC_GETTIMEOFDAY';
|
|
function fpNice(N:cint):cint;
|
|
Function fpGetPriority(Which,Who:cint):cint;
|
|
Function fpSetPriority(Which,Who,What:cint):cint;
|
|
Function fpLstat(path:pchar;Info:pstat):cint;
|
|
Function fpLstat(Filename: PathStr;Info:pstat):cint;
|
|
Function fpSymlink(oldname,newname:pchar):cint;
|
|
Function fpReadLink(name,linkname:pchar;maxlen:size_t):cint;
|
|
Function fpReadLink(name:PathStr):PathStr;
|
|
|
|
{
|
|
$Log$
|
|
Revision 1.4 2003-11-19 11:46:55 marco
|
|
* changes due to the previous *BSD changes. Mainly moving constants from
|
|
unix to systypes.inc (which acts as unxtypes.inc)
|
|
|
|
|
|
} |