~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to rtl/freebsd/systypes.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{
2
 
    $Id: systypes.inc,v 1.10 2003/09/14 20:15:01 marco Exp $
3
 
    This file is part of the Free Pascal run time library.
4
 
    Copyright (c) 1999-2000 by Michael Van Canneyt,
5
 
    member of the Free Pascal development team.
6
 
 
7
 
    See the file COPYING.FPC, included in this distribution,
8
 
    for details about the copyright.
9
 
 
10
 
    This program is distributed in the hope that it will be useful,
11
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
 
 
14
 
 **********************************************************************}
15
 
type
16
 
 
17
 
  TStatfs = packed record
18
 
    spare2,            { place holder}
19
 
    bsize,             { fundamental block size}
20
 
    iosize,            { optimal block size }
21
 
    blocks,            {  total blocks}
22
 
    bfree,             { blocks free}
23
 
    bavail,            { block available for mortal users}
24
 
    files,             { Total file nodes}
25
 
    ffree          : longint;    { file nodes free}
26
 
    fsid           : array[0..1] of longint;
27
 
    fowner         : longint; {mounter uid}
28
 
    ftype          : longint;
29
 
    fflags         : longint; {copy of mount flags}
30
 
    spare          : array [0..1] of longint; { For later use }
31
 
    fstypename     : array[0..15] of char;
32
 
    mountpoint     : array[0..89] of char;
33
 
    mnfromname     : array[0..89] of char;
34
 
  end;
35
 
  PStatFS=^TStatFS;
36
 
 
37
 
  ITimerVal= Record
38
 
              It_Interval,
39
 
              It_Value      : TimeVal;
40
 
             end;
41
 
 
42
 
{
43
 
  $Log: systypes.inc,v $
44
 
  Revision 1.10  2003/09/14 20:15:01  marco
45
 
   * Unix reform stage two. Remove all calls from Unix that exist in Baseunix.
46
 
 
47
 
  Revision 1.9  2002/09/07 16:01:18  peter
48
 
    * old logs removed and tabs fixed
49
 
 
50
 
  Revision 1.8  2002/05/06 10:49:59  marco
51
 
   * setitimer for 1.1
52
 
 
53
 
}