OSDN Git Service

Delete all lines containing "$Revision:".
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-tratas.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS               --
4 --                                                                          --
5 --                 S Y S T E M . T R A C E S . T A S K I N G                --
6 --                                                                          --
7 --                                  B o d y                                 --
8 --                                                                          --
9 --                                                                          --
10 --             Copyright (C) 2001 Free Software Foundation, Inc.            --
11 --                                                                          --
12 -- GNARL 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. GNARL 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 GNARL; 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 package body System.Traces.Tasking is
36
37    pragma Warnings (Off); -- kill warnings on unreferenced formals
38
39    ---------------------
40    -- Send_Trace_Info --
41    ---------------------
42
43    procedure Send_Trace_Info (Id : Trace_T; Task_Name2 : ST.Task_ID) is
44    begin
45       null;
46    end Send_Trace_Info;
47
48    procedure Send_Trace_Info
49      (Id           : Trace_T;
50       Task_Name2   : ST.Task_ID;
51       Entry_Number : ST.Entry_Index)
52    is
53    begin
54       null;
55    end Send_Trace_Info;
56
57    procedure Send_Trace_Info
58      (Id           : Trace_T;
59       Task_Name    : ST.Task_ID;
60       Task_Name2   : ST.Task_ID;
61       Entry_Number : ST.Entry_Index)
62    is
63    begin
64       null;
65    end Send_Trace_Info;
66
67    procedure Send_Trace_Info
68      (Id         : Trace_T;
69       Task_Name  : ST.Task_ID;
70       Task_Name2 : ST.Task_ID)
71    is
72    begin
73       null;
74    end Send_Trace_Info;
75
76    procedure Send_Trace_Info
77      (Id           : Trace_T;
78       Entry_Number : ST.Entry_Index)
79    is
80    begin
81       null;
82    end Send_Trace_Info;
83
84    procedure Send_Trace_Info
85      (Id           : Trace_T;
86       Acceptor     : ST.Task_ID;
87       Entry_Number : ST.Entry_Index;
88       Timeout      : Duration)
89    is
90    begin
91       null;
92    end Send_Trace_Info;
93
94    procedure Send_Trace_Info
95      (Id           : Trace_T;
96       Entry_Number : ST.Entry_Index;
97       Timeout      : Duration)
98    is
99    begin
100       null;
101    end Send_Trace_Info;
102
103    procedure Send_Trace_Info
104      (Id        : Trace_T;
105       Task_Name : ST.Task_ID;
106       Number    : Integer)
107    is
108    begin
109       null;
110    end Send_Trace_Info;
111
112    procedure Send_Trace_Info
113      (Id        : Trace_T;
114       Task_Name : ST.Task_ID;
115       Number    : Integer;
116       Timeout   : Duration)
117    is
118    begin
119       null;
120    end Send_Trace_Info;
121
122 end System.Traces.Tasking;