OSDN Git Service

* approved by rth
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-asthan.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT RUNT-TIME COMPONENTS                        --
4 --                                                                          --
5 --                  S Y S T E M . A S T _ H A N D L I N G                   --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --                                                                          --
10 --          Copyright (C) 1996-2001 Free Software Foundation, Inc.          --
11 --                                                                          --
12 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
13 -- terms of the  GNU General Public License as published  by the Free Soft- --
14 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
15 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
18 -- for  more details.  You should have  received  a copy of the GNU General --
19 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
20 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
21 -- MA 02111-1307, USA.                                                      --
22 --                                                                          --
23 -- As a special exception,  if other files  instantiate  generics from this --
24 -- unit, or you link  this unit with other files  to produce an executable, --
25 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
26 -- covered  by the  GNU  General  Public  License.  This exception does not --
27 -- however invalidate  any other reasons why  the executable file  might be --
28 -- covered by the  GNU Public License.                                      --
29 --                                                                          --
30 -- GNAT was originally developed  by the GNAT team at  New York University. --
31 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
32 --                                                                          --
33 ------------------------------------------------------------------------------
34
35 --  This is the dummy version used on non-VMS systems
36
37 with Ada.Exceptions;
38 with Ada.Task_Identification;
39 with System.Aux_DEC;
40
41 package body System.AST_Handling is
42
43    pragma Warnings (Off); -- kill warnings on unreferenced formals
44
45    ------------------------
46    -- Create_AST_Handler --
47    ------------------------
48
49    function Create_AST_Handler
50      (Taskid  : Ada.Task_Identification.Task_Id;
51       Entryno : Natural)
52       return    System.Aux_DEC.AST_Handler
53    is
54    begin
55       Ada.Exceptions.Raise_Exception
56         (E       => Program_Error'Identity,
57          Message => "AST is implemented only on VMS systems");
58
59       return System.Aux_DEC.No_AST_Handler;
60    end Create_AST_Handler;
61
62    procedure Expand_AST_Packet_Pool
63      (Requested_Packets : in Natural;
64       Actual_Number     : out Natural;
65       Total_Number      : out Natural)
66    is
67    begin
68       Ada.Exceptions.Raise_Exception
69         (E       => Program_Error'Identity,
70          Message => "AST is implemented only on VMS systems");
71
72       Actual_Number := 0;
73       Total_Number := 0;
74    end Expand_AST_Packet_Pool;
75
76 end System.AST_Handling;