change log for rtems (2011-05-25)
rtems-vc at rtems.org
rtems-vc at rtems.org
Wed May 25 15:10:59 UTC 2011
*jennifer*:
2011-05-25 Jennifer Averett <Jennifer.Averett at 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.
M 1.57 c/ChangeLog
M 1.59 c/src/lib/libbsp/i386/pc386/Makefile.am
A 1.1 c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c
M 1.55 c/src/lib/libbsp/sparc/erc32/Makefile.am
M 1.28 c/src/lib/libbsp/sparc/leon2/Makefile.am
M 1.32 c/src/lib/libbsp/sparc/leon3/Makefile.am
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
@@ -1,3 +1,13 @@
+2011-05-25 Jennifer Averett <Jennifer.Averett at 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.
+
2011-04-21 Jennifer Averett <Jennifer.Averett at OARcorp.com
PR 1777/cpukit
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
@@ -109,7 +109,8 @@
libbsp_a_SOURCES += ide/idecfg.c ide/ide.c
if HAS_SMP
-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+ ../../shared/smp/bspsmp_wait_for.c
endif
if HAS_NETWORKING
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
@@ -0,0 +1,30 @@
+/*
+ *
+ * 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 );
+ }
+}
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
@@ -1,5 +1,5 @@
##
-## $Id$
+## $Id: Makefile.am,v 1.54 2011/05/23 17:41:30 jennifer Exp
##
ACLOCAL_AMFLAGS = -I ../../../../aclocal
@@ -55,7 +55,8 @@
libbsp_a_SOURCES += timer/timer.c
if HAS_SMP
-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+ ../../shared/smp/bspsmp_wait_for.c
endif
if HAS_NETWORKING
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
@@ -100,7 +100,8 @@
libbsp_a_SOURCES += timer/timer.c
if HAS_SMP
-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+ ../../shared/smp/bspsmp_wait_for.c
endif
if HAS_NETWORKING
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
@@ -94,7 +94,8 @@
libbsp_a_SOURCES += timer/timer.c
if HAS_SMP
-libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c
+libbsp_a_SOURCES += ../../shared/smp/getcpuid.c ../../shared/smp/smp_stub.c \
+ ../../shared/smp/bspsmp_wait_for.c
endif
if HAS_NETWORKING
*jennifer*:
Fix cvs id.
M 1.2 c/src/lib/libbsp/shared/smp/bspsmp_wait_for.c
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
@@ -7,7 +7,7 @@
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
- * $Id
+ * $Id$
*/
void rtems_bsp_delay( int usec );
*ralf* (on branch rtems-4-10-branch):
Cosmetics from CVS-HEAD.
M 1.10.2.1 cpukit/include/rtems/bspIo.h
M 1.3.8.1 cpukit/include/rtems/concat.h
M 1.4.2.1 cpukit/include/rtems/irq.h
M 1.29.2.1 cpukit/libblock/include/rtems/bdbuf.h
M 1.34.2.3 cpukit/libcsupport/include/rtems/libio_.h
M 1.2.8.1 cpukit/libcsupport/src/getuid.c
M 1.39.2.1 cpukit/score/include/rtems/score/coremutex.h
M 1.41.2.1 cpukit/score/include/rtems/score/heap.h
M 1.25.2.1 cpukit/score/include/rtems/score/sysstate.h
M 1.15.2.1 cpukit/score/src/objectidtoname.c
M 1.14.2.1 cpukit/score/src/objectnametoid.c
M 1.7.2.1 cpukit/score/src/objectnametoidstring.c
M 1.62.2.1 cpukit/score/src/thread.c
M 1.12.2.1 cpukit/score/src/threadchangepriority.c
M 1.10.2.1 cpukit/score/src/threadclearstate.c
M 1.12.4.1 cpukit/score/src/threadclose.c
M 1.15.2.1 cpukit/score/src/threadcreateidle.c
M 1.7.2.1 cpukit/score/src/threaddelayended.c
M 1.20.2.1 cpukit/score/src/threaddispatch.c
M 1.14.2.1 cpukit/score/src/threadget.c
M 1.29.2.1 cpukit/score/src/threadhandler.c
M 1.38.2.1 cpukit/score/src/threadinitialize.c
M 1.7.4.1 cpukit/score/src/threadloadenv.c
M 1.7.2.1 cpukit/score/src/threadready.c
M 1.9.2.1 cpukit/score/src/threadreset.c
M 1.11.2.1 cpukit/score/src/threadrestart.c
M 1.4.8.1 cpukit/score/src/threadsetpriority.c
M 1.6.2.1 cpukit/score/src/threadsetstate.c
M 1.5.8.1 cpukit/score/src/threadsettransient.c
M 1.12.2.1 cpukit/score/src/threadstackallocate.c
M 1.7.2.1 cpukit/score/src/threadstackfree.c
M 1.9.4.1 cpukit/score/src/threadstart.c
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
@@ -6,7 +6,7 @@
* COPYRIGHT (c) 1998 valette at crf.canon.fr
*
* 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 -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
@@ -2,7 +2,7 @@
* Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
*
* 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 -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
@@ -12,7 +12,7 @@
* the STREAM API Specification Document link.
*
* 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 -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
@@ -519,7 +519,7 @@
/**
* Release the buffer allocated with a get or read call placing it on the
- * modidied list. If the buffer was not released modified before the hold
+ * modified list. If the buffer was not released modified before the hold
* 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
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
@@ -1,4 +1,4 @@
-/*
+/**
* @file rtems/libio_.h
*/
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
@@ -1,4 +1,11 @@
/*
+ * 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.
+ *
* $Id$
*/
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
@@ -193,7 +193,7 @@
} 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 -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
@@ -368,7 +368,7 @@
* 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 -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
@@ -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 @@
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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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 -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
@@ -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$
*ralf* (on branch rtems-4-10-branch):
2011-05-25 Ralf Corsépius <ralf.corsepius at 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.
M 1.2346.2.91 cpukit/ChangeLog
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
@@ -1,5 +1,26 @@
2011-05-25 Ralf Corsépius <ralf.corsepius at 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.
+
+2011-05-25 Ralf Corsépius <ralf.corsepius at rtems.org>
+
* libblock/src/flashdisk.c, libblock/src/nvdisk.c:
Add va_end() (Backport from HEAD).
--
Generated by Deluxe Loginfo [http://www.codewiz.org/projects/index.html#loginfo] 2.122 by Bernardo Innocenti <bernie at develer.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rtems.org/pipermail/vc/attachments/20110525/573a2184/attachment-0001.html>
More information about the vc
mailing list