OSDN Git Service

* g++.old-deja/g++.benjamin/16077.C: Adjust warnings.
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-tasinf.ads
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                     S Y S T E M . T A S K _ I N F O                      --
6 --                                                                          --
7 --                                 S p e c                                  --
8 --                           (Compiler Interface)                           --
9 --                                                                          --
10 --                                                                          --
11 --          Copyright (C) 1992-2001 Free Software Foundation, Inc.          --
12 --                                                                          --
13 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
14 -- terms of the  GNU General Public License as published  by the Free Soft- --
15 -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
16 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
19 -- for  more details.  You should have  received  a copy of the GNU General --
20 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
21 -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
22 -- MA 02111-1307, USA.                                                      --
23 --                                                                          --
24 -- As a special exception,  if other files  instantiate  generics from this --
25 -- unit, or you link  this unit with other files  to produce an executable, --
26 -- this  unit  does not  by itself cause  the resulting  executable  to  be --
27 -- covered  by the  GNU  General  Public  License.  This exception does not --
28 -- however invalidate  any other reasons why  the executable file  might be --
29 -- covered by the  GNU Public License.                                      --
30 --                                                                          --
31 -- GNAT was originally developed  by the GNAT team at  New York University. --
32 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
33 --                                                                          --
34 ------------------------------------------------------------------------------
35
36 --  This package contains the definitions and routines associated with the
37 --  implementation of the Task_Info pragma. It is specialized appropriately
38 --  for targets that make use of this pragma.
39
40 --  Note: the compiler generates direct calls to this interface, via Rtsfind.
41 --  Any changes to this interface may require corresponding compiler changes.
42
43 with Unchecked_Deallocation;
44 package System.Task_Info is
45 pragma Elaborate_Body;
46 --  To ensure that a body is allowed
47
48    -----------------------------------------
49    -- Implementation of Task_Info Feature --
50    -----------------------------------------
51
52    --  The Task_Info pragma:
53
54    --    pragma Task_Info (EXPRESSION);
55
56    --  allows the specification on a task by task basis of a value of type
57    --  System.Task_Info.Task_Info_Type to be passed to a task when it is
58    --  created. The specification of this type, and the effect on the task
59    --  that is created is target dependent.
60
61    --  The Task_Info pragma appears within a task definition (compare the
62    --  definition and implementation of pragma Priority). If no such pragma
63    --  appears, then the value Task_Info_Unspecified is passed. If a pragma
64    --  is present, then it supplies an alternative value. If the argument of
65    --  the pragma is a discriminant reference, then the value can be set on
66    --  a task by task basis by supplying the appropriate discriminant value.
67
68    --  Note that this means that the type used for Task_Info_Type must be
69    --  suitable for use as a discriminant (i.e. a scalar or access type).
70
71    ------------------
72    -- Declarations --
73    ------------------
74
75    type Scope_Type is
76      (Process_Scope,
77       --  Contend only with threads in same process
78
79       System_Scope,
80       --  Contend with all threads on same CPU
81
82       Default_Scope);
83
84    type Task_Info_Type is new Scope_Type;
85    --  Type used for passing information to task create call, using the
86    --  Task_Info pragma. This type may be specialized for individual
87    --  implementations, but it must be a type that can be used as a
88    --  discriminant (i.e. a scalar or access type).
89
90    type Task_Image_Type is access String;
91    --  Used to generate a meaningful identifier for tasks that are variables
92    --  and components of variables.
93
94    procedure Free_Task_Image is new
95      Unchecked_Deallocation (String, Task_Image_Type);
96
97    Unspecified_Task_Info : constant Task_Info_Type := Default_Scope;
98    --  Value passed to task in the absence of a Task_Info pragma
99
100 end System.Task_Info;