summaryrefslogtreecommitdiff
path: root/gcc/ada/5stasinf.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/5stasinf.adb')
-rw-r--r--gcc/ada/5stasinf.adb9
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ada/5stasinf.adb b/gcc/ada/5stasinf.adb
index 9bd2e1e7543..859bcd082ec 100644
--- a/gcc/ada/5stasinf.adb
+++ b/gcc/ada/5stasinf.adb
@@ -6,8 +6,7 @@
-- --
-- B o d y --
-- --
--- --
--- Copyright (C) 1992-1998 Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2002 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -57,18 +56,18 @@ package body System.Task_Info is
function New_Unbound_Thread_Attributes return Task_Info_Type is
begin
- return new Thread_Attributes' (False, False);
+ return new Thread_Attributes'(False, False);
end New_Unbound_Thread_Attributes;
function New_Bound_Thread_Attributes return Task_Info_Type is
begin
- return new Thread_Attributes' (False, True);
+ return new Thread_Attributes'(False, True);
end New_Bound_Thread_Attributes;
function New_Bound_Thread_Attributes (CPU : CPU_Number)
return Task_Info_Type is
begin
- return new Thread_Attributes' (True, True, CPU);
+ return new Thread_Attributes'(True, True, CPU);
end New_Bound_Thread_Attributes;
end System.Task_Info;