OSDN Git Service

ada:
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-tpopde-vms.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                 GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS                 --
4 --                                                                          --
5 --                  SYSTEM.TASK_PRIMITIVES.OPERATIONS.DEC                   --
6 --                                                                          --
7 --                                  S p e c                                 --
8 --                                                                          --
9 --          Copyright (C) 2000-2009, Free Software Foundation, Inc.          --
10 --                                                                          --
11 -- GNARL is free software; you can  redistribute it  and/or modify it under --
12 -- terms of the  GNU General Public License as published  by the Free Soft- --
13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
17 --                                                                          --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception,   --
20 -- version 3.1, as published by the Free Software Foundation.               --
21 --                                                                          --
22 -- You should have received a copy of the GNU General Public License and    --
23 -- a copy of the GCC Runtime Library Exception along with this program;     --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
25 -- <http://www.gnu.org/licenses/>.                                          --
26 --                                                                          --
27 -- GNARL was developed by the GNARL team at Florida State University.       --
28 -- Extensive contributions were provided by Ada Core Technologies, Inc.     --
29 --                                                                          --
30 ------------------------------------------------------------------------------
31
32 --  This package is for OpenVMS/Alpha.
33 --
34 with System.Aux_DEC;
35 package System.Task_Primitives.Operations.DEC is
36
37    procedure Interrupt_AST_Handler (ID : Address);
38    pragma Convention (C, Interrupt_AST_Handler);
39    --  Handles the AST for Ada95 Interrupts
40
41    procedure RMS_AST_Handler (ID : Address);
42    --  Handles the AST for RMS_Asynch_Operations
43
44    function Self return System.Aux_DEC.Unsigned_Longword;
45    --  Returns the task identification for the AST
46
47    procedure Starlet_AST_Handler (ID : Address);
48    --  Handles the AST for Starlet Tasking_Services
49
50    procedure Task_Synch;
51    --  Synchronizes the task after the system service completes
52
53 end System.Task_Primitives.Operations.DEC;