<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-05-25)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>jennifer</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-05-25 Jennifer Averett <Jennifer.Averett@OARcorp.com>

        PR 1792/bsps
        * src/lib/libbsp/i386/pc386/Makefile.am,
        src/lib/libbsp/sparc/erc32/Makefile.am,
        src/lib/libbsp/sparc/leon2/Makefile.am,
        src/lib/libbsp/sparc/leon3/Makefile.am: Added a generic smp wait
        method to sparc and i386 bsps.
        * src/lib/libbsp/shared/smp/bspsmp_wait_for.c: New file.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/ChangeLog.diff?r1=text&tr1=1.56&r2=text&tr2=1.57&diff_format=h">M</a></td><td width='1%'>1.57</td><td width='100%'>c/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/i386/pc386/Makefile.am.diff?r1=text&tr1=1.58&r2=text&tr2=1.59&diff_format=h">M</a></td><td width='1%'>1.59</td><td width='100%'>c/src/lib/libbsp/i386/pc386/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c?rev=1.1&content-type=text/vnd.viewcvs-markup">A</a></td><td width='1%'><font color="#000088">1.1</font></td><td width='100%'><font color="#000088">c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c</font></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am.diff?r1=text&tr1=1.54&r2=text&tr2=1.55&diff_format=h">M</a></td><td width='1%'>1.55</td><td width='100%'>c/src/lib/libbsp/sparc/erc32/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc/leon2/Makefile.am.diff?r1=text&tr1=1.27&r2=text&tr2=1.28&diff_format=h">M</a></td><td width='1%'>1.28</td><td width='100%'>c/src/lib/libbsp/sparc/leon2/Makefile.am</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/sparc/leon3/Makefile.am.diff?r1=text&tr1=1.31&r2=text&tr2=1.32&diff_format=h">M</a></td><td width='1%'>1.32</td><td width='100%'>c/src/lib/libbsp/sparc/leon3/Makefile.am</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/ChangeLog:1.56 rtems/c/ChangeLog:1.57
--- rtems/c/ChangeLog:1.56      Thu Apr 21 14:04:41 2011
+++ rtems/c/ChangeLog   Wed May 25 09:38:44 2011
</font><font color='#997700'>@@ -1,3 +1,13 @@
</font><font color='#000088'>+2011-05-25    Jennifer Averett <Jennifer.Averett@OARcorp.com>
+
+       PR 1792/bsps
+       * src/lib/libbsp/i386/pc386/Makefile.am,
+       src/lib/libbsp/sparc/erc32/Makefile.am,
+       src/lib/libbsp/sparc/leon2/Makefile.am,
+       src/lib/libbsp/sparc/leon3/Makefile.am: Added a generic smp wait
+       method to sparc and i386 bsps.
+       * src/lib/libbsp/shared/smp/bspsmp_wait_for.c: New file.
+
</font> 2011-04-21        Jennifer Averett <Jennifer.Averett@OARcorp.com
 
        PR 1777/cpukit

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/i386/pc386/Makefile.am:1.58 rtems/c/src/lib/libbsp/i386/pc386/Makefile.am:1.59
--- rtems/c/src/lib/libbsp/i386/pc386/Makefile.am:1.58  Wed Mar 16 15:05:12 2011
+++ rtems/c/src/lib/libbsp/i386/pc386/Makefile.am       Wed May 25 09:38:45 2011
</font><font color='#997700'>@@ -109,7 +109,8 @@
</font> libbsp_a_SOURCES += ide/idecfg.c ide/ide.c
 
 if HAS_SMP
<font color='#880000'>-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
</font><font color='#000088'>+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+    ../../shared/smp/bspsmp_wait_for.c
</font> endif
 
 if HAS_NETWORKING

<font color='#006600'>diff -u /dev/null rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c:1.1
--- /dev/null   Wed May 25 10:10:55 2011
+++ rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c Wed May 25 09:38:45 2011
</font><font color='#997700'>@@ -0,0 +1,30 @@
</font><font color='#000088'>+/*
+ *
+ *  COPYRIGHT (c) 1989-2011.
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ *
+ *  $Id
+ */
+
+void rtems_bsp_delay( int usec );
+
+void bsp_smp_wait_for(
+  volatile unsigned int *address,
+  unsigned int           desired,
+  int                    maximum_usecs
+)
+{
+  int iterations;
+  volatile unsigned int *p = address;
+
+  for (iterations=0 ;  iterations < maximum_usecs ; iterations++ ) {
+    if ( *p == desired )
+      break;
+
+    rtems_bsp_delay( 1 );
+  }
+}
</font>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am:1.54 rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am:1.55
--- rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am:1.54 Mon May 23 12:41:30 2011
+++ rtems/c/src/lib/libbsp/sparc/erc32/Makefile.am      Wed May 25 09:38:45 2011
</font><font color='#997700'>@@ -1,5 +1,5 @@
</font> ##
<font color='#880000'>-## $Id$
</font><font color='#000088'>+## $Id: Makefile.am,v 1.54 2011/05/23 17:41:30 jennifer Exp<span style="background-color: #FF0000"> </span>
</font> ##
 
 ACLOCAL_AMFLAGS = -I ../../../../aclocal
<font color='#997700'>@@ -55,7 +55,8 @@
</font> libbsp_a_SOURCES += timer/timer.c
 
 if HAS_SMP
<font color='#880000'>-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
</font><font color='#000088'>+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+    ../../shared/smp/bspsmp_wait_for.c
</font> endif
 
 if HAS_NETWORKING

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc/leon2/Makefile.am:1.27 rtems/c/src/lib/libbsp/sparc/leon2/Makefile.am:1.28
--- rtems/c/src/lib/libbsp/sparc/leon2/Makefile.am:1.27 Mon May 23 12:41:30 2011
+++ rtems/c/src/lib/libbsp/sparc/leon2/Makefile.am      Wed May 25 09:38:45 2011
</font><font color='#997700'>@@ -100,7 +100,8 @@
</font> libbsp_a_SOURCES += timer/timer.c
 
 if HAS_SMP
<font color='#880000'>-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
</font><font color='#000088'>+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+    ../../shared/smp/bspsmp_wait_for.c
</font> endif
 
 if HAS_NETWORKING

<font color='#006600'>diff -u rtems/c/src/lib/libbsp/sparc/leon3/Makefile.am:1.31 rtems/c/src/lib/libbsp/sparc/leon3/Makefile.am:1.32
--- rtems/c/src/lib/libbsp/sparc/leon3/Makefile.am:1.31 Mon May 23 12:41:30 2011
+++ rtems/c/src/lib/libbsp/sparc/leon3/Makefile.am      Wed May 25 09:38:45 2011
</font><font color='#997700'>@@ -94,7 +94,8 @@
</font> libbsp_a_SOURCES += timer/timer.c
 
 if HAS_SMP
<font color='#880000'>-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
</font><font color='#000088'>+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+    ../../shared/smp/bspsmp_wait_for.c
</font> endif
 
 if HAS_NETWORKING
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>jennifer</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Fix cvs id.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c:1.1 rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c:1.2
--- rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c:1.1     Wed May 25 09:38:45 2011
+++ rtems/c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c Wed May 25 09:40:07 2011
</font><font color='#997700'>@@ -7,7 +7,7 @@
</font>  *  found in the file LICENSE in this distribution or at
  *  http://www.rtems.com/license/LICENSE.
  *
<font color='#880000'>- *  $Id
</font><font color='#000088'>+ *  $Id$
</font>  */
 
 void rtems_bsp_delay( int usec );
</pre>
<p> </p>
<a name='cs3'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
 <font color='#225522'><em>(on branch rtems-4-10-branch)</em></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>Cosmetics from CVS-HEAD.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/bspIo.h.diff?r1=text&tr1=1.10&r2=text&tr2=1.10.2.1&diff_format=h">M</a></td><td width='1%'>1.10.2.1</td><td width='100%'>cpukit/include/rtems/bspIo.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/concat.h.diff?r1=text&tr1=1.3&r2=text&tr2=1.3.8.1&diff_format=h">M</a></td><td width='1%'>1.3.8.1</td><td width='100%'>cpukit/include/rtems/concat.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/include/rtems/irq.h.diff?r1=text&tr1=1.4&r2=text&tr2=1.4.2.1&diff_format=h">M</a></td><td width='1%'>1.4.2.1</td><td width='100%'>cpukit/include/rtems/irq.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libblock/include/rtems/bdbuf.h.diff?r1=text&tr1=1.29&r2=text&tr2=1.29.2.1&diff_format=h">M</a></td><td width='1%'>1.29.2.1</td><td width='100%'>cpukit/libblock/include/rtems/bdbuf.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/include/rtems/libio_.h.diff?r1=text&tr1=1.34.2.2&r2=text&tr2=1.34.2.3&diff_format=h">M</a></td><td width='1%'>1.34.2.3</td><td width='100%'>cpukit/libcsupport/include/rtems/libio_.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libcsupport/src/getuid.c.diff?r1=text&tr1=1.2&r2=text&tr2=1.2.8.1&diff_format=h">M</a></td><td width='1%'>1.2.8.1</td><td width='100%'>cpukit/libcsupport/src/getuid.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/coremutex.h.diff?r1=text&tr1=1.39&r2=text&tr2=1.39.2.1&diff_format=h">M</a></td><td width='1%'>1.39.2.1</td><td width='100%'>cpukit/score/include/rtems/score/coremutex.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/heap.h.diff?r1=text&tr1=1.41&r2=text&tr2=1.41.2.1&diff_format=h">M</a></td><td width='1%'>1.41.2.1</td><td width='100%'>cpukit/score/include/rtems/score/heap.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/include/rtems/score/sysstate.h.diff?r1=text&tr1=1.25&r2=text&tr2=1.25.2.1&diff_format=h">M</a></td><td width='1%'>1.25.2.1</td><td width='100%'>cpukit/score/include/rtems/score/sysstate.h</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/objectidtoname.c.diff?r1=text&tr1=1.15&r2=text&tr2=1.15.2.1&diff_format=h">M</a></td><td width='1%'>1.15.2.1</td><td width='100%'>cpukit/score/src/objectidtoname.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/objectnametoid.c.diff?r1=text&tr1=1.14&r2=text&tr2=1.14.2.1&diff_format=h">M</a></td><td width='1%'>1.14.2.1</td><td width='100%'>cpukit/score/src/objectnametoid.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/objectnametoidstring.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.7.2.1&diff_format=h">M</a></td><td width='1%'>1.7.2.1</td><td width='100%'>cpukit/score/src/objectnametoidstring.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/thread.c.diff?r1=text&tr1=1.62&r2=text&tr2=1.62.2.1&diff_format=h">M</a></td><td width='1%'>1.62.2.1</td><td width='100%'>cpukit/score/src/thread.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadchangepriority.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.12.2.1&diff_format=h">M</a></td><td width='1%'>1.12.2.1</td><td width='100%'>cpukit/score/src/threadchangepriority.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadclearstate.c.diff?r1=text&tr1=1.10&r2=text&tr2=1.10.2.1&diff_format=h">M</a></td><td width='1%'>1.10.2.1</td><td width='100%'>cpukit/score/src/threadclearstate.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadclose.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.12.4.1&diff_format=h">M</a></td><td width='1%'>1.12.4.1</td><td width='100%'>cpukit/score/src/threadclose.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadcreateidle.c.diff?r1=text&tr1=1.15&r2=text&tr2=1.15.2.1&diff_format=h">M</a></td><td width='1%'>1.15.2.1</td><td width='100%'>cpukit/score/src/threadcreateidle.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threaddelayended.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.7.2.1&diff_format=h">M</a></td><td width='1%'>1.7.2.1</td><td width='100%'>cpukit/score/src/threaddelayended.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threaddispatch.c.diff?r1=text&tr1=1.20&r2=text&tr2=1.20.2.1&diff_format=h">M</a></td><td width='1%'>1.20.2.1</td><td width='100%'>cpukit/score/src/threaddispatch.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadget.c.diff?r1=text&tr1=1.14&r2=text&tr2=1.14.2.1&diff_format=h">M</a></td><td width='1%'>1.14.2.1</td><td width='100%'>cpukit/score/src/threadget.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadhandler.c.diff?r1=text&tr1=1.29&r2=text&tr2=1.29.2.1&diff_format=h">M</a></td><td width='1%'>1.29.2.1</td><td width='100%'>cpukit/score/src/threadhandler.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadinitialize.c.diff?r1=text&tr1=1.38&r2=text&tr2=1.38.2.1&diff_format=h">M</a></td><td width='1%'>1.38.2.1</td><td width='100%'>cpukit/score/src/threadinitialize.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadloadenv.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.7.4.1&diff_format=h">M</a></td><td width='1%'>1.7.4.1</td><td width='100%'>cpukit/score/src/threadloadenv.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadready.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.7.2.1&diff_format=h">M</a></td><td width='1%'>1.7.2.1</td><td width='100%'>cpukit/score/src/threadready.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadreset.c.diff?r1=text&tr1=1.9&r2=text&tr2=1.9.2.1&diff_format=h">M</a></td><td width='1%'>1.9.2.1</td><td width='100%'>cpukit/score/src/threadreset.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadrestart.c.diff?r1=text&tr1=1.11&r2=text&tr2=1.11.2.1&diff_format=h">M</a></td><td width='1%'>1.11.2.1</td><td width='100%'>cpukit/score/src/threadrestart.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadsetpriority.c.diff?r1=text&tr1=1.4&r2=text&tr2=1.4.8.1&diff_format=h">M</a></td><td width='1%'>1.4.8.1</td><td width='100%'>cpukit/score/src/threadsetpriority.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadsetstate.c.diff?r1=text&tr1=1.6&r2=text&tr2=1.6.2.1&diff_format=h">M</a></td><td width='1%'>1.6.2.1</td><td width='100%'>cpukit/score/src/threadsetstate.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadsettransient.c.diff?r1=text&tr1=1.5&r2=text&tr2=1.5.8.1&diff_format=h">M</a></td><td width='1%'>1.5.8.1</td><td width='100%'>cpukit/score/src/threadsettransient.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadstackallocate.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.12.2.1&diff_format=h">M</a></td><td width='1%'>1.12.2.1</td><td width='100%'>cpukit/score/src/threadstackallocate.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadstackfree.c.diff?r1=text&tr1=1.7&r2=text&tr2=1.7.2.1&diff_format=h">M</a></td><td width='1%'>1.7.2.1</td><td width='100%'>cpukit/score/src/threadstackfree.c</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/score/src/threadstart.c.diff?r1=text&tr1=1.9&r2=text&tr2=1.9.4.1&diff_format=h">M</a></td><td width='1%'>1.9.4.1</td><td width='100%'>cpukit/score/src/threadstart.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/include/rtems/bspIo.h:1.10 rtems/cpukit/include/rtems/bspIo.h:1.10.2.1
--- rtems/cpukit/include/rtems/bspIo.h:1.10     Sun Nov 29 05:52:51 2009
+++ rtems/cpukit/include/rtems/bspIo.h  Wed May 25 09:17:49 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  COPYRIGHT (c) 1998 valette@crf.canon.fr
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/include/rtems/concat.h:1.3 rtems/cpukit/include/rtems/concat.h:1.3.8.1
--- rtems/cpukit/include/rtems/concat.h:1.3     Thu Oct 27 02:23:53 2005
+++ rtems/cpukit/include/rtems/concat.h Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -2,7 +2,7 @@
</font>  *  Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/include/rtems/irq.h:1.4 rtems/cpukit/include/rtems/irq.h:1.4.2.1
--- rtems/cpukit/include/rtems/irq.h:1.4        Sun Nov 29 05:52:52 2009
+++ rtems/cpukit/include/rtems/irq.h    Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -12,7 +12,7 @@
</font>  *  the STREAM API Specification Document link.
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  * $Id$

<font color='#006600'>diff -u rtems/cpukit/libblock/include/rtems/bdbuf.h:1.29 rtems/cpukit/libblock/include/rtems/bdbuf.h:1.29.2.1
--- rtems/cpukit/libblock/include/rtems/bdbuf.h:1.29    Tue Jan 26 09:09:02 2010
+++ rtems/cpukit/libblock/include/rtems/bdbuf.h Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -519,7 +519,7 @@
</font> 
 /**
  * Release the buffer allocated with a get or read call placing it on the
<font color='#880000'>- * modidied list.  If the buffer was not released modified before the hold
</font><font color='#000088'>+ * modified list.  If the buffer was not released modified before the hold
</font>  * timer is set to the configuration value. If the buffer had been released
  * modified before but not written to disk the hold timer is not updated. The
  * buffer will be written to disk when the hold timer has expired, there are

<font color='#006600'>diff -u rtems/cpukit/libcsupport/include/rtems/libio_.h:1.34.2.2 rtems/cpukit/libcsupport/include/rtems/libio_.h:1.34.2.3
--- rtems/cpukit/libcsupport/include/rtems/libio_.h:1.34.2.2    Thu Jul  1 10:18:06 2010
+++ rtems/cpukit/libcsupport/include/rtems/libio_.h     Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -1,4 +1,4 @@
</font><font color='#880000'>-/*
</font><font color='#000088'>+/**
</font>  * @file rtems/libio_.h
  */
 

<font color='#006600'>diff -u rtems/cpukit/libcsupport/src/getuid.c:1.2 rtems/cpukit/libcsupport/src/getuid.c:1.2.8.1
--- rtems/cpukit/libcsupport/src/getuid.c:1.2   Sun Apr 18 01:05:34 2004
+++ rtems/cpukit/libcsupport/src/getuid.c       Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -1,4 +1,11 @@
</font> /*
<font color='#000088'>+ *  COPYRIGHT (c) 1989-2010.
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ *
</font>  *  $Id$
  */
 

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/coremutex.h:1.39 rtems/cpukit/score/include/rtems/score/coremutex.h:1.39.2.1
--- rtems/cpukit/score/include/rtems/score/coremutex.h:1.39     Fri Nov 27 23:58:53 2009
+++ rtems/cpukit/score/include/rtems/score/coremutex.h  Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -193,7 +193,7 @@
</font> }   CORE_mutex_Attributes;
 
 #ifdef __RTEMS_STRICT_ORDER_MUTEX__
<font color='#880000'>-/*@beief Core Mutex Lock_Chain Struct
</font><font color='#000088'>+/*@brief Core Mutex Lock_Chain Struct
</font>  *
  * The following defines the control block used to manage lock chain of
  * priority inheritance mutex.

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/heap.h:1.41 rtems/cpukit/score/include/rtems/score/heap.h:1.41.2.1
--- rtems/cpukit/score/include/rtems/score/heap.h:1.41  Fri Sep 25 12:49:27 2009
+++ rtems/cpukit/score/include/rtems/score/heap.h       Wed May 25 09:17:51 2011
</font><font color='#997700'>@@ -368,7 +368,7 @@
</font>  * memory area will begin at an address aligned by this value.
  *
  * If the boundary parameter @a boundary is not equal to zero, the allocated
<font color='#880000'>- * memory area will fulfill a boundary constraint.  The boudnary value
</font><font color='#000088'>+ * memory area will fulfill a boundary constraint.  The boundary value
</font>  * 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.

<font color='#006600'>diff -u rtems/cpukit/score/include/rtems/score/sysstate.h:1.25 rtems/cpukit/score/include/rtems/score/sysstate.h:1.25.2.1
--- rtems/cpukit/score/include/rtems/score/sysstate.h:1.25      Fri Nov 27 23:58:54 2009
+++ rtems/cpukit/score/include/rtems/score/sysstate.h   Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -7,7 +7,7 @@
</font>  */
 
 /*
<font color='#880000'>- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#997700'>@@ -44,7 +44,7 @@
</font>   SYSTEM_STATE_BEFORE_INITIALIZATION,
 
   /**
<font color='#880000'>-   * @brief The system is between end of the first phase of initializatin but
</font><font color='#000088'>+   * @brief The system is between end of the first phase of initialization but
</font>    * before  multitasking is started.
    */
   SYSTEM_STATE_BEFORE_MULTITASKING,

<font color='#006600'>diff -u rtems/cpukit/score/src/objectidtoname.c:1.15 rtems/cpukit/score/src/objectidtoname.c:1.15.2.1
--- rtems/cpukit/score/src/objectidtoname.c:1.15        Mon Sep 28 18:00:20 2009
+++ rtems/cpukit/score/src/objectidtoname.c     Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/objectnametoid.c:1.14 rtems/cpukit/score/src/objectnametoid.c:1.14.2.1
--- rtems/cpukit/score/src/objectnametoid.c:1.14        Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/objectnametoid.c     Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,8 +1,7 @@
</font> /*
  *  Object Handler
  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2010.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/src/objectnametoidstring.c:1.7 rtems/cpukit/score/src/objectnametoidstring.c:1.7.2.1
--- rtems/cpukit/score/src/objectnametoidstring.c:1.7   Fri Sep 11 15:00:30 2009
+++ rtems/cpukit/score/src/objectnametoidstring.c       Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,8 +1,7 @@
</font> /*
  *  Object Handler - Object ID to Name (String)
  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2010.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be

<font color='#006600'>diff -u rtems/cpukit/score/src/thread.c:1.62 rtems/cpukit/score/src/thread.c:1.62.2.1
--- rtems/cpukit/score/src/thread.c:1.62        Fri Sep 11 09:54:29 2009
+++ rtems/cpukit/score/src/thread.c     Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -2,11 +2,11 @@
</font>  *  Thread Handler
  *
  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadchangepriority.c:1.12 rtems/cpukit/score/src/threadchangepriority.c:1.12.2.1
--- rtems/cpukit/score/src/threadchangepriority.c:1.12  Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/threadchangepriority.c       Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Change Priority
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadclearstate.c:1.10 rtems/cpukit/score/src/threadclearstate.c:1.10.2.1
--- rtems/cpukit/score/src/threadclearstate.c:1.10      Sun Nov 29 07:51:52 2009
+++ rtems/cpukit/score/src/threadclearstate.c   Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Clear State
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadclose.c:1.12 rtems/cpukit/score/src/threadclose.c:1.12.4.1
--- rtems/cpukit/score/src/threadclose.c:1.12   Thu May 22 15:38:03 2008
+++ rtems/cpukit/score/src/threadclose.c        Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Close
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadcreateidle.c:1.15 rtems/cpukit/score/src/threadcreateidle.c:1.15.2.1
--- rtems/cpukit/score/src/threadcreateidle.c:1.15      Fri Sep 11 09:54:29 2009
+++ rtems/cpukit/score/src/threadcreateidle.c   Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -2,11 +2,11 @@
</font>  *  Thread Handler
  *
  *
<font color='#880000'>- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threaddelayended.c:1.7 rtems/cpukit/score/src/threaddelayended.c:1.7.2.1
--- rtems/cpukit/score/src/threaddelayended.c:1.7       Mon Nov 30 13:44:57 2009
+++ rtems/cpukit/score/src/threaddelayended.c   Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threaddispatch.c:1.20 rtems/cpukit/score/src/threaddispatch.c:1.20.2.1
--- rtems/cpukit/score/src/threaddispatch.c:1.20        Wed Dec  2 12:22:18 2009
+++ rtems/cpukit/score/src/threaddispatch.c     Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
  *  Thread Handler
  *
<font color='#880000'>- *
</font>  *  COPYRIGHT (c) 1989-2009.
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadget.c:1.14 rtems/cpukit/score/src/threadget.c:1.14.2.1
--- rtems/cpukit/score/src/threadget.c:1.14     Sun Nov 29 07:51:52 2009
+++ rtems/cpukit/score/src/threadget.c  Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler - Object Id to Thread Pointer
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadhandler.c:1.29 rtems/cpukit/score/src/threadhandler.c:1.29.2.1
--- rtems/cpukit/score/src/threadhandler.c:1.29 Sun Nov 29 07:51:52 2009
+++ rtems/cpukit/score/src/threadhandler.c      Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadinitialize.c:1.38 rtems/cpukit/score/src/threadinitialize.c:1.38.2.1
--- rtems/cpukit/score/src/threadinitialize.c:1.38      Wed Dec  2 12:22:18 2009
+++ rtems/cpukit/score/src/threadinitialize.c   Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Initialize
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2009.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadloadenv.c:1.7 rtems/cpukit/score/src/threadloadenv.c:1.7.4.1
--- rtems/cpukit/score/src/threadloadenv.c:1.7  Thu Sep  4 12:39:55 2008
+++ rtems/cpukit/score/src/threadloadenv.c      Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadready.c:1.7 rtems/cpukit/score/src/threadready.c:1.7.2.1
--- rtems/cpukit/score/src/threadready.c:1.7    Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/threadready.c        Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Ready
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2006.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadreset.c:1.9 rtems/cpukit/score/src/threadreset.c:1.9.2.1
--- rtems/cpukit/score/src/threadreset.c:1.9    Mon Jun  1 16:44:01 2009
+++ rtems/cpukit/score/src/threadreset.c        Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadrestart.c:1.11 rtems/cpukit/score/src/threadrestart.c:1.11.2.1
--- rtems/cpukit/score/src/threadrestart.c:1.11 Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/threadrestart.c      Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadsetpriority.c:1.4 rtems/cpukit/score/src/threadsetpriority.c:1.4.8.1
--- rtems/cpukit/score/src/threadsetpriority.c:1.4      Wed Jan 26 23:57:05 2005
+++ rtems/cpukit/score/src/threadsetpriority.c  Wed May 25 09:17:52 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Set Priority
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadsetstate.c:1.6 rtems/cpukit/score/src/threadsetstate.c:1.6.2.1
--- rtems/cpukit/score/src/threadsetstate.c:1.6 Sun Dec 21 23:52:32 2008
+++ rtems/cpukit/score/src/threadsetstate.c     Wed May 25 09:17:53 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Set State
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadsettransient.c:1.5 rtems/cpukit/score/src/threadsettransient.c:1.5.8.1
--- rtems/cpukit/score/src/threadsettransient.c:1.5     Wed Jan 26 23:57:05 2005
+++ rtems/cpukit/score/src/threadsettransient.c Wed May 25 09:17:53 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler / Thread Set Transient
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-1999.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2011.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadstackallocate.c:1.12 rtems/cpukit/score/src/threadstackallocate.c:1.12.2.1
--- rtems/cpukit/score/src/threadstackallocate.c:1.12   Mon Dec 15 13:21:01 2008
+++ rtems/cpukit/score/src/threadstackallocate.c        Wed May 25 09:17:53 2011
</font><font color='#997700'>@@ -1,12 +1,11 @@
</font> /*
<font color='#880000'>- *  Thread Handler
</font><font color='#000088'>+ *  Thread Handler - Stack Allocate Helper
</font>  *
<font color='#880000'>- *
- *  COPYRIGHT (c) 1989-2008.
</font><font color='#000088'>+ *  COPYRIGHT (c) 1989-2010.
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadstackfree.c:1.7 rtems/cpukit/score/src/threadstackfree.c:1.7.2.1
--- rtems/cpukit/score/src/threadstackfree.c:1.7        Sun Sep 13 16:00:11 2009
+++ rtems/cpukit/score/src/threadstackfree.c    Wed May 25 09:17:53 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$

<font color='#006600'>diff -u rtems/cpukit/score/src/threadstart.c:1.9 rtems/cpukit/score/src/threadstart.c:1.9.4.1
--- rtems/cpukit/score/src/threadstart.c:1.9    Thu Sep  4 12:39:56 2008
+++ rtems/cpukit/score/src/threadstart.c        Wed May 25 09:17:53 2011
</font><font color='#997700'>@@ -6,7 +6,7 @@
</font>  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
<font color='#880000'>- *  found in found in the file LICENSE in this distribution or at
</font><font color='#000088'>+ *  found in the file LICENSE in this distribution or at
</font>  *  http://www.rtems.com/license/LICENSE.
  *
  *  $Id$
</pre>
<p> </p>
<a name='cs4'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
 <font color='#225522'><em>(on branch rtems-4-10-branch)</em></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-05-25 Ralf Corsépius <ralf.corsepius@rtems.org>

        * include/rtems/bspIo.h, include/rtems/concat.h,
        include/rtems/irq.h, libblock/include/rtems/bdbuf.h
        libcsupport/include/rtems/libio_.h, libcsupport/src/getuid.c,
        score/include/rtems/score/coremutex.h,
        score/include/rtems/score/heap.h,
        score/include/rtems/score/sysstate.h, score/src/objectidtoname.c,
        score/src/objectnametoid.c, score/src/objectnametoidstring.c,
        score/src/thread.c, score/src/threadchangepriority.c,
        score/src/threadclearstate.c, score/src/threadclose.c,
        score/src/threadcreateidle.c, score/src/threaddelayended.c,
        score/src/threaddispatch.c, score/src/threadget.c,
        score/src/threadhandler.c, score/src/threadinitialize.c,
        score/src/threadloadenv.c, score/src/threadready.c,
        score/src/threadreset.c, score/src/threadrestart.c
        score/src/threadsetpriority.c, score/src/threadsetstate.c,
        score/src/threadsettransient.c, score/src/threadstackallocate.c
        score/src/threadstackfree.c, score/src/threadstart.c:
        Cosmetics from CVS-HEAD.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2346.2.90&r2=text&tr2=1.2346.2.91&diff_format=h">M</a></td><td width='1%'>1.2346.2.91</td><td width='100%'>cpukit/ChangeLog</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2346.2.90 rtems/cpukit/ChangeLog:1.2346.2.91
--- rtems/cpukit/ChangeLog:1.2346.2.90  Tue May 24 23:48:08 2011
+++ rtems/cpukit/ChangeLog      Wed May 25 09:18:10 2011
</font><font color='#997700'>@@ -1,5 +1,26 @@
</font> 2011-05-25        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * include/rtems/bspIo.h, include/rtems/concat.h,
+       include/rtems/irq.h, libblock/include/rtems/bdbuf.h
+       libcsupport/include/rtems/libio_.h, libcsupport/src/getuid.c,
+       score/include/rtems/score/coremutex.h,
+       score/include/rtems/score/heap.h,
+       score/include/rtems/score/sysstate.h, score/src/objectidtoname.c,
+       score/src/objectnametoid.c, score/src/objectnametoidstring.c,
+       score/src/thread.c, score/src/threadchangepriority.c,<span style="background-color: #FF0000"> </span>
+       score/src/threadclearstate.c, score/src/threadclose.c,
+       score/src/threadcreateidle.c, score/src/threaddelayended.c,
+       score/src/threaddispatch.c, score/src/threadget.c,
+       score/src/threadhandler.c, score/src/threadinitialize.c,
+       score/src/threadloadenv.c, score/src/threadready.c,
+       score/src/threadreset.c, score/src/threadrestart.c
+       score/src/threadsetpriority.c, score/src/threadsetstate.c,
+       score/src/threadsettransient.c, score/src/threadstackallocate.c
+       score/src/threadstackfree.c, score/src/threadstart.c:
+       Cosmetics from CVS-HEAD.
+
+2011-05-25     Ralf Corsépius <ralf.corsepius@rtems.org>
+
</font>   * libblock/src/flashdisk.c, libblock/src/nvdisk.c:
        Add va_end() (Backport from HEAD).
 
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>