aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-taprop-mingw.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2005-02-10 14:57:23 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2005-02-10 14:57:23 +0100
commit984a64bcf34d7a17b497700058ce553773b7d583 (patch)
tree836d2cbbc09ee263e60b69f80bcfc2da107d32e0 /gcc/ada/s-taprop-mingw.adb
parent448f26107e8e11cb4ff0c24e53c9c96a2cc14042 (diff)
downloadgcc-984a64bcf34d7a17b497700058ce553773b7d583.zip
gcc-984a64bcf34d7a17b497700058ce553773b7d583.tar.gz
gcc-984a64bcf34d7a17b497700058ce553773b7d583.tar.bz2
[multiple changes]
2005-02-09 Sergey Rybin <rybin@adacore.com> * gnat_ugn.texi: Add to the gnatpp section the paragraph describing the difference between compact and incompact layout and add the record representation clause to the example illustrating different layouts. Add the description of '-A5' gnatpp option ("align 'AT' keywords in component clauses"). 2005-02-09 Florian Villoing <villoing@adacore.com> * gnat_ugn.texi: Fix typos. Use @command to display 'gcc', 'gnatbind', etc. insted of @code or @file. Make proper use of @ref, @xref and @pxref to avoid duplication of "see" in the generated documentation. 2005-02-09 Arnaud Charlet <charlet@adacore.com> * gnat_ugn.texi: Remove all mentions of FSU threads, which are no longer supported. Update linker wrapper when linking with non GNU C++. 2005-02-09 Pascal Obry <obry@adacore.com> * gnat_ugn.texi: Document the procedure to debug the DllMain routine on Windows. Add note about -funwind-tables and mixed Ada and C/C++ programming in ZCX mode. Document new BIND qualifer /RETURN_CODES=VMS. 2005-02-09 Ben Brosgol <brosgol@adacore.com> * gnat_ugn.texi: Wordsmithing of "GNAT and Libraries" chapter Edited gnatmetric chapter 2005-02-09 Robert Dewar <dewar@adacore.com> * gnat_rm.texi: Changes to document new wide wide character support For AI-285 Update documentation on Normalize_Scalars and Initialize_Scalars 2005-02-09 Pascal Obry <obry@adacore.com> * s-taprop-mingw.adb, s-soflin.ads: Minor reformatting. 2005-02-09 Jose Ruiz <ruiz@adacore.com> * s-osinte-vxworks.ads (taskPriorityGet): Add this function (imported from the VxWorks kernel) that is needed for getting the active priority of the different tasks. * s-atacco.ads, s-atacco.adb (Nothing): Remove this dummy procedure. Use a pragma Elaborate_Body in the spec file instead. Noticed by code reading. 2005-02-09 Thomas Quinot <quinot@adacore.com> * exp_util.ads: Minor correction in comment. 2005-02-09 Arnaud Charlet <charlet@adacore.com> * s-taprop.ads (Initialize): Update comments. Remove pragma Inline, since this procedure is now too complex to be worth inlining. From-SVN: r94826
Diffstat (limited to 'gcc/ada/s-taprop-mingw.adb')
-rw-r--r--gcc/ada/s-taprop-mingw.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/s-taprop-mingw.adb b/gcc/ada/s-taprop-mingw.adb
index e85d903..d6a1a61 100644
--- a/gcc/ada/s-taprop-mingw.adb
+++ b/gcc/ada/s-taprop-mingw.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2004, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
-- --
-- GNARL 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- --
@@ -99,7 +99,7 @@ package body System.Task_Primitives.Operations is
----------------
Environment_Task_Id : Task_Id;
- -- A variable to hold Task_Id for the environment task.
+ -- A variable to hold Task_Id for the environment task
Single_RTS_Lock : aliased RTS_Lock;
-- This is a lock to allow only one thread of control in the RTS at
@@ -113,10 +113,10 @@ package body System.Task_Primitives.Operations is
pragma Import (C, Dispatching_Policy, "__gl_task_dispatching_policy");
FIFO_Within_Priorities : constant Boolean := Dispatching_Policy = 'F';
- -- Indicates whether FIFO_Within_Priorities is set.
+ -- Indicates whether FIFO_Within_Priorities is set
Foreign_Task_Elaborated : aliased Boolean := True;
- -- Used to identified fake tasks (i.e., non-Ada Threads).
+ -- Used to identified fake tasks (i.e., non-Ada Threads)
------------------------------------
-- The thread local storage index --