summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-30 20:56:09 +0000
committerbosch <bosch@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-30 20:56:09 +0000
commited7f48c30558bca0e660b9c6a75441b43d252a99 (patch)
tree24873bf49d59a846c31ee3aaddfdae60763a7cba /gcc
parent00a4a89fbb6db9f117a4f9def4c788a149084307 (diff)
downloadgcc-ed7f48c30558bca0e660b9c6a75441b43d252a99.tar.gz
* lib.adb: Minor reformatting
* s-taprop.ads: Minor reformatting git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46651 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/ChangeLog6
-rw-r--r--gcc/ada/lib.adb6
-rw-r--r--gcc/ada/s-taprop.ads14
3 files changed, 16 insertions, 10 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 6e62b39ed09..c15d1490d0d 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-30 Robert Dewar <dewar@gnat.com>
+
+ * lib.adb: Minor reformatting
+
+ * s-taprop.ads: Minor reformatting
+
2001-10-29 Laurent Guerby <guerby@acm.org>
* init.c:
diff --git a/gcc/ada/lib.adb b/gcc/ada/lib.adb
index 53e74f5459b..5b3ed4b0ce5 100644
--- a/gcc/ada/lib.adb
+++ b/gcc/ada/lib.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- $Revision: 1.97 $
+-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
@@ -792,8 +792,8 @@ package body Lib is
procedure Store_Compilation_Switch (Switch : String) is
begin
Compilation_Switches.Increment_Last;
- Compilation_Switches.Table (Compilation_Switches.Last)
- := new String'(Switch);
+ Compilation_Switches.Table (Compilation_Switches.Last) :=
+ new String'(Switch);
end Store_Compilation_Switch;
--------------------------------
diff --git a/gcc/ada/s-taprop.ads b/gcc/ada/s-taprop.ads
index 8271648db46..df22279115e 100644
--- a/gcc/ada/s-taprop.ads
+++ b/gcc/ada/s-taprop.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- $Revision: 1.1 $
+-- $Revision$
-- --
-- Copyright (C) 1992-2001, Free Software Foundation, Inc. --
-- --
@@ -449,19 +449,19 @@ package System.Task_Primitives.Operations is
function Suspend_Task
(T : ST.Task_ID;
- Thread_Self : OSI.Thread_Id) return Boolean;
+ Thread_Self : OSI.Thread_Id)
+ return Boolean;
-- Suspend a specific task when the underlying thread library provides
- -- such functionality, unless the thread associated with T is
- -- Thread_Self.
+ -- such functionality, unless the thread associated with T is Thread_Self.
-- Such functionality is needed by gdb on some targets (e.g VxWorks)
-- Return True is the operation is successful
function Resume_Task
(T : ST.Task_ID;
- Thread_Self : OSI.Thread_Id) return Boolean;
+ Thread_Self : OSI.Thread_Id)
+ return Boolean;
-- Resume a specific task when the underlying thread library provides
- -- such functionality, unless the thread associated with T is
- -- Thread_Self.
+ -- such functionality, unless the thread associated with T is Thread_Self.
-- Such functionality is needed by gdb on some targets (e.g VxWorks)
-- Return True is the operation is successful