diff options
author | Robert Dewar <dewar@gnat.com> | 2001-10-30 20:56:09 +0000 |
---|---|---|
committer | Geert Bosch <bosch@gcc.gnu.org> | 2001-10-30 21:56:09 +0100 |
commit | f5e44987a6f7e1028e5b959935fd33768548357f (patch) | |
tree | 24873bf49d59a846c31ee3aaddfdae60763a7cba | |
parent | e717524703db25d37ebf3ae6da9d756e153f418d (diff) | |
download | gcc-f5e44987a6f7e1028e5b959935fd33768548357f.zip gcc-f5e44987a6f7e1028e5b959935fd33768548357f.tar.gz gcc-f5e44987a6f7e1028e5b959935fd33768548357f.tar.bz2 |
lib.adb: Minor reformatting
* lib.adb: Minor reformatting
* s-taprop.ads: Minor reformatting
From-SVN: r46651
-rw-r--r-- | gcc/ada/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ada/lib.adb | 6 | ||||
-rw-r--r-- | gcc/ada/s-taprop.ads | 14 |
3 files changed, 16 insertions, 10 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 6e62b39..c15d149 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 53e74f5..5b3ed4b 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 8271648..df22279 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 |