From 3a638ceb4c6d1b73d149bb7c672b8ab39f43ea9e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 31 Jan 2014 10:55:17 -0600 Subject: rtems/*.c: Remove use of register keyword --- cpukit/rtems/src/dpmemcreate.c | 4 ++-- cpukit/rtems/src/dpmemdelete.c | 4 ++-- cpukit/rtems/src/dpmemexternal2internal.c | 4 ++-- cpukit/rtems/src/dpmeminternal2external.c | 4 ++-- cpukit/rtems/src/msgqbroadcast.c | 4 ++-- cpukit/rtems/src/msgqcreate.c | 4 ++-- cpukit/rtems/src/msgqdelete.c | 4 ++-- cpukit/rtems/src/msgqflush.c | 4 ++-- cpukit/rtems/src/msgqgetnumberpending.c | 4 ++-- cpukit/rtems/src/msgqreceive.c | 4 ++-- cpukit/rtems/src/msgqsend.c | 4 ++-- cpukit/rtems/src/msgqurgent.c | 4 ++-- cpukit/rtems/src/partcreate.c | 4 ++-- cpukit/rtems/src/partdelete.c | 4 ++-- cpukit/rtems/src/partgetbuffer.c | 4 ++-- cpukit/rtems/src/partreturnbuffer.c | 4 ++-- cpukit/rtems/src/regiongetfreeinfo.c | 4 ++-- cpukit/rtems/src/regiongetinfo.c | 4 ++-- cpukit/rtems/src/regiongetsegmentsize.c | 4 ++-- cpukit/rtems/src/regionresizesegment.c | 4 ++-- cpukit/rtems/src/regionreturnsegment.c | 4 ++-- cpukit/rtems/src/semcreate.c | 4 ++-- cpukit/rtems/src/semdelete.c | 4 ++-- cpukit/rtems/src/semflush.c | 4 ++-- cpukit/rtems/src/semobtain.c | 4 ++-- cpukit/rtems/src/semrelease.c | 4 ++-- cpukit/rtems/src/signalsend.c | 4 ++-- cpukit/rtems/src/taskcreate.c | 4 ++-- cpukit/rtems/src/taskdelete.c | 4 ++-- cpukit/rtems/src/taskgetnote.c | 4 ++-- cpukit/rtems/src/taskissuspended.c | 4 ++-- cpukit/rtems/src/taskrestart.c | 4 ++-- cpukit/rtems/src/taskresume.c | 4 ++-- cpukit/rtems/src/tasksetnote.c | 4 ++-- cpukit/rtems/src/tasksetpriority.c | 2 +- cpukit/rtems/src/taskstart.c | 4 ++-- cpukit/rtems/src/tasksuspend.c | 4 ++-- 37 files changed, 73 insertions(+), 73 deletions(-) diff --git a/cpukit/rtems/src/dpmemcreate.c b/cpukit/rtems/src/dpmemcreate.c index 5d67c612f9..4ae02760b5 100644 --- a/cpukit/rtems/src/dpmemcreate.c +++ b/cpukit/rtems/src/dpmemcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -33,7 +33,7 @@ rtems_status_code rtems_port_create( rtems_id *id ) { - register Dual_ported_memory_Control *the_port; + Dual_ported_memory_Control *the_port; if ( !rtems_is_name_valid( name ) ) return RTEMS_INVALID_NAME; diff --git a/cpukit/rtems/src/dpmemdelete.c b/cpukit/rtems/src/dpmemdelete.c index 8e1f8f8909..a3ee8a0fa7 100644 --- a/cpukit/rtems/src/dpmemdelete.c +++ b/cpukit/rtems/src/dpmemdelete.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -29,7 +29,7 @@ rtems_status_code rtems_port_delete( rtems_id id ) { - register Dual_ported_memory_Control *the_port; + Dual_ported_memory_Control *the_port; Objects_Locations location; the_port = _Dual_ported_memory_Get( id, &location ); diff --git a/cpukit/rtems/src/dpmemexternal2internal.c b/cpukit/rtems/src/dpmemexternal2internal.c index 296d52d58e..7cb7dd10b0 100644 --- a/cpukit/rtems/src/dpmemexternal2internal.c +++ b/cpukit/rtems/src/dpmemexternal2internal.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -31,7 +31,7 @@ rtems_status_code rtems_port_external_to_internal( void **internal ) { - register Dual_ported_memory_Control *the_port; + Dual_ported_memory_Control *the_port; Objects_Locations location; uint32_t ending; diff --git a/cpukit/rtems/src/dpmeminternal2external.c b/cpukit/rtems/src/dpmeminternal2external.c index 355e049c40..654fa014d1 100644 --- a/cpukit/rtems/src/dpmeminternal2external.c +++ b/cpukit/rtems/src/dpmeminternal2external.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -31,7 +31,7 @@ rtems_status_code rtems_port_internal_to_external( void **external ) { - register Dual_ported_memory_Control *the_port; + Dual_ported_memory_Control *the_port; Objects_Locations location; uint32_t ending; diff --git a/cpukit/rtems/src/msgqbroadcast.c b/cpukit/rtems/src/msgqbroadcast.c index 43710f87b3..517e25c9c4 100644 --- a/cpukit/rtems/src/msgqbroadcast.c +++ b/cpukit/rtems/src/msgqbroadcast.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -37,7 +37,7 @@ rtems_status_code rtems_message_queue_broadcast( uint32_t *count ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; CORE_message_queue_Status core_status; diff --git a/cpukit/rtems/src/msgqcreate.c b/cpukit/rtems/src/msgqcreate.c index 512a2c50d4..5ac3ab5f76 100644 --- a/cpukit/rtems/src/msgqcreate.c +++ b/cpukit/rtems/src/msgqcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -39,7 +39,7 @@ rtems_status_code rtems_message_queue_create( rtems_id *id ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; CORE_message_queue_Attributes the_msgq_attributes; #if defined(RTEMS_MULTIPROCESSING) bool is_global; diff --git a/cpukit/rtems/src/msgqdelete.c b/cpukit/rtems/src/msgqdelete.c index 2ad39fc5ba..b63bd61bf5 100644 --- a/cpukit/rtems/src/msgqdelete.c +++ b/cpukit/rtems/src/msgqdelete.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -34,7 +34,7 @@ rtems_status_code rtems_message_queue_delete( rtems_id id ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; the_message_queue = _Message_queue_Get( id, &location ); diff --git a/cpukit/rtems/src/msgqflush.c b/cpukit/rtems/src/msgqflush.c index 36794108c9..8baa9ae0e1 100644 --- a/cpukit/rtems/src/msgqflush.c +++ b/cpukit/rtems/src/msgqflush.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -52,7 +52,7 @@ rtems_status_code rtems_message_queue_flush( uint32_t *count ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; if ( !count ) diff --git a/cpukit/rtems/src/msgqgetnumberpending.c b/cpukit/rtems/src/msgqgetnumberpending.c index c18e945b33..89f557d821 100644 --- a/cpukit/rtems/src/msgqgetnumberpending.c +++ b/cpukit/rtems/src/msgqgetnumberpending.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -50,7 +50,7 @@ rtems_status_code rtems_message_queue_get_number_pending( uint32_t *count ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; if ( !count ) diff --git a/cpukit/rtems/src/msgqreceive.c b/cpukit/rtems/src/msgqreceive.c index 33206d47da..8bfa2a7a7d 100644 --- a/cpukit/rtems/src/msgqreceive.c +++ b/cpukit/rtems/src/msgqreceive.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -38,7 +38,7 @@ rtems_status_code rtems_message_queue_receive( rtems_interval timeout ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; bool wait; Thread_Control *executing; diff --git a/cpukit/rtems/src/msgqsend.c b/cpukit/rtems/src/msgqsend.c index 2d648e40a0..d64b06cab4 100644 --- a/cpukit/rtems/src/msgqsend.c +++ b/cpukit/rtems/src/msgqsend.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -59,7 +59,7 @@ rtems_status_code rtems_message_queue_send( size_t size ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; CORE_message_queue_Status status; diff --git a/cpukit/rtems/src/msgqurgent.c b/cpukit/rtems/src/msgqurgent.c index 966148255d..b7dc420b9e 100644 --- a/cpukit/rtems/src/msgqurgent.c +++ b/cpukit/rtems/src/msgqurgent.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -42,7 +42,7 @@ rtems_status_code rtems_message_queue_urgent( size_t size ) { - register Message_queue_Control *the_message_queue; + Message_queue_Control *the_message_queue; Objects_Locations location; CORE_message_queue_Status status; diff --git a/cpukit/rtems/src/partcreate.c b/cpukit/rtems/src/partcreate.c index fd1980fcd5..10ffea09a0 100644 --- a/cpukit/rtems/src/partcreate.c +++ b/cpukit/rtems/src/partcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -53,7 +53,7 @@ rtems_status_code rtems_partition_create( rtems_id *id ) { - register Partition_Control *the_partition; + Partition_Control *the_partition; if ( !rtems_is_name_valid( name ) ) return RTEMS_INVALID_NAME; diff --git a/cpukit/rtems/src/partdelete.c b/cpukit/rtems/src/partdelete.c index cbcb89c444..1d7e63f7ad 100644 --- a/cpukit/rtems/src/partdelete.c +++ b/cpukit/rtems/src/partdelete.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -26,7 +26,7 @@ rtems_status_code rtems_partition_delete( rtems_id id ) { - register Partition_Control *the_partition; + Partition_Control *the_partition; Objects_Locations location; the_partition = _Partition_Get( id, &location ); diff --git a/cpukit/rtems/src/partgetbuffer.c b/cpukit/rtems/src/partgetbuffer.c index 9aa072a858..849659db2c 100644 --- a/cpukit/rtems/src/partgetbuffer.c +++ b/cpukit/rtems/src/partgetbuffer.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -30,7 +30,7 @@ rtems_status_code rtems_partition_get_buffer( void **buffer ) { - register Partition_Control *the_partition; + Partition_Control *the_partition; Objects_Locations location; void *the_buffer; diff --git a/cpukit/rtems/src/partreturnbuffer.c b/cpukit/rtems/src/partreturnbuffer.c index 2acd9ad62d..d76184e156 100644 --- a/cpukit/rtems/src/partreturnbuffer.c +++ b/cpukit/rtems/src/partreturnbuffer.c @@ -2,7 +2,7 @@ * Partition Manager * * - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -41,7 +41,7 @@ rtems_status_code rtems_partition_return_buffer( void *buffer ) { - register Partition_Control *the_partition; + Partition_Control *the_partition; Objects_Locations location; the_partition = _Partition_Get( id, &location ); diff --git a/cpukit/rtems/src/regiongetfreeinfo.c b/cpukit/rtems/src/regiongetfreeinfo.c index 4e8fe28ecc..22d40f9261 100644 --- a/cpukit/rtems/src/regiongetfreeinfo.c +++ b/cpukit/rtems/src/regiongetfreeinfo.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -33,7 +33,7 @@ rtems_status_code rtems_region_get_free_information( { Objects_Locations location; rtems_status_code return_status; - register Region_Control *the_region; + Region_Control *the_region; if ( !the_info ) return RTEMS_INVALID_ADDRESS; diff --git a/cpukit/rtems/src/regiongetinfo.c b/cpukit/rtems/src/regiongetinfo.c index e17e13c100..b3d4555cb9 100644 --- a/cpukit/rtems/src/regiongetinfo.c +++ b/cpukit/rtems/src/regiongetinfo.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -33,7 +33,7 @@ rtems_status_code rtems_region_get_information( { Objects_Locations location; rtems_status_code return_status; - register Region_Control *the_region; + Region_Control *the_region; if ( !the_info ) return RTEMS_INVALID_ADDRESS; diff --git a/cpukit/rtems/src/regiongetsegmentsize.c b/cpukit/rtems/src/regiongetsegmentsize.c index 8857217a9e..8f61c11f77 100644 --- a/cpukit/rtems/src/regiongetsegmentsize.c +++ b/cpukit/rtems/src/regiongetsegmentsize.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -33,7 +33,7 @@ rtems_status_code rtems_region_get_segment_size( { Objects_Locations location; rtems_status_code return_status = RTEMS_SUCCESSFUL; - register Region_Control *the_region; + Region_Control *the_region; if ( !segment ) return RTEMS_INVALID_ADDRESS; diff --git a/cpukit/rtems/src/regionresizesegment.c b/cpukit/rtems/src/regionresizesegment.c index 68a4e1aea1..faa9993772 100644 --- a/cpukit/rtems/src/regionresizesegment.c +++ b/cpukit/rtems/src/regionresizesegment.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -38,7 +38,7 @@ rtems_status_code rtems_region_resize_segment( uintptr_t osize; rtems_status_code return_status; Heap_Resize_status status; - register Region_Control *the_region; + Region_Control *the_region; if ( !old_size ) return RTEMS_INVALID_ADDRESS; diff --git a/cpukit/rtems/src/regionreturnsegment.c b/cpukit/rtems/src/regionreturnsegment.c index 15ec7188e5..b4332a051a 100644 --- a/cpukit/rtems/src/regionreturnsegment.c +++ b/cpukit/rtems/src/regionreturnsegment.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -45,7 +45,7 @@ rtems_status_code rtems_region_return_segment( uint32_t size; #endif int status; - register Region_Control *the_region; + Region_Control *the_region; _RTEMS_Lock_allocator(); diff --git a/cpukit/rtems/src/semcreate.c b/cpukit/rtems/src/semcreate.c index 517dc7f3a0..89ee9f15a1 100644 --- a/cpukit/rtems/src/semcreate.c +++ b/cpukit/rtems/src/semcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2009. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -60,7 +60,7 @@ rtems_status_code rtems_semaphore_create( rtems_id *id ) { - register Semaphore_Control *the_semaphore; + Semaphore_Control *the_semaphore; CORE_mutex_Attributes the_mutex_attr; CORE_semaphore_Attributes the_semaphore_attr; CORE_mutex_Status mutex_status; diff --git a/cpukit/rtems/src/semdelete.c b/cpukit/rtems/src/semdelete.c index 37cbf3d33e..584d9fc38e 100644 --- a/cpukit/rtems/src/semdelete.c +++ b/cpukit/rtems/src/semdelete.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -41,7 +41,7 @@ rtems_status_code rtems_semaphore_delete( rtems_id id ) { - register Semaphore_Control *the_semaphore; + Semaphore_Control *the_semaphore; Objects_Locations location; the_semaphore = _Semaphore_Get( id, &location ); diff --git a/cpukit/rtems/src/semflush.c b/cpukit/rtems/src/semflush.c index dcbef01bf3..f22517a63a 100644 --- a/cpukit/rtems/src/semflush.c +++ b/cpukit/rtems/src/semflush.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -41,7 +41,7 @@ rtems_status_code rtems_semaphore_flush( rtems_id id ) { - register Semaphore_Control *the_semaphore; + Semaphore_Control *the_semaphore; Objects_Locations location; the_semaphore = _Semaphore_Get( id, &location ); diff --git a/cpukit/rtems/src/semobtain.c b/cpukit/rtems/src/semobtain.c index abec4697ee..e7a49f6fc8 100644 --- a/cpukit/rtems/src/semobtain.c +++ b/cpukit/rtems/src/semobtain.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -37,7 +37,7 @@ rtems_status_code rtems_semaphore_obtain( rtems_interval timeout ) { - register Semaphore_Control *the_semaphore; + Semaphore_Control *the_semaphore; Objects_Locations location; ISR_Level level; Thread_Control *executing; diff --git a/cpukit/rtems/src/semrelease.c b/cpukit/rtems/src/semrelease.c index df06b1d4ca..0da55c5c68 100644 --- a/cpukit/rtems/src/semrelease.c +++ b/cpukit/rtems/src/semrelease.c @@ -21,7 +21,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -69,7 +69,7 @@ rtems_status_code rtems_semaphore_release( rtems_id id ) { - register Semaphore_Control *the_semaphore; + Semaphore_Control *the_semaphore; Objects_Locations location; CORE_mutex_Status mutex_status; CORE_semaphore_Status semaphore_status; diff --git a/cpukit/rtems/src/signalsend.c b/cpukit/rtems/src/signalsend.c index c231235cd9..2c6131da14 100644 --- a/cpukit/rtems/src/signalsend.c +++ b/cpukit/rtems/src/signalsend.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -29,7 +29,7 @@ rtems_status_code rtems_signal_send( rtems_signal_set signal_set ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; RTEMS_API_Control *api; ASR_Information *asr; diff --git a/cpukit/rtems/src/taskcreate.c b/cpukit/rtems/src/taskcreate.c index 03ea10ab53..efc5343c7e 100644 --- a/cpukit/rtems/src/taskcreate.c +++ b/cpukit/rtems/src/taskcreate.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -35,7 +35,7 @@ rtems_status_code rtems_task_create( rtems_id *id ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; bool is_fp; #if defined(RTEMS_MULTIPROCESSING) Objects_MP_Control *the_global_object = NULL; diff --git a/cpukit/rtems/src/taskdelete.c b/cpukit/rtems/src/taskdelete.c index 82866f2af2..a51d1f14c7 100644 --- a/cpukit/rtems/src/taskdelete.c +++ b/cpukit/rtems/src/taskdelete.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -27,7 +27,7 @@ rtems_status_code rtems_task_delete( rtems_id id ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; Objects_Information *the_information; diff --git a/cpukit/rtems/src/taskgetnote.c b/cpukit/rtems/src/taskgetnote.c index cd31d8a54d..cf150d5f1b 100644 --- a/cpukit/rtems/src/taskgetnote.c +++ b/cpukit/rtems/src/taskgetnote.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -28,7 +28,7 @@ rtems_status_code rtems_task_get_note( uint32_t *note ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; RTEMS_API_Control *api; Thread_Control *executing; diff --git a/cpukit/rtems/src/taskissuspended.c b/cpukit/rtems/src/taskissuspended.c index dd6a7a319a..f60b015599 100644 --- a/cpukit/rtems/src/taskissuspended.c +++ b/cpukit/rtems/src/taskissuspended.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -40,7 +40,7 @@ rtems_status_code rtems_task_is_suspended( rtems_id id ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; the_thread = _Thread_Get( id, &location ); diff --git a/cpukit/rtems/src/taskrestart.c b/cpukit/rtems/src/taskrestart.c index 27b1ec4de7..826530347b 100644 --- a/cpukit/rtems/src/taskrestart.c +++ b/cpukit/rtems/src/taskrestart.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -26,7 +26,7 @@ rtems_status_code rtems_task_restart( uint32_t argument ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; the_thread = _Thread_Get( id, &location ); diff --git a/cpukit/rtems/src/taskresume.c b/cpukit/rtems/src/taskresume.c index 60af82e691..8f00d08400 100644 --- a/cpukit/rtems/src/taskresume.c +++ b/cpukit/rtems/src/taskresume.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -25,7 +25,7 @@ rtems_status_code rtems_task_resume( rtems_id id ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; the_thread = _Thread_Get( id, &location ); diff --git a/cpukit/rtems/src/tasksetnote.c b/cpukit/rtems/src/tasksetnote.c index 9aa8a08322..9ac5a34ac6 100644 --- a/cpukit/rtems/src/tasksetnote.c +++ b/cpukit/rtems/src/tasksetnote.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2009. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -28,7 +28,7 @@ rtems_status_code rtems_task_set_note( uint32_t note ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; RTEMS_API_Control *api; Thread_Control *executing; diff --git a/cpukit/rtems/src/tasksetpriority.c b/cpukit/rtems/src/tasksetpriority.c index 9e26505750..92b48251a0 100644 --- a/cpukit/rtems/src/tasksetpriority.c +++ b/cpukit/rtems/src/tasksetpriority.c @@ -27,7 +27,7 @@ rtems_status_code rtems_task_set_priority( rtems_task_priority *old_priority ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; if ( new_priority != RTEMS_CURRENT_PRIORITY && diff --git a/cpukit/rtems/src/taskstart.c b/cpukit/rtems/src/taskstart.c index a5dac15697..518235ff32 100644 --- a/cpukit/rtems/src/taskstart.c +++ b/cpukit/rtems/src/taskstart.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -44,7 +44,7 @@ rtems_status_code rtems_task_start( rtems_task_argument argument ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; bool successfully_started; diff --git a/cpukit/rtems/src/tasksuspend.c b/cpukit/rtems/src/tasksuspend.c index dced5d22da..baa1415e5e 100644 --- a/cpukit/rtems/src/tasksuspend.c +++ b/cpukit/rtems/src/tasksuspend.c @@ -6,7 +6,7 @@ */ /* - * COPYRIGHT (c) 1989-2007. + * COPYRIGHT (c) 1989-2014. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -25,7 +25,7 @@ rtems_status_code rtems_task_suspend( rtems_id id ) { - register Thread_Control *the_thread; + Thread_Control *the_thread; Objects_Locations location; the_thread = _Thread_Get( id, &location ); -- cgit v1.2.3