aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/5itaprop.adb
diff options
context:
space:
mode:
authorGeert Bosch <bosch@gnat.com>2001-10-04 19:50:42 +0200
committerGeert Bosch <bosch@gcc.gnu.org>2001-10-04 19:50:42 +0200
commit5d1a969896604bf347957520a7f4f55500fc9232 (patch)
tree69861f374b6070650fbda79f1fc0e6fbc6313e69 /gcc/ada/5itaprop.adb
parentd3d43aabbd50deea95b18f395c43b6ff9a9fc19f (diff)
downloadgcc-5d1a969896604bf347957520a7f4f55500fc9232.zip
gcc-5d1a969896604bf347957520a7f4f55500fc9232.tar.gz
gcc-5d1a969896604bf347957520a7f4f55500fc9232.tar.bz2
3lsoccon.ads: Added file, missed with initial check ins.
* 3lsoccon.ads: Added file, missed with initial check ins. * 4lintnam.ads: Fix header format. Change Linux to GNU/Linux. * 5iosinte.adb: Change Linux to GNU/Linux. * 5iosinte.ads: Change Linux to GNU/Linux. * 5itaprop.adb: Change Linux to GNU/Linux. * 5itaspri.ads: Change Linux to GNU/Linux. Update copyright notice. * 5lintman.adb: Change Linux to GNU/Linux. * 5lml-tgt.adb: Change Linux to GNU/Linux. * 5losinte.ads: Change Linux to GNU/Linux. * 5lsystem.ads: Change Linux to GNU/Linux. * 5qosinte.adb: Change Linux to GNU/Linux. * 5qosinte.ads: Change Linux to GNU/Linux. * 5qparame.ads: Change Linux to GNU/Linux. * 5qtaprop.adb: Change Linux to GNU/Linux. * 5qtaspri.ads: Change Linux to GNU/Linux. Add 2001 to copyright notice. * 5vintman.ads: Change Linux to GNU/Linux. Fix header format. Add 2001 to copyright notice. * g-soccon.ads: Change Linux to GNU/Linux. * g-trasym.ads: Change Linux to GNU/Linux. Add 2001 to copyright notice. * memtrack.adb: Change Linux to GNU/Linux. * s-intman.ads: Change Linux to GNU/Linux. Add 2001 to copyright notice. Fix header format. * s-stache.adb: Change Linux to GNU/Linux. * adaint.c: Change Linux to GNU/Linux. * cio.c: Change Linux to GNU/Linux. * cstreams.c: Change Linux to GNU/Linux. * init.c: Change Linux to GNU/Linux. * gmem.c: Change Linux to GNU/Linux. * tracebak.c: Change Linux to GNU/Linux. From-SVN: r46011
Diffstat (limited to 'gcc/ada/5itaprop.adb')
-rw-r--r--gcc/ada/5itaprop.adb10
1 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ada/5itaprop.adb b/gcc/ada/5itaprop.adb
index bc4b7d3..f88d8c3 100644
--- a/gcc/ada/5itaprop.adb
+++ b/gcc/ada/5itaprop.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- $Revision: 1.43 $
+-- $Revision$
-- --
-- Copyright (C) 1991-2001, Florida State University --
-- --
@@ -34,7 +34,7 @@
-- --
------------------------------------------------------------------------------
--- This is a Linux (LinuxThreads) version of this package
+-- This is a GNU/Linux (GNU/LinuxThreads) version of this package
-- This package contains all the GNULL primitives that interface directly
-- with the underlying OS.
@@ -105,7 +105,7 @@ package body System.Task_Primitives.Operations is
------------------
Max_Stack_Size : constant := 2000 * 1024;
- -- LinuxThreads does not return an error value when requesting
+ -- GNU/LinuxThreads does not return an error value when requesting
-- a task stack size which is too large, so we have to check this
-- ourselves.
@@ -699,7 +699,9 @@ package body System.Task_Primitives.Operations is
end if;
end if;
- -- Priorities are in range 1 .. 99 on Linux, so map 0 .. 31 to 1 .. 32
+ -- Priorities are in range 1 .. 99 on GNU/Linux, so we map
+ -- map 0 .. 31 to 1 .. 32
+
Param.sched_priority := Interfaces.C.int (Prio) + 1;
if Time_Slice_Val > 0 then