Browse Source

* a lot of copyright notices and CVS logs added and fixed

marco 21 years ago
parent
commit
d954d73042

+ 5 - 2
rtl/freebsd/classes.pp

@@ -3,7 +3,7 @@
     This file is part of the Free Component Library (FCL)
     This file is part of the Free Component Library (FCL)
     Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
     Copyright (c) 1999-2000 by Michael Van Canneyt and Florian Klaempfl
 
 
-    Classes unit for linux
+    Classes unit for FreeBSD
 
 
     See the file COPYING.FPC, included in this distribution,
     See the file COPYING.FPC, included in this distribution,
     for details about the copyright.
     for details about the copyright.
@@ -52,7 +52,10 @@ finalization
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.4  2003-12-22 16:16:33  marco
+  Revision 1.5  2004-01-03 12:18:29  marco
+   * a lot of copyright notices and CVS logs added and fixed
+
+  Revision 1.4  2003/12/22 16:16:33  marco
    * small 1.0 compat fix
    * small 1.0 compat fix
 
 
   Revision 1.3  2003/11/17 10:05:51  marco
   Revision 1.3  2003/11/17 10:05:51  marco

+ 13 - 4
rtl/freebsd/console.pp

@@ -1,7 +1,7 @@
-UNIT Console;
-{  $Id$
+{  
+   $Id$
    This file is part of the Free Pascal run time library.
    This file is part of the Free Pascal run time library.
-   (c) 2000 by Marco van de Voort
+   (c) 2000-2003 by Marco van de Voort
    member of the Free Pascal development team.
    member of the Free Pascal development team.
 
 
    See the file COPYING.FPC, included in this distribution,
    See the file COPYING.FPC, included in this distribution,
@@ -23,6 +23,8 @@ UNIT Console;
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 }
 }
 
 
+UNIT Console;
+
 {$packrecords C}
 {$packrecords C}
 
 
 interface
 interface
@@ -3470,5 +3472,12 @@ Begin
  MOUSE_GETHWID:=FpIoctl(fd,nr_MOUSE_GETHWID,@param1)=0;
  MOUSE_GETHWID:=FpIoctl(fd,nr_MOUSE_GETHWID,@param1)=0;
 end;
 end;
 
 
-
 end.
 end.
+
+{
+  $Log$
+  Revision 1.8  2004-01-03 12:18:29  marco
+   * a lot of copyright notices and CVS logs added and fixed
+
+
+}

+ 22 - 0
rtl/freebsd/i386/x86.inc

@@ -1,3 +1,18 @@
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
+
+   See the file COPYING.FPC, included in this distribution,
+   for details about the copyright.
+
+   implementation for FreeBSD/i386 specific functions
+
+   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.
+}
 {$packrecords C}
 {$packrecords C}
 
 
 TYPE uint=CARDINAL;
 TYPE uint=CARDINAL;
@@ -60,3 +75,10 @@ begin
   sa.parms:=@sg;
   sa.parms:=@sg;
   IOPerm:=do_syscall(syscall_nr_sysarch,longint(@sa));
   IOPerm:=do_syscall(syscall_nr_sysarch,longint(@sa));
 end;
 end;
+
+{
+ $Log$
+ Revision 1.3  2004-01-03 12:18:29  marco
+  * a lot of copyright notices and CVS logs added and fixed
+
+}

+ 23 - 0
rtl/freebsd/i386/x86h.inc

@@ -1,3 +1,19 @@
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
+
+   See the file COPYING.FPC, included in this distribution,
+   for details about the copyright.
+  
+   Headers for i386 specific functions on FreeBSD
+
+   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.
+}
+
 {**************************
 {**************************
      Port IO functions
      Port IO functions
 ***************************}
 ***************************}
@@ -6,3 +22,10 @@ Function  IOperm (From,Num : Cardinal; Value : Longint) : boolean;
 {$ifndef BSD}
 {$ifndef BSD}
 Function  IoPL(Level : longint) : Boolean;
 Function  IoPL(Level : longint) : Boolean;
 {$endif}
 {$endif}
+
+{
+  $Log$
+  Revision 1.2  2004-01-03 12:18:29  marco
+   * a lot of copyright notices and CVS logs added and fixed
+
+}

+ 20 - 0
rtl/freebsd/termios.inc

@@ -1,3 +1,18 @@
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
+
+   See the file COPYING.FPC, included in this distribution,
+   for details about the copyright.
+  
+   Termios header for FreeBSD
+
+   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.
+}
 
 
 CONST
 CONST
 
 
@@ -348,4 +363,9 @@ struct winsize {
         POSIX_VDISABLE, CINTR,  CQUIT,  CSUSP,  CDSUSP, CSTART, CSTOP,  CLNEXT,
         POSIX_VDISABLE, CINTR,  CQUIT,  CSUSP,  CDSUSP, CSTART, CSTOP,  CLNEXT,
         CDISCARD, CMIN, CTIME,  CSTATUS, POSIX_VDISABLE);
         CDISCARD, CMIN, CTIME,  CSTATUS, POSIX_VDISABLE);
 
 
+{
+  $Log$
+  Revision 1.4  2004-01-03 12:18:29  marco
+   * a lot of copyright notices and CVS logs added and fixed
 
 
+}

+ 16 - 14
rtl/freebsd/termiosproc.inc

@@ -1,19 +1,19 @@
-{
-    $Id$
-    This file is part of the Free Pascal run time library.
-    Copyright (c) 1999-2000 by Peter Vreman
-    member of the Free Pascal development team.
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
 
 
-    See the file COPYING.FPC, included in this distribution,
-    for details about the copyright.
+   See the file COPYING.FPC, included in this distribution,
+   for details about the copyright.
 
 
-    This file contains the implementation of several termio(s) functions
+   Termios implementation for FreeBSD
 
 
-    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.
+   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.
+}
 
 
- **********************************************************************}
 
 
 {******************************************************************************
 {******************************************************************************
                          IOCtl and Termios calls
                          IOCtl and Termios calls
@@ -132,11 +132,13 @@ end;
 
 
 {
 {
    $Log$
    $Log$
-   Revision 1.2  2003-12-16 19:43:53  marco
+   Revision 1.3  2004-01-03 12:18:29  marco
+    * a lot of copyright notices and CVS logs added and fixed
+
+   Revision 1.2  2003/12/16 19:43:53  marco
     * nil <-> 0 changes
     * nil <-> 0 changes
 
 
    Revision 1.1  2003/11/19 17:15:31  marco
    Revision 1.1  2003/11/19 17:15:31  marco
     * termio new includefile
     * termio new includefile
 
 
-
 }
 }

+ 16 - 13
rtl/freebsd/tthread.inc

@@ -1,18 +1,18 @@
-{
-    $Id$
-    This file is part of the Free Component Library (FCL)
-    Copyright (c) 1999-2000 by Peter Vreman
-
-    Linux TThread implementation
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
 
 
-    See the file COPYING.FPC, included in this distribution,
-    for details about the copyright.
+   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.
+   TThread implementation old (1.0) and new (pthreads) style
 
 
- **********************************************************************}
+   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.
+}
 
 
 
 
 {$IFDEF VER1_0} // leaving the old implementation in for now...
 {$IFDEF VER1_0} // leaving the old implementation in for now...
@@ -606,7 +606,10 @@ end;
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.7  2003-11-22 11:04:08  marco
+  Revision 1.8  2004-01-03 12:18:29  marco
+   * a lot of copyright notices and CVS logs added and fixed
+
+  Revision 1.7  2003/11/22 11:04:08  marco
    * Johill: suspend fix
    * Johill: suspend fix
 
 
   Revision 1.6  2003/11/19 10:12:02  marco
   Revision 1.6  2003/11/19 10:12:02  marco

+ 19 - 6
rtl/freebsd/unixsock.inc

@@ -1,5 +1,18 @@
-
-{$Id$}
+{  
+   $Id$
+   This file is part of the Free Pascal run time library.
+   (c) 2000-2003 by Marco van de Voort
+   member of the Free Pascal development team.
+
+   See the file COPYING.FPC, included in this distribution,
+   for details about the copyright.
+   
+   socket call implementations for FreeBSD
+
+   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.
+}
 
 
 
 
 {******************************************************************************
 {******************************************************************************
@@ -199,7 +212,10 @@ end;
 
 
 {
 {
  $Log$
  $Log$
- Revision 1.8  2003-09-15 07:09:58  marco
+ Revision 1.9  2004-01-03 12:18:29  marco
+  * a lot of copyright notices and CVS logs added and fixed
+
+ Revision 1.8  2003/09/15 07:09:58  marco
   * small fixes, round 1
   * small fixes, round 1
 
 
  Revision 1.7  2003/03/23 17:47:15  armin
  Revision 1.7  2003/03/23 17:47:15  armin
@@ -211,7 +227,4 @@ end;
  Revision 1.5  2002/02/05 07:54:34  marco
  Revision 1.5  2002/02/05 07:54:34  marco
   * Fixed typo
   * Fixed typo
 
 
-
-
-
 }
 }