home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-parame.ads < prev    next >
Text File  |  1996-09-28  |  4KB  |  68 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                    S Y S T E M . P A R A M E T E R S                     --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  This package defines some system dependent parameters for GNAT. These
  27. --  constants are referenced at compile time and by the runtime library,
  28. --  and may be changed to customize a particular variant of GNAT.
  29.  
  30. package System.Parameters is
  31. pragma Pure (Parameters);
  32.  
  33.    Count_Max : constant := Integer'Last;
  34.    --  Upper bound of type Ada.Text_IO.Count. This value must be large
  35.    --  enough so that the assumption that the Line, Column and Page
  36.    --  counts can never exceed this value is a valid assumption.
  37.  
  38.    Field_Max : constant := 100;
  39.    --  Upper bound of type Ada.Text_IO.Field
  40.  
  41.    Exception_Msg_Max : constant := 200;
  42.    --  Maximum length of message in exception occurrence
  43.  
  44.    Max_Line_Length : constant := 200;
  45.    --  Maximum source line length. This can be set to any value up to
  46.    --  2**15 - 1, a limit imposed by the assumption that column numbers
  47.    --  can be stored in 16 bits (see Types.Column_Number). The value of
  48.    --  200 is the minimum value required (RM 2.2(15)).
  49.  
  50.    Max_Name_Length : constant := 1024;
  51.    --  Maximum length of unit name (including all dots, and " (spec)") and
  52.    --  of file names in the library, must be at least Max_Line_Length, but
  53.    --  can be larger.
  54.  
  55.    Max_Instantiations : constant := 2000;
  56.    --  Maximum number of instantiations permitted (to stop runaway cases
  57.    --  of nested instantiations). These situations probably only occur in
  58.    --  specially concocted test cases.
  59.  
  60.    Max_Static_Aggregate_Size : constant := 1024;
  61.    --  Maximum size of aggregate that is built statically (see Sem_Aggr)
  62.  
  63.    Tag_Errors : constant Boolean := False;
  64.    --  If set to true, then brief form error messages will be prefaced by
  65.    --  the string "error:"
  66.  
  67. end System.Parameters;
  68.