summaryrefslogtreecommitdiffstats
path: root/c/src/optman
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 20:25:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-17 20:25:43 +0000
commit45c4499e0387e38484504a916550f6fb8198e3a6 (patch)
treedf9a0dc2436ab8d5c1fa28b143ca116abfcd9fe8 /c/src/optman
parent2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-45c4499e0387e38484504a916550f6fb8198e3a6.tar.bz2
2008-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c, optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-signal.c, optman/rtems/no-timer.c: Convert manager initialization routines to directly pull parameters from configuration table. Eliminate empty routines sportted.
Diffstat (limited to 'c/src/optman')
-rw-r--r--c/src/optman/rtems/no-barrier.c6
-rw-r--r--c/src/optman/rtems/no-dpmem.c6
-rw-r--r--c/src/optman/rtems/no-event.c4
-rw-r--r--c/src/optman/rtems/no-mp.c4
-rw-r--r--c/src/optman/rtems/no-msg.c6
-rw-r--r--c/src/optman/rtems/no-part.c6
-rw-r--r--c/src/optman/rtems/no-region.c4
-rw-r--r--c/src/optman/rtems/no-rtmon.c6
-rw-r--r--c/src/optman/rtems/no-sem.c6
-rw-r--r--c/src/optman/rtems/no-signal.c4
-rw-r--r--c/src/optman/rtems/no-timer.c6
11 files changed, 21 insertions, 37 deletions
diff --git a/c/src/optman/rtems/no-barrier.c b/c/src/optman/rtems/no-barrier.c
index e5f1225269..1fe3acddc0 100644
--- a/c/src/optman/rtems/no-barrier.c
+++ b/c/src/optman/rtems/no-barrier.c
@@ -1,7 +1,7 @@
/*
* Barrier Manager Stub
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -17,8 +17,6 @@
#include <rtems/score/object.h>
#include <rtems/rtems/barrier.h>
-void _Barrier_Manager_initialization(
- uint32_t maximum_barriers
-)
+void _Barrier_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-dpmem.c b/c/src/optman/rtems/no-dpmem.c
index d2b8e92868..0aa8b5257b 100644
--- a/c/src/optman/rtems/no-dpmem.c
+++ b/c/src/optman/rtems/no-dpmem.c
@@ -1,7 +1,7 @@
/*
* Dual Port Memory Manager
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -21,8 +21,6 @@
#include <rtems/rtems/types.h>
#include <rtems/rtems/dpmem.h>
-void _Dual_ported_memory_Manager_initialization(
- uint32_t maximum_ports
-)
+void _Dual_ported_memory_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-event.c b/c/src/optman/rtems/no-event.c
index 256e9d7d6b..3aaa4a84a6 100644
--- a/c/src/optman/rtems/no-event.c
+++ b/c/src/optman/rtems/no-event.c
@@ -1,7 +1,7 @@
/*
* Event Manager
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -21,7 +21,7 @@
#include <rtems/score/thread.h>
#include <rtems/score/interr.h>
-void _Event_Manager_initialization( void )
+void _Event_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-mp.c b/c/src/optman/rtems/no-mp.c
index 2ec52558d3..ec2cc05a36 100644
--- a/c/src/optman/rtems/no-mp.c
+++ b/c/src/optman/rtems/no-mp.c
@@ -2,7 +2,7 @@
* Multiprocessing Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -30,7 +30,7 @@
#include <rtems/score/sysstate.h>
#include <rtems/score/interr.h>
-void _Multiprocessing_Manager_initialization ( void )
+void _Multiprocessing_Manager_initialization(void)
{
}
#endif
diff --git a/c/src/optman/rtems/no-msg.c b/c/src/optman/rtems/no-msg.c
index 3a37eefbaf..7ccb00c7cb 100644
--- a/c/src/optman/rtems/no-msg.c
+++ b/c/src/optman/rtems/no-msg.c
@@ -2,7 +2,7 @@
* Message Queue Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -25,8 +25,6 @@
#include <rtems/score/wkspace.h>
#include <rtems/score/interr.h>
-void _Message_queue_Manager_initialization(
- uint32_t maximum_message_queues
-)
+void _Message_queue_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-part.c b/c/src/optman/rtems/no-part.c
index d5ede0c4cd..5348661f35 100644
--- a/c/src/optman/rtems/no-part.c
+++ b/c/src/optman/rtems/no-part.c
@@ -2,7 +2,7 @@
* Partition Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -20,8 +20,6 @@
#include <rtems/score/thread.h>
#include <rtems/score/interr.h>
-void _Partition_Manager_initialization(
- uint32_t maximum_partitions
-)
+void _Partition_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-region.c b/c/src/optman/rtems/no-region.c
index cab64d7355..51865ab53d 100644
--- a/c/src/optman/rtems/no-region.c
+++ b/c/src/optman/rtems/no-region.c
@@ -21,8 +21,6 @@
#include <rtems/score/thread.h>
#include <rtems/score/interr.h>
-void _Region_Manager_initialization(
- uint32_t maximum_regions
-)
+void _Region_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-rtmon.c b/c/src/optman/rtems/no-rtmon.c
index fd58582351..832087cba7 100644
--- a/c/src/optman/rtems/no-rtmon.c
+++ b/c/src/optman/rtems/no-rtmon.c
@@ -2,7 +2,7 @@
* Rate Monotonic Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -22,8 +22,6 @@
#include <rtems/rtems/types.h>
#include <rtems/rtems/ratemon.h>
-void _Rate_monotonic_Manager_initialization(
- uint32_t maximum_periods
-)
+void _Rate_monotonic_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-sem.c b/c/src/optman/rtems/no-sem.c
index 0240f8a0cf..e2f4649c97 100644
--- a/c/src/optman/rtems/no-sem.c
+++ b/c/src/optman/rtems/no-sem.c
@@ -2,7 +2,7 @@
* Semaphore Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -24,9 +24,7 @@
#include <rtems/score/threadq.h>
#include <rtems/score/interr.h>
-void _Semaphore_Manager_initialization(
- uint32_t maximum_semaphores
-)
+void _Semaphore_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-signal.c b/c/src/optman/rtems/no-signal.c
index cb11f8a9f0..51f233cf2b 100644
--- a/c/src/optman/rtems/no-signal.c
+++ b/c/src/optman/rtems/no-signal.c
@@ -2,7 +2,7 @@
* Signal Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -22,7 +22,7 @@
#include <rtems/rtems/modes.h>
#include <rtems/rtems/signal.h>
-void _Signal_Manager_initialization( void )
+void _Signal_Manager_initialization(void)
{
}
diff --git a/c/src/optman/rtems/no-timer.c b/c/src/optman/rtems/no-timer.c
index 6f9d38a53c..9e9bcdcb30 100644
--- a/c/src/optman/rtems/no-timer.c
+++ b/c/src/optman/rtems/no-timer.c
@@ -2,7 +2,7 @@
* Timer Manager
*
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -23,9 +23,7 @@
#include <rtems/rtems/types.h>
#include <rtems/rtems/timer.h>
-void _Timer_Manager_initialization(
- uint32_t maximum_timers
-)
+void _Timer_Manager_initialization(void)
{
}