change log for rtems (2011-03-08)

rtems-vc at rtems.org rtems-vc at rtems.org
Wed Mar 9 00:11:34 UTC 2011


 *joel*:
2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>

	* score/src/objectinitializeinformation.c: Reverse sense of conditional
	and improve comment. Comment was right but brief, conditional was
	backwards.

M 1.2767  cpukit/ChangeLog
M   1.21  cpukit/score/src/objectinitializeinformation.c

diff -u rtems/cpukit/ChangeLog:1.2766 rtems/cpukit/ChangeLog:1.2767
--- rtems/cpukit/ChangeLog:1.2766	Tue Mar  8 16:14:14 2011
+++ rtems/cpukit/ChangeLog	Tue Mar  8 17:55:24 2011
@@ -1,5 +1,11 @@
 2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>
 
+	* score/src/objectinitializeinformation.c: Reverse sense of conditional
+	and improve comment. Comment was right but brief, conditional was
+	backwards.
+
+2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>
+
 	PR 1759/cpukit
 	* posix/src/cancel.c, posix/src/pthreaddetach.c,
 	posix/src/pthreadequal.c, posix/src/pthreadgetschedparam.c,

diff -u rtems/cpukit/score/src/objectinitializeinformation.c:1.20 rtems/cpukit/score/src/objectinitializeinformation.c:1.21
--- rtems/cpukit/score/src/objectinitializeinformation.c:1.20	Fri Feb 11 14:38:16 2011
+++ rtems/cpukit/score/src/objectinitializeinformation.c	Tue Mar  8 17:55:24 2011
@@ -1,7 +1,7 @@
 /*
  *  Object Handler Initialization per Object Class
  *
- *  COPYRIGHT (c) 1989-2010.
+ *  COPYRIGHT (c) 1989-2011.
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
@@ -134,7 +134,7 @@
    */
   name_length = maximum_name_length;
 
-  #if !defined(RTEMS_POSIX_API)
+  #if defined(RTEMS_POSIX_API)
     if ( name_length & (OBJECTS_NAME_ALIGNMENT-1) )
       name_length = (name_length + OBJECTS_NAME_ALIGNMENT) &
                     ~(OBJECTS_NAME_ALIGNMENT-1);


 *joel*:
2011-03-08	Joel Sherrill <joel.sherrill at oarcorp.com>

	* Makefile.inc.in: Fix PROJECT_ROOT to match usage in templates and
	existing Makefiles.

M   1.79  c/src/make/ChangeLog
M   1.14  c/src/make/Makefile.inc.in

diff -u rtems/c/src/make/ChangeLog:1.78 rtems/c/src/make/ChangeLog:1.79
--- rtems/c/src/make/ChangeLog:1.78	Sun Mar  6 22:05:18 2011
+++ rtems/c/src/make/ChangeLog	Tue Mar  8 17:56:52 2011
@@ -1,3 +1,8 @@
+2011-03-08	Joel Sherrill <joel.sherrill at oarcorp.com>
+
+	* Makefile.inc.in: Fix PROJECT_ROOT to match usage in templates and
+	existing Makefiles.
+
 2011-03-07	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* Makefile.am, configure.ac: Move file generation into Makefile.

diff -u rtems/c/src/make/Makefile.inc.in:1.13 rtems/c/src/make/Makefile.inc.in:1.14
--- rtems/c/src/make/Makefile.inc.in:1.13	Sun Mar  6 22:03:26 2011
+++ rtems/c/src/make/Makefile.inc.in	Tue Mar  8 17:56:52 2011
@@ -34,8 +34,10 @@
 export SIZE
 export OBJCOPY
 
-RTEMS_CUSTOM = $(prefix)/make/custom/$(RTEMS_BSP).cfg
-PROJECT_ROOT = @pkgdatadir@
+RTEMS_ROOT = $(prefix)
+PROJECT_ROOT = $(RTEMS_ROOT)
+RTEMS_CUSTOM = $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+
 RTEMS_USE_OWN_PDIR = no
 RTEMS_HAS_POSIX_API = @RTEMS_HAS_POSIX_API@
 RTEMS_HAS_ITRON_API = no
@@ -45,6 +47,3 @@
 export RTEMS_CUSTOM
 export PROJECT_ROOT
 
-# FIXME: The following shouldn't be here
-RTEMS_ROOT = $(PROJECT_ROOT)
-export RTEMS_ROOT


 *joel* (on branch rtems-4-10-branch):
2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>

	PR 1760/misc
	* compilers/gcc-target-default.cfg: Fix typo in CPP definition.

M   1.80  c/src/make/ChangeLog
M 1.63.2.2  c/src/make/ChangeLog
M 1.70.2.2  c/src/make/ChangeLog
M   1.43  c/src/make/compilers/gcc-target-default.cfg
M 1.41.2.1  c/src/make/compilers/gcc-target-default.cfg
M 1.42.2.1  c/src/make/compilers/gcc-target-default.cfg

diff -u rtems/c/src/make/ChangeLog:1.79 rtems/c/src/make/ChangeLog:1.80
--- rtems/c/src/make/ChangeLog:1.79	Tue Mar  8 17:56:52 2011
+++ rtems/c/src/make/ChangeLog	Tue Mar  8 18:10:03 2011
@@ -1,3 +1,8 @@
+2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>
+
+	PR 1760/misc
+	* compilers/gcc-target-default.cfg: Fix typo in CPP definition.
+
 2011-03-08	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* Makefile.inc.in: Fix PROJECT_ROOT to match usage in templates and

diff -u rtems/c/src/make/ChangeLog:1.63.2.1 rtems/c/src/make/ChangeLog:1.63.2.2
--- rtems/c/src/make/ChangeLog:1.63.2.1	Mon Sep 15 12:43:44 2008
+++ rtems/c/src/make/ChangeLog	Tue Mar  8 18:10:18 2011
@@ -1,3 +1,8 @@
+2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>
+
+	PR 1760/misc
+	* compilers/gcc-target-default.cfg: Fix typo in CPP definition.
+
 2008-09-15	Joel Sherrill <joel.sherrill at OARcorp.com>
 
 	* leaf.cfg: LINK.c and LINK.cc include LDFLAGS so do not include it in

diff -u rtems/c/src/make/ChangeLog:1.70.2.1 rtems/c/src/make/ChangeLog:1.70.2.2
--- rtems/c/src/make/ChangeLog:1.70.2.1	Wed Feb  2 09:17:40 2011
+++ rtems/c/src/make/ChangeLog	Tue Mar  8 18:10:08 2011
@@ -1,3 +1,8 @@
+2011-03-08	Joel Sherrill <joel.sherrilL at OARcorp.com>
+
+	PR 1760/misc
+	* compilers/gcc-target-default.cfg: Fix typo in CPP definition.
+
 2011-02-02	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* configure.ac: Require autoconf-2.68, automake-1.11.1.

diff -u rtems/c/src/make/compilers/gcc-target-default.cfg:1.42 rtems/c/src/make/compilers/gcc-target-default.cfg:1.43
--- rtems/c/src/make/compilers/gcc-target-default.cfg:1.42	Thu Sep 18 12:34:06 2008
+++ rtems/c/src/make/compilers/gcc-target-default.cfg	Tue Mar  8 18:10:03 2011
@@ -87,8 +87,8 @@
 # Client compiler and support tools
 #
 
-# CPP command to write file to standard output
-CPP=$(CC) -E -w -Wp,-$$
+# CPP command to write file to standard output with warnings suppressed
+CPP=$(CC) -E -w
 
 # egrep regexp to ignore symbol table entries in ar archives.
 # Only used to make sure we skip them when coalescing libraries.

diff -u rtems/c/src/make/compilers/gcc-target-default.cfg:1.41 rtems/c/src/make/compilers/gcc-target-default.cfg:1.41.2.1
--- rtems/c/src/make/compilers/gcc-target-default.cfg:1.41	Tue Sep  9 11:30:35 2008
+++ rtems/c/src/make/compilers/gcc-target-default.cfg	Tue Mar  8 18:10:18 2011
@@ -87,8 +87,8 @@
 # Client compiler and support tools
 #
 
-# CPP command to write file to standard output
-CPP=$(CC) -E -w -Wp,-$$
+# CPP command to write file to standard output with warnings suppressed
+CPP=$(CC) -E -w
 
 # egrep regexp to ignore symbol table entries in ar archives.
 # Only used to make sure we skip them when coalescing libraries.

diff -u rtems/c/src/make/compilers/gcc-target-default.cfg:1.42 rtems/c/src/make/compilers/gcc-target-default.cfg:1.42.2.1
--- rtems/c/src/make/compilers/gcc-target-default.cfg:1.42	Thu Sep 18 12:34:06 2008
+++ rtems/c/src/make/compilers/gcc-target-default.cfg	Tue Mar  8 18:10:09 2011
@@ -87,8 +87,8 @@
 # Client compiler and support tools
 #
 
-# CPP command to write file to standard output
-CPP=$(CC) -E -w -Wp,-$$
+# CPP command to write file to standard output with warnings suppressed
+CPP=$(CC) -E -w
 
 # egrep regexp to ignore symbol table entries in ar archives.
 # Only used to make sure we skip them when coalescing libraries.



--

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/20110308/07fdba68/attachment-0001.html>


More information about the vc mailing list