From 45c4499e0387e38484504a916550f6fb8198e3a6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 17 Dec 2008 20:25:43 +0000 Subject: 2008-12-17 Joel Sherrill * 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. --- c/src/optman/rtems/no-barrier.c | 6 ++---- c/src/optman/rtems/no-dpmem.c | 6 ++---- c/src/optman/rtems/no-event.c | 4 ++-- c/src/optman/rtems/no-mp.c | 4 ++-- c/src/optman/rtems/no-msg.c | 6 ++---- c/src/optman/rtems/no-part.c | 6 ++---- c/src/optman/rtems/no-region.c | 4 +--- c/src/optman/rtems/no-rtmon.c | 6 ++---- c/src/optman/rtems/no-sem.c | 6 ++---- c/src/optman/rtems/no-signal.c | 4 ++-- c/src/optman/rtems/no-timer.c | 6 ++---- 11 files changed, 21 insertions(+), 37 deletions(-) (limited to 'c/src/optman') 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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -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 #include -void _Timer_Manager_initialization( - uint32_t maximum_timers -) +void _Timer_Manager_initialization(void) { } -- cgit v1.2.3