summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-05-25 14:17:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-05-25 14:17:53 +0000
commitdea1dc20336261e6c0c3651588cd53e23a5eb0c4 (patch)
treeff66d2618d8dd179da3a0039de4976808092c286 /cpukit/score/src
parentMerge with CVS-HEAD. (diff)
downloadrtems-dea1dc20336261e6c0c3651588cd53e23a5eb0c4.tar.bz2
Cosmetics from CVS-HEAD.
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/objectidtoname.c2
-rw-r--r--cpukit/score/src/objectnametoid.c3
-rw-r--r--cpukit/score/src/objectnametoidstring.c3
-rw-r--r--cpukit/score/src/thread.c4
-rw-r--r--cpukit/score/src/threadchangepriority.c7
-rw-r--r--cpukit/score/src/threadclearstate.c7
-rw-r--r--cpukit/score/src/threadclose.c7
-rw-r--r--cpukit/score/src/threadcreateidle.c4
-rw-r--r--cpukit/score/src/threaddelayended.c2
-rw-r--r--cpukit/score/src/threaddispatch.c3
-rw-r--r--cpukit/score/src/threadget.c7
-rw-r--r--cpukit/score/src/threadhandler.c2
-rw-r--r--cpukit/score/src/threadinitialize.c7
-rw-r--r--cpukit/score/src/threadloadenv.c2
-rw-r--r--cpukit/score/src/threadready.c7
-rw-r--r--cpukit/score/src/threadreset.c2
-rw-r--r--cpukit/score/src/threadrestart.c2
-rw-r--r--cpukit/score/src/threadsetpriority.c7
-rw-r--r--cpukit/score/src/threadsetstate.c7
-rw-r--r--cpukit/score/src/threadsettransient.c7
-rw-r--r--cpukit/score/src/threadstackallocate.c7
-rw-r--r--cpukit/score/src/threadstackfree.c2
-rw-r--r--cpukit/score/src/threadstart.c2
23 files changed, 45 insertions, 58 deletions
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$