123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- {
- This file is part of the Free Pascal run time library.
- Copyright (c) 2001 by the Free Pascal development team
- This file should become an alternative to the syscalls in due time,
- to import the base calls from libc.
- Be very careful though. Kernel types and libc types are often not the
- same on Linux.
- 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.
- ***********************************************************************}
- { var
- Errno : cint; external clib name 'errno';}
- Type TGrpArr = Array [0..0] of TGid; { C style array workarounds}
- pGrpArr = ^TGrpArr;
- TFilDes = Array [0..1] of cInt;
- pFilDes = ^TFilDes;
- const
- {$if defined(linux) and defined(cpu32) and not defined(fs32bit)}
- suffix64bit = '64';
- {$else}
- suffix64bit = '';
- {$endif}
- function FpAccess (pathname : pchar; amode : cint): cint; cdecl; external clib name 'access';
- function FpChdir (path : pchar): cint; cdecl; external clib name 'chdir';
- Function FpChown (path : pChar; owner : TUid; group : TGid): cInt; cdecl; external clib name 'chown';
- function FpClose (fd : cint): cint; cdecl; external clib name 'close';
- Function FpClosedir (var dirp : Dir): cInt; cdecl; external clib name 'closedir';
- function FpClosedir (dirp : pdir): cint; cdecl; external clib name 'closedir';
- function FpDup (oldd:cint):cint; cdecl; external clib name 'dup';
- function FpDup2 (oldd:cint;newd:cint):cint; cdecl; external clib name 'dup2';
- function FpExecve (path : pchar; argv : ppchar; envp: ppchar): cint; cdecl; external clib name 'execve';
- function FpFork : TPid; cdecl; external clib name 'fork';
- function FpvFork : TPid; cdecl; external clib name 'vfork';
- function FpFtruncate(fd : cint; flength : TOff): cint; cdecl; external clib name 'ftruncate'+suffix64bit;
- function FpLseek (fd : cint; offset : TOff; whence : cint): TOff; cdecl; external clib name 'lseek'+suffix64bit;
- function FpMkdir (path : pchar; mode: TMode):cint; cdecl; external clib name 'mkdir';
- function FpOpen (path: pchar; flags : cint; mode: TMode):cint;
- {$if defined(linux) and not defined(fs32bit)}
- { we need a wrapper for linux to automatically pass O_LARGEFILE with flags }
- {$ifdef FPC_IS_SYSTEM}forward;{$endif} inline;
- function __FpOpen (path: pchar; flags : cint; mode: TMode):cint;
- {$endif}
- cdecl; external clib name 'open';
- function FpOpendir (dirname : pchar): pdir; cdecl; external clib name 'opendir';
- function FpRead (fd: cint; buf: pchar; nbytes : TSize): TSSize; cdecl; external clib name 'read';
- function FpReaddir (dirp : pdir) : pdirent;cdecl; external clib name 'readdir'+suffix64bit;
- Function FpReaddir (var dirp : Dir) : pDirent;cdecl; external clib name 'readdir'+suffix64bit;
- function FpRename (old : pchar; newpath: pchar): cint; cdecl;external clib name 'rename';
- function FpRmdir (path : pchar): cint; cdecl; external clib name 'rmdir';
- function FpSigaction (sig: cint;var act : sigactionrec; var oact : sigactionrec): cint; cdecl; external clib name 'sigaction';
- Function FPSigaction (sig: cInt; act :pSigActionRec;oact:pSigActionRec):cint;cdecl; external clib name 'sigaction';
- Function FpChmod (path : pChar; Mode : TMode): cInt; cdecl; external clib name 'chmod';
- Function FPUtime(path:pchar;times:putimbuf):cint; cdecl; external clib name 'utime';
- Function FpGetcwd (path:pChar; siz:TSize):pChar; cdecl; external clib name 'getcwd';
- function FPSigProcMask(how:cint;nset : psigset;oset : psigset):cint;cdecl; external clib name 'sigprocmask';
- function FPSigProcMask(how:cint;const nset : sigset;var oset : sigset):cint;cdecl; external clib name 'sigprocmask';
- function FpTime (tloc:ptime_t): time_t; cdecl; external clib name 'time';
- Function FpTime (var tloc : TTime): TTime; cdecl; external clib name 'time';
- function FpTimes (var buffer : tms): TClock; cdecl; external clib name 'times';
- function FpUname (var name: utsname): cint; cdecl; external clib name 'uname';
- function FpUnlink (path: pchar): cint; cdecl; external clib name 'unlink';
- function FpWaitpid (pid : TPid; stat_loc : pcint; options: cint): TPid; cdecl; external clib name 'waitpid';
- function FpWrite (fd: cint;buf:pchar; nbytes : TSize): TSSize; cdecl; external clib name 'write';
- procedure FpExit (status : cint); cdecl; external clib name '_exit';
- function fpmmap (addr:pointer;len:size_t;prot:cint;flags:cint;fd:cint;ofs:off_t):pointer; cdecl; external clib name 'mmap'+suffix64bit;
- function fpmunmap (addr:pointer;len:size_t):cint; cdecl; external clib name 'munmap';
- { The libc version has "..." as third parameter -> wrap for }
- { interface compatibility with syscalls }
- function FpIOCtl (Handle:cint;Ndx: TIOCtlRequest;Data: Pointer):cint; {$ifdef FPC_IS_SYSTEM}forward;{$endif}
- {$ifdef beos}
- {$ifdef haiku}
- Function FPSelect (N:cint;readfds,writefds,exceptfds:pfdSet;TimeOut:PTimeVal):cint; cdecl; external 'network' name 'select';
- Function FpPoll (fds: ppollfd; nfds: cuint; timeout: clong): cint; cdecl; external clib name 'poll';
- {$else}
- Function FPSelect (N:cint;readfds,writefds,exceptfds:pfdSet;TimeOut:PTimeVal):cint; cdecl; external 'net' name 'select';
- Function FpPoll (fds: ppollfd; nfds: cuint; timeout: clong): cint; cdecl; external clib name 'poll';
- {$endif}
- {$else}
- Function FPSelect (N:cint;readfds,writefds,exceptfds:pfdSet;TimeOut:PTimeVal):cint; cdecl; external clib name 'select';
- Function FpPoll (fds: ppollfd; nfds: cuint; timeout: clong): cint; cdecl; external clib name 'poll';
- {$endif}
- function fpgetenv (name : pchar):pchar; cdecl; external clib name 'getenv';
- Function FpKill (pid : TPid; sig: cInt): cInt; cdecl; external clib name 'kill';
- Function FpGetpid : TPid; cdecl;external clib name 'getpid';
- Function FpGetppid : TPid;cdecl;external clib name 'getppid';
- Function FpGetuid : TUid;cdecl;external clib name 'getuid';
- Function FpGeteuid : TUid;cdecl;external clib name 'geteuid';
- Function FpGetgid : TGid;cdecl;external clib name 'getgid';
- Function FpGetegid : TGid;cdecl;external clib name 'getegid';
- Function FpSetuid (uid : TUid): cInt;cdecl;external clib name 'setuid';
- Function FpSetgid (gid : TGid): cInt;cdecl;external clib name 'setgid';
- Function FpGetgroups (gidsetsize : cInt; var grouplist : tgrparr):cint; cdecl;external clib name 'getgroups';
- Function FpGetpgrp : TPid; cdecl;external clib name 'getpgrp';
- Function FpSetsid : TPid; cdecl;external clib name 'setsid';
- Function FpPipe (var fildes : tfildes):cInt; cdecl;external clib name 'pipe';
- { The libc version has "..." as third parameter -> wrap for }
- { interface compatibility with syscalls }
- Function FpFcntl (fildes : cInt; cmd : cInt): cInt; {$ifdef FPC_IS_SYSTEM}forward;{$endif}
- Function FpFcntl (fildes : cInt; cmd : cInt; arg :cInt): cInt; {$ifdef FPC_IS_SYSTEM}forward;{$endif}
- Function FpFcntl (fildes : cInt; cmd : cInt; var arg : flock): cInt; {$ifdef FPC_IS_SYSTEM}forward;{$endif}
- Function FpAlarm (seconds : cuint) : cuint; cdecl;external clib name 'alarm';
- Function FpPause : cInt; cdecl; external clib name 'pause';
- Function FpMkfifo (path: pchar; mode: tmode): cint; cdecl; external clib name 'mkfifo';
- {$ifdef solaris}
- {$linklib md5}
- {$linklib aio}
- Function FPnanosleep (const rqtp: ptimespec; rmtp: ptimespec): cint; cdecl; external 'rt' name 'nanosleep';
- {$else solaris}
- {$ifndef beos}
- Function FPnanosleep (const rqtp: ptimespec; rmtp: ptimespec): cint; cdecl; external clib name 'nanosleep';
- {$else}
- {$endif}
- {$endif solaris}
- function fpNice (N:cint):cint; cdecl; external clib name 'nice';
- Function fpGetPriority (Which,Who:cint):cint; cdecl; external clib name 'getpriority';
- Function fpSetPriority (Which,Who,What:cint):cint; cdecl; external clib name 'setpriority';
- Function fpSymlink (oldname,newname:pchar):cint; cdecl; external clib name 'symlink';
- Function fpReadLink (name,linkname:pchar;maxlen:size_t):cint; cdecl; external clib name 'readlink';
- Function FpUmask (cmask : TMode): TMode; cdecl; external clib name 'umask';
- {$ifndef beos}
- function fpsettimeofday(tp:ptimeval;tzp:ptimezone):cint; cdecl; external clib name 'settimeofday';
- {$else}
- // function fpsettimeofday(tp:ptimeval;tzp:ptimezone):cint;
- {$endif}
- function FpGetRLimit(resource : cInt; rlim : PRLimit) : cInt; cdecl; external clib name 'getrlimit';
- {$ifdef linux}
- {$ifndef FPC_IS_SYSTEM}
- { those functions are macros on linux }
- function FpFstat (fd : cint; var sb : stat): cint;inline;
- Function fpLstat (path:pchar;Info:pstat):cint;inline;
- function FpStat (path: pchar; var buf : stat): cint;inline;
- {$endif FPC_IS_SYSTEM}
- {$else linux}
- function FpFstat (fd : cint; var sb : stat): cint; cdecl; external clib name 'fstat'+suffix64bit;
- Function fpLstat (path:pchar;Info:pstat):cint; cdecl; external clib name 'lstat'+suffix64bit;
- function FpStat (path: pchar; var buf : stat): cint; cdecl; external clib name 'stat'+suffix64bit;
- {$endif linux}
- Function FpPRead (fd : cInt; buf: pChar; nbytes : TSize; offset:Toff): TSsize; cdecl; external clib name 'pread'+suffix64bit;
- function FpReadV (fd: cint; const iov : piovec; iovcnt : cint):TSSize; cdecl; external clib name 'readv';
- Function FpPWrite (fd : cInt; buf:pChar; nbytes : TSize; offset:Toff): TSSize; cdecl; external clib name 'pwrite'+suffix64bit;
- function FpWriteV (fd: cint; const iov : piovec; iovcnt : cint):TSSize; cdecl; external clib name 'writev';
|