mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:29:28 +02:00
* Initial *BSD versions. Seems that OpenBSD doesn't need much change,
NetBSD may need some fixes to stat record and ftruncate and lseek. It is all close together, and it should be doable to have just one copy of these for *BSD.
This commit is contained in:
parent
657aa6d1cc
commit
3ff91078da
565
rtl/bsd/osposix.inc
Normal file
565
rtl/bsd/osposix.inc
Normal file
@ -0,0 +1,565 @@
|
||||
{
|
||||
$Id$
|
||||
Copyright (c) 2001 by Carl Eric Codere
|
||||
|
||||
Implements roughly POSIX 1003.1 conforming interface for *BSD
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
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. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
|
||||
{$ifdef uselibc}
|
||||
{$Linklib c}
|
||||
|
||||
{ var
|
||||
Errno : cint; external name 'errno';}
|
||||
|
||||
function sys_time(var tloc:time_t): time_t; cdecl; external name 'time';
|
||||
function sys_open(const path: pchar; flags : cint; mode: mode_t):cint; cdecl; external name 'open';
|
||||
function sys_close(fd : cint): cint; cdecl; external name 'close';
|
||||
function sys_lseek(fd : cint; offset : off_t; whence : cint): off_t; cdecl; external name 'lseek';
|
||||
function sys_read(fd: cint; buf: pchar; nbytes : size_t): ssize_t; cdecl; external name 'read';
|
||||
function sys_write(fd: cint;const buf:pchar; nbytes : size_t): ssize_t; cdecl; external name 'write';
|
||||
function sys_unlink(const path: pchar): cint; cdecl; external name 'unlink';
|
||||
function sys_rename(const old : pchar; const newpath: pchar): cint; cdecl;external name 'rename';
|
||||
function sys_stat(const path: pchar; var buf : stat): cint; cdecl; external name 'stat';
|
||||
function sys_chdir(const path : pchar): cint; cdecl; external name 'chdir';
|
||||
function sys_mkdir(const path : pchar; mode: mode_t):cint; cdecl; external name 'mkdir';
|
||||
function sys_rmdir(const path : pchar): cint; cdecl; external name 'rmdir';
|
||||
function sys_opendir(const dirname : pchar): pdir; cdecl; external name 'opendir';
|
||||
function sys_readdir(dirp : pdir) : pdirent;cdecl; external name 'readdir';
|
||||
function sys_closedir(dirp : pdir): cint; cdecl; external name 'closedir';
|
||||
procedure sys_exit(status : cint); cdecl; external name '_exit';
|
||||
function sys_sigaction(sig: cint; var act : sigactionrec; var oact : sigactionrec): cint; cdecl; external name 'sigaction';
|
||||
function sys_ftruncate(fd : cint; flength : off_t): cint; cdecl; external name 'ftruncate';
|
||||
function sys_rename(const old : pchar; const newpath: pchar): cint; cdecl;external name 'rename';
|
||||
function sys_fstat(fd : cint; var sb : stat): cint; cdecl; external name 'fstat';
|
||||
function sys_fork : pid_t; cdecl; external name 'fork';
|
||||
function sys_execve(const path : pchar; const argv : ppchar; const envp: ppchar): cint; cdecl; external name 'execve';
|
||||
function sys_waitpid(pid : pid_t; var stat_loc : cint; options: cint): pid_t; cdecl; external name 'waitpid';
|
||||
function sys_access(const pathname : pchar; amode : cint): cint; cdecl; external name 'access';
|
||||
|
||||
// function sys_uname(var name: utsname): cint; cdecl; external name 'uname';
|
||||
|
||||
function sys_Dup(oldd:cint):cint; cdecl; external name 'dup';
|
||||
function sys_Dup2(oldd:cint;newd:cint):cint; cdecl; external name 'dup2';
|
||||
|
||||
|
||||
{$else}
|
||||
|
||||
{*****************************************************************************
|
||||
--- Main:The System Call Self ---
|
||||
*****************************************************************************}
|
||||
|
||||
{ The system designed for Linux can't be used for FreeBSD so easily, since
|
||||
FreeBSD pushes arguments, instead of loading them to registers.}
|
||||
|
||||
Var ErrNo : Longint;
|
||||
|
||||
{$I syscall.inc}
|
||||
{$I sysnr2.inc}
|
||||
|
||||
// Should be moved to a FreeBSD specific unit in the future.
|
||||
|
||||
Type
|
||||
timeval = packed record
|
||||
sec,usec:clong;
|
||||
end;
|
||||
ptimeval = ^timeval;
|
||||
TTimeVal = timeval;
|
||||
|
||||
timespec = packed record
|
||||
tv_sec : time_t;
|
||||
tv_nsec : clong;
|
||||
end;
|
||||
|
||||
timezone = packed record
|
||||
minuteswest,
|
||||
dsttime : cint;
|
||||
end;
|
||||
ptimezone =^timezone;
|
||||
TTimeZone = timezone;
|
||||
|
||||
function sys_time(var tloc:time_t): time_t;
|
||||
|
||||
VAR tv : timeval;
|
||||
tz : timezone;
|
||||
retval : longint;
|
||||
|
||||
begin
|
||||
Retval:=do_syscall(syscall_nr_gettimeofday,longint(@tv),longint(@tz));
|
||||
If retval=-1 then
|
||||
sys_time:=-1
|
||||
else
|
||||
Begin
|
||||
// If Assigned(tloc) Then
|
||||
TLoc:=tv.sec;
|
||||
sys_time:=tv.sec;
|
||||
End;
|
||||
End;
|
||||
|
||||
{*****************************************************************************
|
||||
--- File:File handling related calls ---
|
||||
*****************************************************************************}
|
||||
|
||||
function sys_open(const path: pchar; flags : cint; mode: mode_t):cint;
|
||||
|
||||
Begin
|
||||
sys_open:=do_syscall(syscall_nr_open,longint(path),longint(flags),longint(mode));
|
||||
End;
|
||||
|
||||
function sys_close(fd : cint): cint;
|
||||
|
||||
begin
|
||||
sys_close:=do_syscall(syscall_nr_close,fd);
|
||||
end;
|
||||
|
||||
function sys_lseek(fd : cint; offset : off_t; whence : cint): off_t;
|
||||
|
||||
{this one is special for the return value being 64-bit..
|
||||
Have to test on 5.x to make it fully 64-bit}
|
||||
|
||||
begin
|
||||
{ugly implicit returnvalue}
|
||||
do_syscall(syscall_nr___syscall,syscall_nr_lseek,0,longint(fd),0,Offset,0,Whence);
|
||||
end;
|
||||
|
||||
|
||||
{ old code:
|
||||
asm
|
||||
pushl Whence
|
||||
pushl $0 // high dword
|
||||
pushl Off
|
||||
pushl $0
|
||||
pushl F
|
||||
pushl $0 // Your guess is as good as mine. Pointer to ret val?
|
||||
pushl $0xc7 // Actual lseek syscall number.
|
||||
movl $0xc6,%eax
|
||||
call actualsyscall
|
||||
addl $28,%esp
|
||||
mov %ebx,Errno
|
||||
end;
|
||||
}
|
||||
|
||||
function sys_read(fd: cint; buf: pchar; nbytes : size_t): ssize_t;
|
||||
|
||||
begin
|
||||
sys_read:=do_syscall(syscall_nr_read,Fd,longint(buf),nbytes);
|
||||
end;
|
||||
|
||||
function sys_write(fd: cint;const buf:pchar; nbytes : size_t): ssize_t;
|
||||
|
||||
begin
|
||||
sys_write:=do_syscall(syscall_nr_write,Fd,longint(buf),nbytes);
|
||||
end;
|
||||
|
||||
function sys_unlink(const path: pchar): cint;
|
||||
|
||||
begin
|
||||
sys_unlink:=do_syscall(syscall_nr_unlink,longint(path));
|
||||
end;
|
||||
|
||||
function sys_rename(const old : pchar; const newpath: pchar): cint;
|
||||
|
||||
begin
|
||||
sys_rename:=do_syscall(syscall_nr_rename,longint(old),longint(newpath));
|
||||
end;
|
||||
|
||||
function sys_stat(const path: pchar; var buf : stat):cint;
|
||||
|
||||
begin
|
||||
sys_stat:=do_syscall(syscall_nr_stat,longint(path),longint(@buf));
|
||||
end;
|
||||
|
||||
|
||||
{*****************************************************************************
|
||||
--- Directory:Directory related calls ---
|
||||
*****************************************************************************}
|
||||
|
||||
function sys_chdir(const path : pchar): cint;
|
||||
|
||||
begin
|
||||
sys_chdir:=do_syscall(syscall_nr_chdir,longint(path));
|
||||
end;
|
||||
|
||||
function sys_mkdir(const path : pchar; mode: mode_t):cint;
|
||||
|
||||
begin {Mode is 16-bit on F-BSD}
|
||||
sys_mkdir:=do_syscall(syscall_nr_mkdir,longint(path),mode);
|
||||
end;
|
||||
|
||||
function sys_rmdir(const path : pchar): cint;
|
||||
|
||||
begin
|
||||
sys_rmdir:=do_syscall(syscall_nr_rmdir,longint(path));
|
||||
end;
|
||||
|
||||
{$ifndef NewReaddir}
|
||||
|
||||
const DIRBLKSIZ=1024;
|
||||
|
||||
|
||||
function sys_opendir(const dirname : pchar): pdir;
|
||||
|
||||
var
|
||||
fd:longint;
|
||||
st:stat;
|
||||
ptr:pdir;
|
||||
begin
|
||||
sys_opendir:=nil;
|
||||
if sys_stat(dirname,st)<0 then
|
||||
exit;
|
||||
{ Is it a dir ? }
|
||||
if not((st.st_mode and $f000)=$4000)then
|
||||
begin
|
||||
errno:=sys_enotdir;
|
||||
exit
|
||||
end;
|
||||
{ Open it}
|
||||
fd:=sys_open(dirname,O_RDONLY,438);
|
||||
if fd<0 then
|
||||
Begin
|
||||
Errno:=-1;
|
||||
exit;
|
||||
End;
|
||||
new(ptr);
|
||||
if ptr=nil then
|
||||
Begin
|
||||
Errno:=1;
|
||||
exit;
|
||||
End;
|
||||
Getmem(ptr^.dd_buf,2*DIRBLKSIZ);
|
||||
if ptr^.dd_buf=nil then
|
||||
exit;
|
||||
ptr^.dd_fd:=fd;
|
||||
ptr^.dd_loc:=-1;
|
||||
ptr^.dd_rewind:=longint(ptr^.dd_buf);
|
||||
ptr^.dd_size:=0;
|
||||
// ptr^.dd_max:=sizeof(ptr^.dd_buf^);
|
||||
sys_opendir:=ptr;
|
||||
end;
|
||||
|
||||
function sys_closedir(dirp : pdir): cint;
|
||||
|
||||
begin
|
||||
sys_closedir:=sys_close(dirp^.dd_fd);
|
||||
Freemem(dirp^.dd_buf);
|
||||
dispose(dirp);
|
||||
end;
|
||||
|
||||
function sys_readdir(dirp : pdir) : pdirent;
|
||||
|
||||
{Different from Linux, Readdir on BSD is based on Getdents, due to the
|
||||
missing of the readdir syscall.
|
||||
Getdents requires the buffer to be larger than the blocksize.
|
||||
This usually the sectorsize =512 bytes, but maybe tapedrives and harddisks
|
||||
with blockmode have this higher?}
|
||||
|
||||
function readbuffer:longint;
|
||||
|
||||
var retval :longint;
|
||||
|
||||
begin
|
||||
Retval:=do_syscall(syscall_nr_getdents,longint(dirp^.dd_fd),longint(@dirp^.dd_buf^),DIRBLKSIZ {sizeof(getdentsbuffer)});
|
||||
dirp^.dd_rewind:=longint(dirp^.dd_buf);
|
||||
if retval=0 then
|
||||
begin
|
||||
dirp^.dd_rewind:=0;
|
||||
dirp^.dd_loc:=0;
|
||||
end
|
||||
else
|
||||
dirP^.dd_loc:=retval;
|
||||
readbuffer:=retval;
|
||||
end;
|
||||
|
||||
var
|
||||
FinalEntry : pdirent;
|
||||
novalid : boolean;
|
||||
Reclen : Longint;
|
||||
CurEntry : PDirent;
|
||||
|
||||
begin
|
||||
if (dirp^.dd_buf=nil) or (dirp^.dd_loc=0) THEN
|
||||
exit(nil);
|
||||
if (dirp^.dd_loc=-1) OR {First readdir on this pdir. Initial fill of buffer}
|
||||
(dirp^.dd_rewind>=(longint(dirp^.dd_buf)+dirblksiz)) then {no more entries left?}
|
||||
Begin
|
||||
if readbuffer=0 then {succesful read?}
|
||||
Exit(NIL); {No more data}
|
||||
End;
|
||||
FinalEntry:=NIL;
|
||||
CurEntry:=nil;
|
||||
repeat
|
||||
novalid:=false;
|
||||
CurEntry:=pdirent(dirp^.dd_rewind);
|
||||
RecLen:=CurEntry^.d_reclen;
|
||||
if RecLen<>0 Then
|
||||
begin {valid direntry?}
|
||||
if CurEntry^.d_fileno<>0 then
|
||||
FinalEntry:=CurEntry;
|
||||
inc(dirp^.dd_rewind,Reclen);
|
||||
end
|
||||
else
|
||||
begin {block entirely searched or reclen=0}
|
||||
Novalid:=True;
|
||||
if dirp^.dd_loc<>0 THEN {blocks left?}
|
||||
if readbuffer()<>0 then {succesful read?}
|
||||
novalid:=false;
|
||||
end;
|
||||
until (FinalEntry<>nil) or novalid;
|
||||
If novalid then
|
||||
FinalEntry:=nil;
|
||||
Sys_ReadDir:=FinalEntry;
|
||||
end;
|
||||
{$endif}
|
||||
|
||||
{*****************************************************************************
|
||||
--- Process:Process & program handling - related calls ---
|
||||
*****************************************************************************}
|
||||
|
||||
procedure sys_exit(status : cint);
|
||||
|
||||
begin
|
||||
do_syscall(syscall_nr_exit,status);
|
||||
end;
|
||||
|
||||
{
|
||||
Change action of process upon receipt of a signal.
|
||||
Signum specifies the signal (all except SigKill and SigStop).
|
||||
If Act is non-nil, it is used to specify the new action.
|
||||
If OldAct is non-nil the previous action is saved there.
|
||||
}
|
||||
|
||||
function sys_sigaction(sig: cint; var act : sigactionrec; var oact : sigactionrec): cint;
|
||||
|
||||
{
|
||||
Change action of process upon receipt of a signal.
|
||||
Signum specifies the signal (all except SigKill and SigStop).
|
||||
If Act is non-nil, it is used to specify the new action.
|
||||
If OldAct is non-nil the previous action is saved there.
|
||||
}
|
||||
|
||||
begin
|
||||
do_syscall(syscall_nr_sigaction,longint(sig),longint(@act),longint(@oact));
|
||||
end;
|
||||
|
||||
(*=================== MOVED from syslinux.inc ========================*)
|
||||
|
||||
function sys_ftruncate(fd : cint; flength : off_t): cint;
|
||||
|
||||
{this one is special for the return value being 64-bit..}
|
||||
|
||||
begin
|
||||
Do_syscall(syscall_nr___syscall,syscall_nr_ftruncate,0,fd,0,flength,0);
|
||||
end;
|
||||
|
||||
function sys_fstat(fd : cint; var sb : stat): cint;
|
||||
|
||||
begin
|
||||
Sys_FStat:=do_SysCall(syscall_nr_fstat,fd,longint(@sb));
|
||||
end;
|
||||
|
||||
{$ifdef NewReaddir}
|
||||
{$I readdir.inc}
|
||||
{$endif}
|
||||
|
||||
function sys_fork : pid_t;
|
||||
{
|
||||
This function issues the 'fork' System call. the program is duplicated in memory
|
||||
and Execution continues in parent and child process.
|
||||
In the parent process, fork returns the PID of the child. In the child process,
|
||||
zero is returned.
|
||||
A negative value indicates that an error has occurred, the error is returned in
|
||||
LinuxError.
|
||||
}
|
||||
|
||||
Begin
|
||||
sys_fork:=Do_syscall(SysCall_nr_fork);
|
||||
End;
|
||||
|
||||
{
|
||||
function sys_execve(const path : pathstr; const argv : ppchar; const envp: ppchar): cint;
|
||||
}
|
||||
{
|
||||
Replaces the current program by the program specified in path,
|
||||
arguments in args are passed to Execve.
|
||||
environment specified in ep is passed on.
|
||||
}
|
||||
|
||||
{
|
||||
Begin
|
||||
path:=path+#0;
|
||||
do_syscall(syscall_nr_Execve,longint(@path[1]),longint(Argv),longint(envp));
|
||||
End;
|
||||
}
|
||||
|
||||
function sys_execve(const path : pchar; const argv : ppchar; const envp: ppchar): cint;
|
||||
{
|
||||
Replaces the current program by the program specified in path,
|
||||
arguments in args are passed to Execve.
|
||||
environment specified in ep is passed on.
|
||||
}
|
||||
|
||||
Begin
|
||||
do_syscall(syscall_nr_Execve,longint(path),longint(Argv),longint(envp));
|
||||
End;
|
||||
|
||||
function sys_waitpid(pid : pid_t; var stat_loc : cint; options: cint): pid_t;
|
||||
{
|
||||
Waits until a child with PID Pid exits, or returns if it is exited already.
|
||||
Any resources used by the child are freed.
|
||||
The exit status is reported in the adress referred to by Status. It should
|
||||
be a longint.
|
||||
}
|
||||
|
||||
begin
|
||||
sys_WaitPID:=do_syscall(syscall_nr_WaitPID,PID,longint(Stat_loc),options,0);
|
||||
end;
|
||||
|
||||
function sys_access(const pathname : pchar; amode : cint): cint;
|
||||
{
|
||||
Test users access rights on the specified file.
|
||||
Mode is a mask xosisting of one or more of R_OK, W_OK, X_OK, F_OK.
|
||||
R,W,X stand for read,write and Execute access, simultaneously.
|
||||
F_OK checks whether the test would be allowed on the file.
|
||||
i.e. It checks the search permissions in all directory components
|
||||
of the path.
|
||||
The test is done with the real user-ID, instead of the effective.
|
||||
If access is denied, or an error occurred, false is returned.
|
||||
If access is granted, true is returned.
|
||||
Errors other than no access,are reported in linuxerror.
|
||||
}
|
||||
|
||||
begin
|
||||
sys_Access:=do_syscall(syscall_nr_access,longint(pathname),amode);
|
||||
end;
|
||||
{
|
||||
function sys_access(const pathname : pathstr; amode : cint): cint;
|
||||
|
||||
{
|
||||
Test users access rights on the specified file.
|
||||
Mode is a mask xosisting of one or more of R_OK, W_OK, X_OK, F_OK.
|
||||
R,W,X stand for read,write and Execute access, simultaneously.
|
||||
F_OK checks whether the test would be allowed on the file.
|
||||
i.e. It checks the search permissions in all directory components
|
||||
of the path.
|
||||
The test is done with the real user-ID, instead of the effective.
|
||||
If access is denied, or an error occurred, false is returned.
|
||||
If access is granted, true is returned.
|
||||
Errors other than no access,are reported in linuxerror.
|
||||
}
|
||||
|
||||
begin
|
||||
pathname:=pathname+#0;
|
||||
Access:=do_syscall(syscall_nr_access, longint(@pathname[1]),mode)=0;
|
||||
end;
|
||||
}
|
||||
|
||||
function sys_Dup(oldd:cint):cint;
|
||||
{
|
||||
Copies the filedescriptor oldfile to newfile
|
||||
}
|
||||
|
||||
begin
|
||||
sys_dup:=Do_syscall(syscall_nr_dup,oldd);
|
||||
end;
|
||||
|
||||
function sys_Dup2(oldd:cint;newd:cint):cint;
|
||||
{
|
||||
Copies the filedescriptor oldfile to newfile
|
||||
}
|
||||
|
||||
begin
|
||||
sys_dup2:=do_syscall(syscall_nr_dup2,oldd,newd);
|
||||
end;
|
||||
|
||||
{$endif}
|
||||
|
||||
function S_ISDIR(m : mode_t): boolean;
|
||||
|
||||
begin
|
||||
S_ISDIR:=((m and %001111000000000000) = %100000000000000);
|
||||
end;
|
||||
|
||||
function S_ISCHR(m : mode_t): boolean;
|
||||
begin
|
||||
S_ISCHR:=((m and %001111000000000000) = %10000000000000);
|
||||
end;
|
||||
|
||||
function S_ISBLK(m : mode_t): boolean;
|
||||
begin
|
||||
S_ISBLK:=((m and %001111000000000000) = %110000000000000);
|
||||
end;
|
||||
|
||||
function S_ISREG(m : mode_t): boolean;
|
||||
begin
|
||||
S_ISREG:=((m and %001111000000000000) = %1000000000000000);
|
||||
end;
|
||||
|
||||
function S_ISFIFO(m : mode_t): boolean;
|
||||
begin
|
||||
S_ISFIFO:=((m and %001111000000000000) = %1000000000000);
|
||||
end;
|
||||
|
||||
function wifexited(status : cint): cint;
|
||||
begin
|
||||
wifexited:=cint((status AND %1111111) =0);
|
||||
end;
|
||||
|
||||
function wexitstatus(status : cint): cint;
|
||||
begin
|
||||
wexitstatus:=(status and %1111111) shl 8;
|
||||
end;
|
||||
|
||||
function wstopsig(status : cint): cint;
|
||||
begin
|
||||
wstopsig:=(status and %1111111) shl 8;
|
||||
end;
|
||||
|
||||
function wifsignaled(status : cint): cint;
|
||||
begin
|
||||
wifsignaled:=cint(((status and %1111111)<>%1111111) and ((status and %1111111)<>0));
|
||||
end;
|
||||
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 2002-08-03 19:34:19 marco
|
||||
* Initial *BSD versions. Seems that OpenBSD doesn't need much change,
|
||||
NetBSD may need some fixes to stat record and ftruncate and lseek.
|
||||
It is all close together, and it should be doable to have just one copy
|
||||
of these for *BSD.
|
||||
|
||||
Revision 1.1.2.5 2001/12/09 03:31:50 carl
|
||||
+ wifsignaled() added
|
||||
|
||||
Revision 1.1.2.4 2001/12/03 03:13:30 carl
|
||||
* fix ftruncate prototype
|
||||
* fix rename prototype
|
||||
* change readdir / closedir prototype
|
||||
|
||||
Revision 1.1.2.3 2001/11/30 03:50:43 carl
|
||||
+ int -> cint
|
||||
+ missing prototypes added
|
||||
|
||||
Revision 1.1.2.2 2001/11/28 03:08:29 carl
|
||||
* int -> cint
|
||||
+ several other stuff renamed
|
||||
|
||||
Revision 1.1.2.1 2001/08/15 00:15:04 carl
|
||||
- renamed
|
||||
|
||||
}
|
154
rtl/bsd/osposixh.inc
Normal file
154
rtl/bsd/osposixh.inc
Normal file
@ -0,0 +1,154 @@
|
||||
{
|
||||
$Id$
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 2001 by Free Pascal development team
|
||||
|
||||
Implements roughly POSIX 1003.1 conforming interface for *BSD
|
||||
header part.
|
||||
|
||||
This file implements all the types/constants which must
|
||||
be defined to port FPC to a new POSIX compliant OS.
|
||||
|
||||
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.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
{***********************************************************************}
|
||||
{ POSIX STRUCTURES }
|
||||
{***********************************************************************}
|
||||
|
||||
{$i ptypes.inc}
|
||||
|
||||
// Can't find these two in Posix and in FreeBSD
|
||||
//CONST
|
||||
// _UTSNAME_LENGTH = ;
|
||||
// _UTSNAME_NODENAME_LENGTH = ;
|
||||
|
||||
TYPE
|
||||
{ system information services }
|
||||
utsname = record
|
||||
sysname : Array[0..SYS_NMLN-1] OF Char; // Name of this OS
|
||||
nodename: Array[0..SYS_NMLN-1] OF Char; // Name of this network node.
|
||||
release : Array[0..SYS_NMLN-1] OF Char; // Release level.
|
||||
version : Array[0..SYS_NMLN-1] OF Char; // Version level.
|
||||
machine : Array[0..SYS_NMLN-1] OF Char; // Hardware type.
|
||||
end;
|
||||
|
||||
{ file characteristics services }
|
||||
stat = record { the types are real}
|
||||
st_dev : dev_t; // inode's device
|
||||
st_ino : ino_t; // inode's number
|
||||
st_mode : mode_t; // inode protection mode
|
||||
st_nlink : nlink_t; // number of hard links
|
||||
st_uid : uid_t; // user ID of the file's owner
|
||||
st_gid : gid_t; // group ID of the file's group
|
||||
st_rdev : dev_t; // device type
|
||||
st_atime : time_t; // time of last access
|
||||
st_atimensec : clong; // nsec of last access
|
||||
st_mtime : time_t; // time of last data modification
|
||||
st_mtimensec : clong; // nsec of last data modification
|
||||
st_ctime : time_t; // time of last file status change
|
||||
st_ctimensec : clong; // nsec of last file status change
|
||||
st_size : off_t; // file size, in bytes
|
||||
st_blocks : cint64; // blocks allocated for file
|
||||
st_blksize : cuint32; // optimal blocksize for I/O
|
||||
st_flags : cuint32; // user defined flags for file
|
||||
st_gen : cuint32; // file generation number
|
||||
{$ifndef NetBSD}
|
||||
st_lspare : cint32;
|
||||
{$endif}
|
||||
st_qspare : array[0..1] Of cint64;
|
||||
end;
|
||||
|
||||
{ directory services }
|
||||
pdirent = ^dirent;
|
||||
dirent = record
|
||||
d_fileno : cuint32; // file number of entry
|
||||
d_reclen : cuint16; // length of this record
|
||||
d_type : cuint8; // file type, see below
|
||||
d_namlen : cuint8; // length of string in d_name
|
||||
d_name : array[0..(255 + 1)-1] of char; // name must be no longer than this
|
||||
end;
|
||||
|
||||
pdir = ^dir;
|
||||
dir = packed record
|
||||
dd_fd : cint; // file descriptor associated with directory
|
||||
dd_loc : clong; // offset in current buffer
|
||||
dd_size : clong; // amount of data returned by getdirentries
|
||||
dd_buf : pchar; // data buffer
|
||||
dd_len : cint; // size of data buffer
|
||||
dd_seek : clong; // magic cookie returned by getdirentries
|
||||
dd_rewind : clong; // magic cookie for rewinding
|
||||
dd_flags : cint; // flags for readdir
|
||||
end;
|
||||
|
||||
|
||||
{***********************************************************************}
|
||||
{ POSIX CONSTANT ROUTINE DEFINITIONS }
|
||||
{***********************************************************************}
|
||||
CONST
|
||||
{ access routine - these maybe OR'ed together }
|
||||
F_OK = 0; { test for existence of file }
|
||||
R_OK = 4; { test for read permission on file }
|
||||
W_OK = 2; { test for write permission on file }
|
||||
X_OK = 1; { test for execute or search permission }
|
||||
{ seek routine }
|
||||
SEEK_SET = 0; { seek from beginning of file }
|
||||
SEEK_CUR = 1; { seek from current position }
|
||||
SEEK_END = 2; { seek from end of file }
|
||||
{ open routine }
|
||||
{ File access modes for `open' and `fcntl'. }
|
||||
O_RDONLY = 0; { Open read-only. }
|
||||
O_WRONLY = 1; { Open write-only. }
|
||||
O_RDWR = 2; { Open read/write. }
|
||||
{ Bits OR'd into the second argument to open. }
|
||||
O_CREAT = $200; { Create file if it doesn't exist. }
|
||||
O_EXCL = $800; { Fail if file already exists. }
|
||||
O_TRUNC = $400; { Truncate file to zero length. }
|
||||
O_NOCTTY = $8000; { Don't assign a controlling terminal. }
|
||||
{ File status flags for `open' and `fcntl'. }
|
||||
O_APPEND = 8; { Writes append to the file. }
|
||||
O_NONBLOCK = 4; { Non-blocking I/O. }
|
||||
|
||||
{ mode_t possible values }
|
||||
S_IRUSR = %0100000000; { Read permission for owner }
|
||||
S_IWUSR = %0010000000; { Write permission for owner }
|
||||
S_IXUSR = %0001000000; { Exec permission for owner }
|
||||
S_IRGRP = %0000100000; { Read permission for group }
|
||||
S_IWGRP = %0000010000; { Write permission for group }
|
||||
S_IXGRP = %0000001000; { Exec permission for group }
|
||||
S_IROTH = %0000000100; { Read permission for world }
|
||||
S_IWOTH = %0000000010; { Write permission for world }
|
||||
S_IXOTH = %0000000001; { Exec permission for world }
|
||||
|
||||
{ Used for waitpid }
|
||||
WNOHANG = 1; { don't block waiting }
|
||||
WUNTRACED = 2; { report status of stopped children }
|
||||
|
||||
|
||||
{*************************************************************************}
|
||||
{ SIGNALS }
|
||||
{*************************************************************************}
|
||||
|
||||
{$i signal2.inc}
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 2002-08-03 19:34:19 marco
|
||||
* Initial *BSD versions. Seems that OpenBSD doesn't need much change,
|
||||
NetBSD may need some fixes to stat record and ftruncate and lseek.
|
||||
It is all close together, and it should be doable to have just one copy
|
||||
of these for *BSD.
|
||||
|
||||
Revision 1.1.2.2 2001/11/28 03:08:46 carl
|
||||
- removed signal stuff , moved to signal.inc
|
||||
|
||||
Revision 1.1.2.1 2001/08/15 00:15:08 carl
|
||||
- renamed
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user