change log for rtems (2011-02-22)

rtems-vc at rtems.org rtems-vc at rtems.org
Tue Feb 22 11:10:33 UTC 2011


 *ralf*:
2011-02-22	Ralf Corsépius <ralf.corsepius at rtems.org>

	* base_mp/apptask.c, base_mp/init.c, base_sp/apptask.c, base_sp/init.c,
	capture/init.c, capture/test1.c, cdtest/init.c, fileio/init.c,
	hello/init.c, loopback/init.c, minimum/init.c, nsecs/empty.c,
	nsecs/init.c, paranoia/init.c, paranoia/paranoia.c, pppd/init.c,
	pppd/pppdapp.c, ticker/init.c, ticker/tasks.c, unlimited/init.c,
	unlimited/test1.c, unlimited/test2.c, unlimited/test3.c: Add
	HAVE_CONFIG_H.

M  1.186  testsuites/samples/ChangeLog

diff -u rtems/testsuites/samples/ChangeLog:1.185 rtems/testsuites/samples/ChangeLog:1.186
--- rtems/testsuites/samples/ChangeLog:1.185	Thu Feb 17 09:21:39 2011
+++ rtems/testsuites/samples/ChangeLog	Tue Feb 22 04:54:42 2011
@@ -1,3 +1,13 @@
+2011-02-22	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* base_mp/apptask.c, base_mp/init.c, base_sp/apptask.c, base_sp/init.c,
+	capture/init.c, capture/test1.c, cdtest/init.c, fileio/init.c,
+	hello/init.c, loopback/init.c, minimum/init.c, nsecs/empty.c,
+	nsecs/init.c, paranoia/init.c, paranoia/paranoia.c, pppd/init.c,
+	pppd/pppdapp.c, ticker/init.c, ticker/tasks.c, unlimited/init.c,
+	unlimited/test1.c, unlimited/test2.c, unlimited/test3.c: Add
+	HAVE_CONFIG_H.
+
 2011-02-17	Joel Sherrill <joel.sherrill at oarcorp.com>
 
 	* pppd/system.h: Use confdefs.h to generate device driver table.


 *ralf*:
Add HAVE_CONFIG_H.

M    1.3  testsuites/psxtmtests/psxtmmutex02/init.c
M    1.2  testsuites/psxtmtests/psxtmthread01/init.c
M    1.3  testsuites/psxtmtests/psxtmthread03/init.c
M   1.14  testsuites/samples/base_mp/apptask.c
M   1.11  testsuites/samples/base_mp/init.c
M   1.15  testsuites/samples/base_sp/apptask.c
M   1.12  testsuites/samples/base_sp/init.c
M    1.7  testsuites/samples/capture/init.c
M   1.10  testsuites/samples/capture/test1.c
M   1.14  testsuites/samples/cdtest/init.c
M   1.31  testsuites/samples/fileio/init.c
M   1.18  testsuites/samples/hello/init.c
M   1.12  testsuites/samples/loopback/init.c
M   1.21  testsuites/samples/minimum/init.c
M    1.3  testsuites/samples/nsecs/empty.c
M   1.14  testsuites/samples/nsecs/init.c
M   1.15  testsuites/samples/paranoia/init.c
M   1.10  testsuites/samples/paranoia/paranoia.c
M    1.4  testsuites/samples/pppd/init.c
M    1.5  testsuites/samples/pppd/pppdapp.c
M   1.14  testsuites/samples/ticker/init.c
M   1.15  testsuites/samples/ticker/tasks.c
M   1.15  testsuites/samples/unlimited/init.c
M   1.16  testsuites/samples/unlimited/test1.c
M   1.12  testsuites/samples/unlimited/test2.c
M   1.10  testsuites/samples/unlimited/test3.c

diff -u rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.2 rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.3
--- rtems/testsuites/psxtmtests/psxtmmutex02/init.c:1.2	Tue Feb  8 02:26:09 2011
+++ rtems/testsuites/psxtmtests/psxtmmutex02/init.c	Tue Feb 22 04:58:44 2011
@@ -9,6 +9,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <coverhd.h>
 #include <tmacros.h>
 #include <timesys.h>

diff -u rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.1 rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.2
--- rtems/testsuites/psxtmtests/psxtmthread01/init.c:1.1	Mon Dec  6 10:35:30 2010
+++ rtems/testsuites/psxtmtests/psxtmthread01/init.c	Tue Feb 22 04:58:44 2011
@@ -9,6 +9,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <coverhd.h>
 #include <tmacros.h>
 #include <timesys.h>

diff -u rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.2 rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.3
--- rtems/testsuites/psxtmtests/psxtmthread03/init.c:1.2	Tue Feb  8 02:26:09 2011
+++ rtems/testsuites/psxtmtests/psxtmthread03/init.c	Tue Feb 22 04:58:44 2011
@@ -9,6 +9,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <coverhd.h>
 #include <tmacros.h>
 #include <timesys.h>

diff -u rtems/testsuites/samples/base_mp/apptask.c:1.13 rtems/testsuites/samples/base_mp/apptask.c:1.14
--- rtems/testsuites/samples/base_mp/apptask.c:1.13	Fri Oct 30 08:35:30 2009
+++ rtems/testsuites/samples/base_mp/apptask.c	Tue Feb 22 04:54:31 2011
@@ -19,6 +19,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "system.h"
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/base_mp/init.c:1.10 rtems/testsuites/samples/base_mp/init.c:1.11
--- rtems/testsuites/samples/base_mp/init.c:1.10	Thu Sep  4 13:53:41 2003
+++ rtems/testsuites/samples/base_mp/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 #include <stdio.h>

diff -u rtems/testsuites/samples/base_sp/apptask.c:1.14 rtems/testsuites/samples/base_sp/apptask.c:1.15
--- rtems/testsuites/samples/base_sp/apptask.c:1.14	Tue Oct 27 01:59:20 2009
+++ rtems/testsuites/samples/base_sp/apptask.c	Tue Feb 22 04:54:32 2011
@@ -18,6 +18,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "system.h"
 #include "tmacros.h"
 

diff -u rtems/testsuites/samples/base_sp/init.c:1.11 rtems/testsuites/samples/base_sp/init.c:1.12
--- rtems/testsuites/samples/base_sp/init.c:1.11	Thu Sep  4 13:53:41 2003
+++ rtems/testsuites/samples/base_sp/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 #include <stdio.h>

diff -u rtems/testsuites/samples/capture/init.c:1.6 rtems/testsuites/samples/capture/init.c:1.7
--- rtems/testsuites/samples/capture/init.c:1.6	Sun Apr  4 04:41:05 2010
+++ rtems/testsuites/samples/capture/init.c	Tue Feb 22 04:54:32 2011
@@ -22,6 +22,10 @@
 
 #define CONFIGURE_INIT
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "system.h"
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/capture/test1.c:1.9 rtems/testsuites/samples/capture/test1.c:1.10
--- rtems/testsuites/samples/capture/test1.c:1.9	Mon Mar 29 06:30:48 2010
+++ rtems/testsuites/samples/capture/test1.c	Tue Feb 22 04:54:32 2011
@@ -17,6 +17,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "system.h"
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/cdtest/init.c:1.13 rtems/testsuites/samples/cdtest/init.c:1.14
--- rtems/testsuites/samples/cdtest/init.c:1.13	Thu Sep  4 13:53:41 2003
+++ rtems/testsuites/samples/cdtest/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 #include <stdio.h>

diff -u rtems/testsuites/samples/fileio/init.c:1.30 rtems/testsuites/samples/fileio/init.c:1.31
--- rtems/testsuites/samples/fileio/init.c:1.30	Tue Jun  1 19:47:15 2010
+++ rtems/testsuites/samples/fileio/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 #include <stdio.h>

diff -u rtems/testsuites/samples/hello/init.c:1.17 rtems/testsuites/samples/hello/init.c:1.18
--- rtems/testsuites/samples/hello/init.c:1.17	Fri Oct  2 06:50:39 2009
+++ rtems/testsuites/samples/hello/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <bsp.h> /* for device driver prototypes */
 
 #include <stdio.h>

diff -u rtems/testsuites/samples/loopback/init.c:1.11 rtems/testsuites/samples/loopback/init.c:1.12
--- rtems/testsuites/samples/loopback/init.c:1.11	Wed Dec  8 04:32:05 2010
+++ rtems/testsuites/samples/loopback/init.c	Tue Feb 22 04:54:32 2011
@@ -2,6 +2,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <bsp.h>
 
 #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER

diff -u rtems/testsuites/samples/minimum/init.c:1.20 rtems/testsuites/samples/minimum/init.c:1.21
--- rtems/testsuites/samples/minimum/init.c:1.20	Wed Jul  7 04:26:05 2010
+++ rtems/testsuites/samples/minimum/init.c	Tue Feb 22 04:54:32 2011
@@ -12,6 +12,10 @@
 
 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <bsp.h>
 #include <rtems/score/thread.h>
 

diff -u rtems/testsuites/samples/nsecs/empty.c:1.2 rtems/testsuites/samples/nsecs/empty.c:1.3
--- rtems/testsuites/samples/nsecs/empty.c:1.2	Sat Oct 24 00:51:36 2009
+++ rtems/testsuites/samples/nsecs/empty.c	Tue Feb 22 04:54:32 2011
@@ -8,6 +8,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 /* put here hoping it won't get inlined */
 void dummy_function_empty_body_to_force_call(void) {}
 

diff -u rtems/testsuites/samples/nsecs/init.c:1.13 rtems/testsuites/samples/nsecs/init.c:1.14
--- rtems/testsuites/samples/nsecs/init.c:1.13	Sun Nov 29 21:33:23 2009
+++ rtems/testsuites/samples/nsecs/init.c	Tue Feb 22 04:54:32 2011
@@ -14,6 +14,10 @@
 
 #define CONFIGURE_INIT
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <rtems.h>
 #include <inttypes.h>
 #include <stdio.h>

diff -u rtems/testsuites/samples/paranoia/init.c:1.14 rtems/testsuites/samples/paranoia/init.c:1.15
--- rtems/testsuites/samples/paranoia/init.c:1.14	Mon Mar 29 06:30:48 2010
+++ rtems/testsuites/samples/paranoia/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 #include <stdio.h>

diff -u rtems/testsuites/samples/paranoia/paranoia.c:1.9 rtems/testsuites/samples/paranoia/paranoia.c:1.10
--- rtems/testsuites/samples/paranoia/paranoia.c:1.9	Mon Mar 29 06:30:49 2010
+++ rtems/testsuites/samples/paranoia/paranoia.c	Tue Feb 22 04:54:32 2011
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <bsp.h>
 #if !BSP_SMALL_MEMORY
 /*

diff -u rtems/testsuites/samples/pppd/init.c:1.3 rtems/testsuites/samples/pppd/init.c:1.4
--- rtems/testsuites/samples/pppd/init.c:1.3	Tue Apr 28 00:04:11 2009
+++ rtems/testsuites/samples/pppd/init.c	Tue Feb 22 04:54:32 2011
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/pppd/pppdapp.c:1.4 rtems/testsuites/samples/pppd/pppdapp.c:1.5
--- rtems/testsuites/samples/pppd/pppdapp.c:1.4	Wed Aug 12 15:50:37 2009
+++ rtems/testsuites/samples/pppd/pppdapp.c	Tue Feb 22 04:54:32 2011
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 
 #include <bsp.h>
 

diff -u rtems/testsuites/samples/ticker/init.c:1.13 rtems/testsuites/samples/ticker/init.c:1.14
--- rtems/testsuites/samples/ticker/init.c:1.13	Thu May 10 14:31:36 2007
+++ rtems/testsuites/samples/ticker/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 #include "system.h"
 

diff -u rtems/testsuites/samples/ticker/tasks.c:1.14 rtems/testsuites/samples/ticker/tasks.c:1.15
--- rtems/testsuites/samples/ticker/tasks.c:1.14	Wed Aug 12 15:50:38 2009
+++ rtems/testsuites/samples/ticker/tasks.c	Tue Feb 22 04:54:32 2011
@@ -17,6 +17,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include "system.h"
 
 rtems_task Test_task(

diff -u rtems/testsuites/samples/unlimited/init.c:1.14 rtems/testsuites/samples/unlimited/init.c:1.15
--- rtems/testsuites/samples/unlimited/init.c:1.14	Tue Oct 27 01:59:20 2009
+++ rtems/testsuites/samples/unlimited/init.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #define CONFIGURE_INIT
 
 #include "system.h"

diff -u rtems/testsuites/samples/unlimited/test1.c:1.15 rtems/testsuites/samples/unlimited/test1.c:1.16
--- rtems/testsuites/samples/unlimited/test1.c:1.15	Mon Oct 26 06:34:27 2009
+++ rtems/testsuites/samples/unlimited/test1.c	Tue Feb 22 04:54:32 2011
@@ -17,6 +17,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/unlimited/test2.c:1.11 rtems/testsuites/samples/unlimited/test2.c:1.12
--- rtems/testsuites/samples/unlimited/test2.c:1.11	Mon Oct 26 06:34:27 2009
+++ rtems/testsuites/samples/unlimited/test2.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>

diff -u rtems/testsuites/samples/unlimited/test3.c:1.9 rtems/testsuites/samples/unlimited/test3.c:1.10
--- rtems/testsuites/samples/unlimited/test3.c:1.9	Mon Oct 26 06:34:27 2009
+++ rtems/testsuites/samples/unlimited/test3.c	Tue Feb 22 04:54:32 2011
@@ -20,6 +20,10 @@
  *  $Id$
  */
 
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
 #include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>


 *ralf*:
2011-02-22	Ralf Corsépius <ralf.corsepius at rtems.org>

	* psxtmmutex02/init.c, psxtmthread01/init.c, psxtmthread03/init.c:
	Add HAVE_CONFIG_H.

M    1.4  testsuites/psxtmtests/ChangeLog

diff -u rtems/testsuites/psxtmtests/ChangeLog:1.3 rtems/testsuites/psxtmtests/ChangeLog:1.4
--- rtems/testsuites/psxtmtests/ChangeLog:1.3	Tue Feb  8 02:26:13 2011
+++ rtems/testsuites/psxtmtests/ChangeLog	Tue Feb 22 04:59:11 2011
@@ -1,3 +1,8 @@
+2011-02-22	Ralf Corsépius <ralf.corsepius at rtems.org>
+
+	* psxtmmutex02/init.c, psxtmthread01/init.c, psxtmthread03/init.c:
+	Add HAVE_CONFIG_H.
+
 2011-02-08	Ralf Corsépius <ralf.corsepius at rtems.org>
 
 	* psxtmmutex02/init.c, psxtmthread03/init.c: end_time is a uint32_t.



--

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/20110222/7558ad82/attachment-0001.html>


More information about the vc mailing list