From dea1dc20336261e6c0c3651588cd53e23a5eb0c4 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 25 May 2011 14:17:53 +0000 Subject: Cosmetics from CVS-HEAD. --- cpukit/score/include/rtems/score/coremutex.h | 2 +- cpukit/score/include/rtems/score/heap.h | 2 +- cpukit/score/include/rtems/score/sysstate.h | 4 ++-- cpukit/score/src/objectidtoname.c | 2 +- cpukit/score/src/objectnametoid.c | 3 +-- cpukit/score/src/objectnametoidstring.c | 3 +-- cpukit/score/src/thread.c | 4 ++-- cpukit/score/src/threadchangepriority.c | 7 +++---- cpukit/score/src/threadclearstate.c | 7 +++---- cpukit/score/src/threadclose.c | 7 +++---- cpukit/score/src/threadcreateidle.c | 4 ++-- cpukit/score/src/threaddelayended.c | 2 +- cpukit/score/src/threaddispatch.c | 3 +-- cpukit/score/src/threadget.c | 7 +++---- cpukit/score/src/threadhandler.c | 2 +- cpukit/score/src/threadinitialize.c | 7 +++---- cpukit/score/src/threadloadenv.c | 2 +- cpukit/score/src/threadready.c | 7 +++---- cpukit/score/src/threadreset.c | 2 +- cpukit/score/src/threadrestart.c | 2 +- cpukit/score/src/threadsetpriority.c | 7 +++---- cpukit/score/src/threadsetstate.c | 7 +++---- cpukit/score/src/threadsettransient.c | 7 +++---- cpukit/score/src/threadstackallocate.c | 7 +++---- cpukit/score/src/threadstackfree.c | 2 +- cpukit/score/src/threadstart.c | 2 +- 26 files changed, 49 insertions(+), 62 deletions(-) (limited to 'cpukit/score') diff --git a/cpukit/score/include/rtems/score/coremutex.h b/cpukit/score/include/rtems/score/coremutex.h index c047347327..712b35c7eb 100644 --- a/cpukit/score/include/rtems/score/coremutex.h +++ b/cpukit/score/include/rtems/score/coremutex.h @@ -193,7 +193,7 @@ typedef struct { } CORE_mutex_Attributes; #ifdef __RTEMS_STRICT_ORDER_MUTEX__ -/*@beief Core Mutex Lock_Chain Struct +/*@brief Core Mutex Lock_Chain Struct * * The following defines the control block used to manage lock chain of * priority inheritance mutex. diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h index c2286bf2af..15d6d22ae9 100644 --- a/cpukit/score/include/rtems/score/heap.h +++ b/cpukit/score/include/rtems/score/heap.h @@ -368,7 +368,7 @@ Heap_Extend_status _Heap_Extend( * memory area will begin at an address aligned by this value. * * If the boundary parameter @a boundary is not equal to zero, the allocated - * memory area will fulfill a boundary constraint. The boudnary value + * memory area will fulfill a boundary constraint. The boundary value * specifies the set of addresses which are aligned by the boundary value. The * interior of the allocated memory area will not contain an element of this * set. The begin or end address of the area may be a member of the set. diff --git a/cpukit/score/include/rtems/score/sysstate.h b/cpukit/score/include/rtems/score/sysstate.h index bb133b57a3..0700ad984a 100644 --- a/cpukit/score/include/rtems/score/sysstate.h +++ b/cpukit/score/include/rtems/score/sysstate.h @@ -7,7 +7,7 @@ */ /* - * COPYRIGHT (c) 1989-2006. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be @@ -44,7 +44,7 @@ typedef enum { SYSTEM_STATE_BEFORE_INITIALIZATION, /** - * @brief The system is between end of the first phase of initializatin but + * @brief The system is between end of the first phase of initialization but * before multitasking is started. */ SYSTEM_STATE_BEFORE_MULTITASKING, diff --git a/cpukit/score/src/objectidtoname.c b/cpukit/score/src/objectidtoname.c index fc42a41fa6..870d424986 100644 --- a/cpukit/score/src/objectidtoname.c +++ b/cpukit/score/src/objectidtoname.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/objectnametoid.c b/cpukit/score/src/objectnametoid.c index d015cc3cf2..7d248f2e6f 100644 --- a/cpukit/score/src/objectnametoid.c +++ b/cpukit/score/src/objectnametoid.c @@ -1,8 +1,7 @@ /* * Object Handler * - * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2010. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be diff --git a/cpukit/score/src/objectnametoidstring.c b/cpukit/score/src/objectnametoidstring.c index 71c7cc853f..ee126cebd6 100644 --- a/cpukit/score/src/objectnametoidstring.c +++ b/cpukit/score/src/objectnametoidstring.c @@ -1,8 +1,7 @@ /* * Object Handler - Object ID to Name (String) * - * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2010. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be diff --git a/cpukit/score/src/thread.c b/cpukit/score/src/thread.c index cc99bf668b..01eac0a089 100644 --- a/cpukit/score/src/thread.c +++ b/cpukit/score/src/thread.c @@ -2,11 +2,11 @@ * Thread Handler * * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadchangepriority.c b/cpukit/score/src/threadchangepriority.c index 2215be03a6..b3b3eeb615 100644 --- a/cpukit/score/src/threadchangepriority.c +++ b/cpukit/score/src/threadchangepriority.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Change Priority * - * - * COPYRIGHT (c) 1989-2006. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadclearstate.c b/cpukit/score/src/threadclearstate.c index 872d57cc66..617f271668 100644 --- a/cpukit/score/src/threadclearstate.c +++ b/cpukit/score/src/threadclearstate.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Clear State * - * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadclose.c b/cpukit/score/src/threadclose.c index 51db06f56c..466a5717a6 100644 --- a/cpukit/score/src/threadclose.c +++ b/cpukit/score/src/threadclose.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Close * - * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadcreateidle.c b/cpukit/score/src/threadcreateidle.c index 1e12dd301c..2fce8dca07 100644 --- a/cpukit/score/src/threadcreateidle.c +++ b/cpukit/score/src/threadcreateidle.c @@ -2,11 +2,11 @@ * Thread Handler * * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threaddelayended.c b/cpukit/score/src/threaddelayended.c index d3c6eb116b..4f72764608 100644 --- a/cpukit/score/src/threaddelayended.c +++ b/cpukit/score/src/threaddelayended.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threaddispatch.c b/cpukit/score/src/threaddispatch.c index e0d0f5cdf7..6606f29922 100644 --- a/cpukit/score/src/threaddispatch.c +++ b/cpukit/score/src/threaddispatch.c @@ -1,12 +1,11 @@ /* * Thread Handler * - * * COPYRIGHT (c) 1989-2009. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadget.c b/cpukit/score/src/threadget.c index c531fd9bf0..85b772f883 100644 --- a/cpukit/score/src/threadget.c +++ b/cpukit/score/src/threadget.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler - Object Id to Thread Pointer * - * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadhandler.c b/cpukit/score/src/threadhandler.c index 3fffd8fb83..37185ad745 100644 --- a/cpukit/score/src/threadhandler.c +++ b/cpukit/score/src/threadhandler.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadinitialize.c b/cpukit/score/src/threadinitialize.c index 3523c03f17..91522fbe27 100644 --- a/cpukit/score/src/threadinitialize.c +++ b/cpukit/score/src/threadinitialize.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Initialize * - * - * COPYRIGHT (c) 1989-2009. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadloadenv.c b/cpukit/score/src/threadloadenv.c index 6a30adbdde..2b24385bbe 100644 --- a/cpukit/score/src/threadloadenv.c +++ b/cpukit/score/src/threadloadenv.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadready.c b/cpukit/score/src/threadready.c index c236f61cf3..8e26f7deda 100644 --- a/cpukit/score/src/threadready.c +++ b/cpukit/score/src/threadready.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Ready * - * - * COPYRIGHT (c) 1989-2006. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadreset.c b/cpukit/score/src/threadreset.c index 847a4d1be2..a99aa45e17 100644 --- a/cpukit/score/src/threadreset.c +++ b/cpukit/score/src/threadreset.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadrestart.c b/cpukit/score/src/threadrestart.c index 6cd7189a14..37af4d805f 100644 --- a/cpukit/score/src/threadrestart.c +++ b/cpukit/score/src/threadrestart.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadsetpriority.c b/cpukit/score/src/threadsetpriority.c index ba1482f5b5..a4837ca493 100644 --- a/cpukit/score/src/threadsetpriority.c +++ b/cpukit/score/src/threadsetpriority.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Set Priority * - * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadsetstate.c b/cpukit/score/src/threadsetstate.c index 911586b502..9e1ed6ad7d 100644 --- a/cpukit/score/src/threadsetstate.c +++ b/cpukit/score/src/threadsetstate.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Set State * - * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadsettransient.c b/cpukit/score/src/threadsettransient.c index ab0a1d451d..4a92b0ebbd 100644 --- a/cpukit/score/src/threadsettransient.c +++ b/cpukit/score/src/threadsettransient.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler / Thread Set Transient * - * - * COPYRIGHT (c) 1989-1999. + * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadstackallocate.c b/cpukit/score/src/threadstackallocate.c index 35c08ec1df..e9802c0caf 100644 --- a/cpukit/score/src/threadstackallocate.c +++ b/cpukit/score/src/threadstackallocate.c @@ -1,12 +1,11 @@ /* - * Thread Handler + * Thread Handler - Stack Allocate Helper * - * - * COPYRIGHT (c) 1989-2008. + * COPYRIGHT (c) 1989-2010. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadstackfree.c b/cpukit/score/src/threadstackfree.c index beede76793..64e0278e1b 100644 --- a/cpukit/score/src/threadstackfree.c +++ b/cpukit/score/src/threadstackfree.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ diff --git a/cpukit/score/src/threadstart.c b/cpukit/score/src/threadstart.c index 07fcd217c5..1bc293c96f 100644 --- a/cpukit/score/src/threadstart.c +++ b/cpukit/score/src/threadstart.c @@ -6,7 +6,7 @@ * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at + * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ -- cgit v1.2.3