mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 06:11:35 +02:00
* fixes merges
This commit is contained in:
parent
1034313760
commit
4c541782d1
@ -308,41 +308,20 @@ syscall_nr_getdirentries =196;
|
|||||||
syscall_nr_utimes = 138;
|
syscall_nr_utimes = 138;
|
||||||
syscall_nr_waitpid = 7;
|
syscall_nr_waitpid = 7;
|
||||||
syscall_nr_write = 4;
|
syscall_nr_write = 4;
|
||||||
syscall_nr_munmap = 73;
|
syscall_nr_munmap = 73;
|
||||||
syscall_nr_getsockopt =118;
|
syscall_nr_getsockopt = 118;
|
||||||
syscall_nr_rfork =251;
|
syscall_nr_rfork = 251;
|
||||||
|
syscall_nr_nanosleep = 240;
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.2 2000-09-18 13:42:35 marco
|
Revision 1.3 2000-10-26 23:00:12 peter
|
||||||
|
* fixes merges
|
||||||
|
|
||||||
|
Revision 1.2 2000/09/18 13:42:35 marco
|
||||||
* FreeBSD support into 1.1
|
* FreeBSD support into 1.1
|
||||||
|
|
||||||
Revision 1.4 2000/09/11 14:38:10 marco
|
Revision 1.4 2000/09/11 14:38:10 marco
|
||||||
* 14 april version killed, and replaced by newer fixes branch version
|
* 14 april version killed, and replaced by newer fixes branch version
|
||||||
|
}
|
||||||
Revision 1.1.2.1 2000/09/10 16:12:14 marco
|
|
||||||
Initial signals, sockets and clone
|
|
||||||
|
|
||||||
Revision 1.1 2000/07/13 06:30:33 michael
|
|
||||||
+ Initial import
|
|
||||||
|
|
||||||
Revision 1.4 2000/04/10 15:46:52 marco
|
|
||||||
* worked all day. probably a lot changed
|
|
||||||
|
|
||||||
Revision 1.2 2000/04/05 13:59:10 marco
|
|
||||||
* added constants for syscall.inc
|
|
||||||
|
|
||||||
Revision 1.1 2000/04/05 13:06:24 marco
|
|
||||||
* Initial version. (copied from linux.) Patch for BSD not ready yeT
|
|
||||||
|
|
||||||
Revision 1.5 2000/02/09 16:59:32 peter
|
|
||||||
* truncated log
|
|
||||||
|
|
||||||
Revision 1.4 2000/01/07 16:41:41 daniel
|
|
||||||
* copyright 2000
|
|
||||||
|
|
||||||
Revision 1.3 2000/01/07 16:32:28 daniel
|
|
||||||
* copyright 2000 added
|
|
||||||
|
|
||||||
}
|
|
@ -1,5 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
<<<<<<< systypes.inc
|
||||||
$Id$
|
$Id$
|
||||||
|
=======
|
||||||
|
$Id$
|
||||||
|
>>>>>>> 1.1.2.2
|
||||||
This file is part of the Free Pascal run time library.
|
This file is part of the Free Pascal run time library.
|
||||||
Copyright (c) 1999-2000 by Michael Van Canneyt,
|
Copyright (c) 1999-2000 by Michael Van Canneyt,
|
||||||
member of the Free Pascal development team.
|
member of the Free Pascal development team.
|
||||||
@ -133,6 +137,10 @@ type
|
|||||||
ptimeval=^timeval;
|
ptimeval=^timeval;
|
||||||
TTimeVal=timeval;
|
TTimeVal=timeval;
|
||||||
|
|
||||||
|
timespec = packed record
|
||||||
|
tv_sec,tv_nsec:{longint or int64 ?}int64;
|
||||||
|
end;
|
||||||
|
|
||||||
timezone = packed record
|
timezone = packed record
|
||||||
minuteswest,dsttime:longint;
|
minuteswest,dsttime:longint;
|
||||||
end;
|
end;
|
||||||
@ -152,38 +160,12 @@ type
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.2 2000-09-18 13:42:35 marco
|
Revision 1.3 2000-10-26 23:00:12 peter
|
||||||
|
* fixes merges
|
||||||
|
|
||||||
|
Revision 1.2 2000/09/18 13:42:35 marco
|
||||||
* FreeBSD support into 1.1
|
* FreeBSD support into 1.1
|
||||||
|
|
||||||
Revision 1.4 2000/09/11 14:38:10 marco
|
Revision 1.4 2000/09/11 14:38:10 marco
|
||||||
* 14 april version killed, and replaced by newer fixes branch version
|
* 14 april version killed, and replaced by newer fixes branch version
|
||||||
|
}
|
||||||
Revision 1.1.2.1 2000/09/10 16:12:14 marco
|
|
||||||
Initial signals, sockets and clone
|
|
||||||
|
|
||||||
Revision 1.1 2000/07/13 06:30:33 michael
|
|
||||||
+ Initial import
|
|
||||||
|
|
||||||
Revision 1.8 2000/04/16 16:08:30 marco
|
|
||||||
* Updated PDir to BSD libc layout. (which is totally different from Linux)
|
|
||||||
|
|
||||||
Revision 1.7 2000/04/10 15:46:52 marco
|
|
||||||
* worked all day. probably a lot changed
|
|
||||||
|
|
||||||
Revision 1.5 2000/03/17 12:58:57 marco
|
|
||||||
* some changes to ftruncate based procs. Added a "0" as extra parameter
|
|
||||||
|
|
||||||
Revision 1.4 2000/02/04 16:55:47 marco
|
|
||||||
* Fixed tdir, some params need to be 32-bit
|
|
||||||
|
|
||||||
Revision 1.3 2000/02/03 17:05:55 marco
|
|
||||||
|
|
||||||
* Some types fixed/ported.
|
|
||||||
|
|
||||||
Revision 1.2 2000/02/02 16:45:38 marco
|
|
||||||
* Typo in STAT record
|
|
||||||
|
|
||||||
Revision 1.1 2000/02/02 16:36:09 marco
|
|
||||||
* Initial version. Copy of linux version, with BSD stat.
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user