summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/samples
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/ada-tests/samples')
-rw-r--r--c/src/ada-tests/samples/base_sp/sptest.adb5
-rw-r--r--c/src/ada-tests/samples/hello/sptest.adb6
-rw-r--r--c/src/ada-tests/samples/nsecs/sptest.adb4
-rw-r--r--c/src/ada-tests/samples/ticker/sptest.adb5
4 files changed, 9 insertions, 11 deletions
diff --git a/c/src/ada-tests/samples/base_sp/sptest.adb b/c/src/ada-tests/samples/base_sp/sptest.adb
index dff4495707..eed98596ea 100644
--- a/c/src/ada-tests/samples/base_sp/sptest.adb
+++ b/c/src/ada-tests/samples/base_sp/sptest.adb
@@ -10,7 +10,7 @@
--
--
--
--- COPYRIGHT (c) 1989-1997.
+-- COPYRIGHT (c) 1989-2009.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -20,8 +20,6 @@
-- $Id$
--
-with INTERFACES; use INTERFACES;
-with RTEMS;
with TEST_SUPPORT;
with TEXT_IO;
with UNSIGNED32_IO;
@@ -36,6 +34,7 @@ package body SPTEST is
procedure INIT (
ARGUMENT : in RTEMS.TASK_ARGUMENT
) is
+ pragma Unreferenced(ARGUMENT);
STATUS : RTEMS.STATUS_CODES;
begin
diff --git a/c/src/ada-tests/samples/hello/sptest.adb b/c/src/ada-tests/samples/hello/sptest.adb
index cda0030573..355c3b49dd 100644
--- a/c/src/ada-tests/samples/hello/sptest.adb
+++ b/c/src/ada-tests/samples/hello/sptest.adb
@@ -10,7 +10,7 @@
--
--
--
--- COPYRIGHT (c) 1989-1997.
+-- COPYRIGHT (c) 1989-2009.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -20,9 +20,6 @@
-- $Id$
--
-with INTERFACES; use INTERFACES;
-with RTEMS;
-with TEST_SUPPORT;
with TEXT_IO;
package body SPTEST is
@@ -35,6 +32,7 @@ package body SPTEST is
procedure INIT (
ARGUMENT : in RTEMS.TASK_ARGUMENT
) is
+ pragma Unreferenced(ARGUMENT);
begin
TEXT_IO.NEW_LINE( 2 );
diff --git a/c/src/ada-tests/samples/nsecs/sptest.adb b/c/src/ada-tests/samples/nsecs/sptest.adb
index 12c61c1c21..8d06fc43e3 100644
--- a/c/src/ada-tests/samples/nsecs/sptest.adb
+++ b/c/src/ada-tests/samples/nsecs/sptest.adb
@@ -10,7 +10,7 @@
--
--
--
--- COPYRIGHT (c) 1989-2007.
+-- COPYRIGHT (c) 1989-2009.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -23,7 +23,6 @@
with Ada.Integer_Text_IO;
with Interfaces.C;
with RTEMS;
-with Test_Support;
with Text_IO;
use type Interfaces.C.Long;
use type RTEMS.Time_T;
@@ -63,6 +62,7 @@ package body SPTEST is
procedure INIT (
ARGUMENT : in RTEMS.TASK_ARGUMENT
) is
+ pragma Unreferenced(ARGUMENT);
Status : RTEMS.Status_Codes;
Start : RTEMS.Timespec;
Stop : RTEMS.Timespec;
diff --git a/c/src/ada-tests/samples/ticker/sptest.adb b/c/src/ada-tests/samples/ticker/sptest.adb
index b43e9a45cd..7d9bfd6fa5 100644
--- a/c/src/ada-tests/samples/ticker/sptest.adb
+++ b/c/src/ada-tests/samples/ticker/sptest.adb
@@ -10,7 +10,7 @@
--
--
--
--- COPYRIGHT (c) 1989-1997.
+-- COPYRIGHT (c) 1989-2009.
-- On-Line Applications Research Corporation (OAR).
--
-- The license and distribution terms for this file may in
@@ -21,7 +21,6 @@
--
with INTERFACES; use INTERFACES;
-with RTEMS;
with TEST_SUPPORT;
with TEXT_IO;
@@ -35,6 +34,7 @@ package body SPTEST is
procedure INIT (
ARGUMENT : in RTEMS.TASK_ARGUMENT
) is
+ pragma Unreferenced(ARGUMENT);
TIME : RTEMS.TIME_OF_DAY;
STATUS : RTEMS.STATUS_CODES;
begin
@@ -121,6 +121,7 @@ package body SPTEST is
procedure TASK_1_THROUGH_3 (
ARGUMENT : in RTEMS.TASK_ARGUMENT
) is
+ pragma Unreferenced(ARGUMENT);
TID : RTEMS.ID;
TIME : RTEMS.TIME_OF_DAY;
STATUS : RTEMS.STATUS_CODES;